Commit 4d802df0 by Torkel Ödegaard

fix(influxdb): fixed issue with using multi value template vars in influxdb…

fix(influxdb): fixed issue with using multi value template vars in influxdb measurement clause, fixes #4797
parent 04a79175
......@@ -168,6 +168,8 @@ export default class InfluxQuery {
if (!measurement.match('^/.*/')) {
measurement = '"' + measurement+ '"';
} else {
measurement = this.templateSrv.replace(measurement, this.scopedVars, 'regex');
}
if (policy !== 'default') {
......
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