Commit c9df61c4 by Stefan Majer

Quote timeseries names to be able to have special character such as @ in a seriename.

parent c1266abb
...@@ -93,7 +93,7 @@ function (angular, _, kbn) { ...@@ -93,7 +93,7 @@ function (angular, _, kbn) {
}; };
InfluxDatasource.prototype.listColumns = function(seriesName) { 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) { if (!data) {
return []; return [];
} }
......
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