From 25e2e07631e74887e73cb1e0898de95651a38915 Mon Sep 17 00:00:00 2001 From: Marco Vito Moscaritolo Date: Sun, 13 Jul 2014 19:57:09 +0200 Subject: [PATCH 1/2] ADd contiuous query in series results. --- src/app/services/influxdb/influxdbDatasource.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/services/influxdb/influxdbDatasource.js b/src/app/services/influxdb/influxdbDatasource.js index 72299cb062a..c1df61c5947 100644 --- a/src/app/services/influxdb/influxdbDatasource.js +++ b/src/app/services/influxdb/influxdbDatasource.js @@ -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; }); From 6e0e6f5ec4e54df9994c998ba26dabb39833c796 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Mon, 14 Jul 2014 17:26:16 +0200 Subject: [PATCH 2/2] updated changelog with PR #581 --- CHANGELOG.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3384d5af7f2..dd845c1a200 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,10 +4,11 @@ vNext - Allow [[..]] filter notation in all text panels (markdown/html/text) (Issue #511) - New legend display option "Align as table" (Issue #136) - New legend display option "Right side", will show legend to the right of the graph (Issue #556) -- Enhanced InfluxDB series aliasing (legend names) with pattern replacements (Issue #525) +- InfluxDB: Enhanced series aliasing (legend names) with pattern replacements (Issue #525) +- InfluxDB: Add continuous query in series results (series typeahead). #581 **Changes** -- Use unix epoch for Graphite from/to for absolute time ranges (Closes #536) +- Graphite: Use unix epoch for Graphite from/to for absolute time ranges (Closes #536) **Fixes** - Fix formatting negative values (PR #545)