diff --git a/pkg/api/frontendsettings.go b/pkg/api/frontendsettings.go index d61d3f05c43..2db53f1628c 100644 --- a/pkg/api/frontendsettings.go +++ b/pkg/api/frontendsettings.go @@ -299,6 +299,9 @@ func (hs *HTTPServer) getFrontendSettingsMap(c *models.ReqContext) (map[string]i "caching": map[string]bool{ "enabled": hs.Cfg.SectionWithEnvOverrides("caching").Key("enabled").MustBool(true), }, + "recordedQueries": map[string]bool{ + "enabled": hs.Cfg.SectionWithEnvOverrides("recorded_queries").Key("enabled").MustBool(false), + }, "unifiedAlertingEnabled": hs.Cfg.UnifiedAlerting.Enabled, }