InfluxDB: Fix Interpolation when querying variables (#65875)

Interpolate variables with InfluxQueryModel
This commit is contained in:
ismail simsek
2023-04-12 16:34:14 +02:00
committed by GitHub
parent d4bd024951
commit 4e71c91cfd

View File

@@ -539,7 +539,15 @@ export default class InfluxDatasource extends DataSourceWithBackend<InfluxQuery,
});
}
const interpolated = this.templateSrv.replace(query, undefined, 'regex');
const interpolated = new InfluxQueryModel(
{
refId: 'metricFindQuery',
query,
rawQuery: true,
},
this.templateSrv,
options.scopedVars
).render(true);
return lastValueFrom(this._seriesQuery(interpolated, options)).then((resp) => {
return this.responseParser.parse(query, resp);