mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
fixed path to influxdb editor, #103
This commit is contained in:
parent
da62a5653a
commit
1e6d998a9c
@ -12,7 +12,7 @@ function (angular, _, kbn) {
|
||||
|
||||
function InfluxDatasource(datasource) {
|
||||
this.type = 'influxDB';
|
||||
this.editorSrc = 'app/partials/influxDB/editor.html';
|
||||
this.editorSrc = 'app/partials/influxdb/editor.html';
|
||||
this.url = datasource.url;
|
||||
this.username = datasource.username;
|
||||
this.password = datasource.password;
|
||||
@ -54,18 +54,6 @@ function (angular, _, kbn) {
|
||||
|
||||
};
|
||||
|
||||
InfluxDatasource.prototype.listSeries = function() {
|
||||
return this.doInfluxRequest('list series').then(function(results) {
|
||||
if (!results.data) {
|
||||
return [];
|
||||
}
|
||||
|
||||
return _.map(results.data, function(series) {
|
||||
return series.name;
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
InfluxDatasource.prototype.doInfluxRequest = function(query) {
|
||||
var params = {
|
||||
u: this.username,
|
||||
|
Loading…
Reference in New Issue
Block a user