ADd contiuous query in series results.

parent 71a801bb
......@@ -103,7 +103,7 @@ function (angular, _, kbn) {
};
InfluxDatasource.prototype.listSeries = function() {
return this.doInfluxRequest('list series').then(function(data) {
return this.doInfluxRequest('select * from /.*/ limit 1').then(function(data) {
return _.map(data, function(series) {
return series.name;
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment