Recorded Queries: Enable by default (#44397)

pull/44673/head
Todd Treece 3 years ago committed by GitHub
parent 153b231521
commit 4d1f3a3f6c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      packages/grafana-runtime/src/config.ts
  2. 2
      pkg/api/frontendsettings.go

@ -93,7 +93,7 @@ export class GrafanaBootConfig implements GrafanaConfig {
applicationInsightsConnectionString?: string;
applicationInsightsEndpointUrl?: string;
recordedQueries = {
enabled: false,
enabled: true,
};
featureHighlights = {
enabled: false,

@ -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{

Loading…
Cancel
Save