Recorded Queries: Enable by default (#44397)

This commit is contained in:
Todd Treece
2022-01-27 11:09:39 -05:00
committed by GitHub
parent 153b231521
commit 4d1f3a3f6c
2 changed files with 2 additions and 2 deletions

View File

@@ -269,7 +269,7 @@ func (hs *HTTPServer) getFrontendSettingsMap(c *models.ReqContext) (map[string]i
"enabled": hs.Cfg.SectionWithEnvOverrides("caching").Key("enabled").MustBool(true),
},
"recordedQueries": map[string]bool{
"enabled": hs.Cfg.SectionWithEnvOverrides("recorded_queries").Key("enabled").MustBool(false),
"enabled": hs.Cfg.SectionWithEnvOverrides("recorded_queries").Key("enabled").MustBool(true),
},
"unifiedAlertingEnabled": hs.Cfg.UnifiedAlerting.Enabled,
"featureHighlights": map[string]bool{