Commit 0e5dbf38 by Torkel Ödegaard

Merge pull request #980 from maxstepanov/patch-1

Replace all $interval occurrences in query string
parents 785f96aa 02861142
...@@ -44,7 +44,7 @@ function (angular, _, kbn, InfluxSeries, InfluxQueryBuilder) { ...@@ -44,7 +44,7 @@ function (angular, _, kbn, InfluxSeries, InfluxQueryBuilder) {
// replace grafana variables // replace grafana variables
query = query.replace('$timeFilter', timeFilter); query = query.replace('$timeFilter', timeFilter);
query = query.replace('$interval', (target.interval || options.interval)); query = query.replace(/\$interval/g, (target.interval || options.interval));
// replace templated variables // replace templated variables
query = templateSrv.replace(query); query = templateSrv.replace(query);
......
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