Loki: Fix Loki with repeated panels and interpolation for Explore (#21685)

This commit is contained in:
Ivana Huckova
2020-01-24 09:50:09 +01:00
committed by GitHub
parent f91a495875
commit e75840737e
11 changed files with 40 additions and 22 deletions

View File

@@ -276,7 +276,7 @@ export abstract class DataSourceApi<
*/
annotationQuery?(options: AnnotationQueryRequest<TQuery>): Promise<AnnotationEvent[]>;
interpolateVariablesInQueries?(queries: TQuery[]): TQuery[];
interpolateVariablesInQueries?(queries: TQuery[], scopedVars: ScopedVars | {}): TQuery[];
}
export interface MetadataInspectorProps<

View File

@@ -52,6 +52,7 @@ export interface PanelModel<TOptions = any> {
id: number;
options: TOptions;
pluginVersion?: string;
scopedVars?: ScopedVars;
}
/**