mirror of https://github.com/grafana/grafana
Explore: Expand template variables when redirecting from dashboard panel (#19582)
* Fix redirect but adding getExploreState method to graphite * Explore: Create interpolateVariablesInQueries function for datasources * Explore: Add interpolateVariablesInQueries method to elasticsearch datasource * Add interpolateVariablesInQueries function to influx and postgres * Explore: Add interpolateVariablesInQueries to Mssql and Mysql datasources * Explore: Add datasources to queries * Explore: Code formatting * Prettier formating fix * Explore: Add rawQuery expanding of variables for influxdb * Remove console.logs * Explore: Add rawQuery expanding of multiple variables for influxdb * Explore: If no queries in Influxdb, return early [] * Explore: Refactor influxDb to follow the code structurepull/19708/head
parent
9904e14f8e
commit
90b0953620
@ -0,0 +1,5 @@ |
||||
import { DataQuery } from '@grafana/ui'; |
||||
|
||||
export interface GraphiteQuery extends DataQuery { |
||||
target?: string; |
||||
} |
@ -0,0 +1,7 @@ |
||||
export interface MssqlQueryForInterpolation { |
||||
alias?: any; |
||||
format?: any; |
||||
rawSql?: any; |
||||
refId?: any; |
||||
hide?: any; |
||||
} |
@ -0,0 +1,7 @@ |
||||
export interface MysqlQueryForInterpolation { |
||||
alias?: any; |
||||
format?: any; |
||||
rawSql?: any; |
||||
refId?: any; |
||||
hide?: any; |
||||
} |
@ -0,0 +1,7 @@ |
||||
export interface PostgresQueryForInterpolation { |
||||
alias?: any; |
||||
format?: any; |
||||
rawSql?: any; |
||||
refId?: any; |
||||
hide?: any; |
||||
} |
Loading…
Reference in new issue