mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
ADd contiuous query in series results.
This commit is contained in:
parent
71a801bbb7
commit
25e2e07631
@ -103,7 +103,7 @@ function (angular, _, kbn) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
InfluxDatasource.prototype.listSeries = function() {
|
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 _.map(data, function(series) {
|
||||||
return series.name;
|
return series.name;
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user