From 53905f2d4abad59efc4b20eb3dea404720bad4da Mon Sep 17 00:00:00 2001 From: Andrew Hackmann <5140848+bossinc@users.noreply.github.com> Date: Mon, 15 Nov 2021 14:04:45 -0700 Subject: [PATCH] recorded queries/enable recorded queries option (#41670) --- packages/grafana-runtime/src/config.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/grafana-runtime/src/config.ts b/packages/grafana-runtime/src/config.ts index 80a81a7a4b6..bde25a8b709 100644 --- a/packages/grafana-runtime/src/config.ts +++ b/packages/grafana-runtime/src/config.ts @@ -100,6 +100,9 @@ export class GrafanaBootConfig implements GrafanaConfig { unifiedAlertingEnabled = false; applicationInsightsConnectionString?: string; applicationInsightsEndpointUrl?: string; + recordedQueries = { + enabled: false, + }; constructor(options: GrafanaBootConfig) { const mode = options.bootData.user.lightTheme ? 'light' : 'dark';