mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Alerting: Fix Graphite subqueries (#80744)
This commit is contained in:
parent
bb2e0dad22
commit
8a4bd85efd
@ -136,6 +136,9 @@ export const QueryWrapper = ({
|
|||||||
}
|
}
|
||||||
|
|
||||||
const showVizualisation = data.state !== LoadingState.NotStarted;
|
const showVizualisation = data.state !== LoadingState.NotStarted;
|
||||||
|
// ⚠️ the query editors want the entire array of queries passed as "DataQuery" NOT "AlertQuery"
|
||||||
|
// TypeScript isn't complaining here because the interfaces just happen to be compatible
|
||||||
|
const editorQueries = cloneDeep(queries.map((query) => query.model));
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Stack direction="column" gap={0.5}>
|
<Stack direction="column" gap={0.5}>
|
||||||
@ -155,7 +158,7 @@ export const QueryWrapper = ({
|
|||||||
onRemoveQuery={onRemoveQuery}
|
onRemoveQuery={onRemoveQuery}
|
||||||
onAddQuery={() => onDuplicateQuery(cloneDeep(query))}
|
onAddQuery={() => onDuplicateQuery(cloneDeep(query))}
|
||||||
onRunQuery={onRunQueries}
|
onRunQuery={onRunQueries}
|
||||||
queries={queries}
|
queries={editorQueries}
|
||||||
renderHeaderExtras={() => <HeaderExtras query={query} index={index} error={error} />}
|
renderHeaderExtras={() => <HeaderExtras query={query} index={index} error={error} />}
|
||||||
app={CoreApp.UnifiedAlerting}
|
app={CoreApp.UnifiedAlerting}
|
||||||
hideDisableQuery={true}
|
hideDisableQuery={true}
|
||||||
|
@ -76,7 +76,7 @@ export const GraphiteQueryEditorContext = ({
|
|||||||
() => {
|
() => {
|
||||||
if (needsRefresh && state) {
|
if (needsRefresh && state) {
|
||||||
setNeedsRefresh(false);
|
setNeedsRefresh(false);
|
||||||
onChange({ ...query, target: state.target.target });
|
onChange({ ...query, target: state.target.target, targetFull: state.target.targetFull });
|
||||||
onRunQuery();
|
onRunQuery();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@ -92,8 +92,8 @@ export const GraphiteQueryEditorContext = ({
|
|||||||
datasource: datasource,
|
datasource: datasource,
|
||||||
range: range,
|
range: range,
|
||||||
templateSrv: getTemplateSrv(),
|
templateSrv: getTemplateSrv(),
|
||||||
// list of queries is passed only when the editor is in Dashboards. This is to allow interpolation
|
// list of queries is passed only when the editor is in Dashboards or Alerting. This is to allow interpolation
|
||||||
// of sub-queries which are stored in "targetFull" property used by alerting in the backend.
|
// of sub-queries which are stored in "targetFull" property. This is used by alerting in the backend.
|
||||||
queries: queries || [],
|
queries: queries || [],
|
||||||
refresh: () => {
|
refresh: () => {
|
||||||
// do not run onChange/onRunQuery straight away to ensure the internal state gets updated first
|
// do not run onChange/onRunQuery straight away to ensure the internal state gets updated first
|
||||||
|
@ -14,6 +14,7 @@ export interface GraphiteQuery extends DataQuery {
|
|||||||
queryType?: string;
|
queryType?: string;
|
||||||
textEditor?: boolean;
|
textEditor?: boolean;
|
||||||
target?: string;
|
target?: string;
|
||||||
|
targetFull?: string;
|
||||||
tags?: string[];
|
tags?: string[];
|
||||||
fromAnnotations?: boolean;
|
fromAnnotations?: boolean;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user