Sfoglia il codice sorgente

fixed path to influxdb editor, #103

Torkel Ödegaard 12 anni fa
parent
commit
1e6d998a9c
1 ha cambiato i file con 1 aggiunte e 13 eliminazioni
  1. 1 13
      src/app/services/influxdb/influxdbDatasource.js

+ 1 - 13
src/app/services/influxdb/influxdbDatasource.js

@@ -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,