mirror of
https://github.com/grafana/grafana.git
synced 2025-01-24 23:37:01 -06:00
Merge branch 'dashboard_loading_refactoring' into annotations_redesign
This commit is contained in:
commit
7d6eafb2f2
@ -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)
|
||||
|
@ -129,7 +129,7 @@ function (angular, _, kbn, InfluxSeries) {
|
||||
};
|
||||
|
||||
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;
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user