mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Quote timeseries names to be able to have special character such as @ in a seriename.
This commit is contained in:
parent
c1266abb98
commit
c9df61c43c
@ -93,7 +93,7 @@ function (angular, _, kbn) {
|
||||
};
|
||||
|
||||
InfluxDatasource.prototype.listColumns = function(seriesName) {
|
||||
return this.doInfluxRequest('select * from ' + seriesName + ' limit 1').then(function(data) {
|
||||
return this.doInfluxRequest('select * from "' + seriesName + '" limit 1').then(function(data) {
|
||||
if (!data) {
|
||||
return [];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user