Logging: Enables unified error logging by default (#96512)

enables unified error logging by default

Signed-off-by: bergquist <carl.bergquist@gmail.com>
pull/97063/head
Carl Bergquist 6 months ago committed by GitHub
parent 2400483d6c
commit 35d1274919
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md
  2. 10
      pkg/services/featuremgmt/registry.go
  3. 2
      pkg/services/featuremgmt/toggles_gen.csv
  4. 13
      pkg/services/featuremgmt/toggles_gen.json

@ -36,6 +36,7 @@ Most [generally available](https://grafana.com/docs/release-life-cycle/#general-
| `influxdbBackendMigration` | Query InfluxDB InfluxQL without the proxy | Yes |
| `lokiMetricDataplane` | Changes metric responses from Loki to be compliant with the dataplane specification. | Yes |
| `dataplaneFrontendFallback` | Support dataplane contract field name change for transformations and field name matchers where the name is different | Yes |
| `unifiedRequestLog` | Writes error logs to the request logger | Yes |
| `recordedQueriesMulti` | Enables writing multiple items from a single query within Recorded Queries | Yes |
| `logsExploreTableVisualisation` | A table visualisation for logs in Explore | Yes |
| `transformationsRedesign` | Enables the transformations redesign | Yes |
@ -147,7 +148,6 @@ Experimental features might be changed or removed without prior notice.
| `alertStateHistoryLokiSecondary` | Enable Grafana to write alert state history to an external Loki instance in addition to Grafana annotations. |
| `alertStateHistoryLokiPrimary` | Enable a remote Loki instance as the primary source for state history reads. |
| `alertStateHistoryLokiOnly` | Disable Grafana alerts from emitting annotations when a remote Loki instance is available. |
| `unifiedRequestLog` | Writes error logs to the request logger |
| `extraThemes` | Enables extra themes |
| `lokiPredefinedOperations` | Adds predefined query operations to Loki query editor |
| `pluginsFrontendSandbox` | Enables the plugins frontend sandbox |

@ -364,10 +364,12 @@ var (
Owner: grafanaAlertingSquad,
},
{
Name: "unifiedRequestLog",
Description: "Writes error logs to the request logger",
Stage: FeatureStageExperimental,
Owner: grafanaBackendGroup,
Name: "unifiedRequestLog",
Description: "Writes error logs to the request logger",
Stage: FeatureStageGeneralAvailability,
Owner: grafanaBackendGroup,
Expression: "true",
HideFromAdminPage: true,
},
{
Name: "renderAuthJWT",

@ -47,7 +47,7 @@ disableSSEDataplane,experimental,@grafana/observability-metrics,false,false,fals
alertStateHistoryLokiSecondary,experimental,@grafana/alerting-squad,false,false,false
alertStateHistoryLokiPrimary,experimental,@grafana/alerting-squad,false,false,false
alertStateHistoryLokiOnly,experimental,@grafana/alerting-squad,false,false,false
unifiedRequestLog,experimental,@grafana/grafana-backend-group,false,false,false
unifiedRequestLog,GA,@grafana/grafana-backend-group,false,false,false
renderAuthJWT,preview,@grafana/grafana-as-code,false,false,false
refactorVariablesTimeRange,preview,@grafana/dashboards-squad,false,false,false
faroDatasourceSelector,preview,@grafana/app-o11y,false,false,true

1 Name Stage Owner requiresDevMode RequiresRestart FrontendOnly
47 alertStateHistoryLokiSecondary experimental @grafana/alerting-squad false false false
48 alertStateHistoryLokiPrimary experimental @grafana/alerting-squad false false false
49 alertStateHistoryLokiOnly experimental @grafana/alerting-squad false false false
50 unifiedRequestLog experimental GA @grafana/grafana-backend-group false false false
51 renderAuthJWT preview @grafana/grafana-as-code false false false
52 refactorVariablesTimeRange preview @grafana/dashboards-squad false false false
53 faroDatasourceSelector preview @grafana/app-o11y false false true

@ -3374,13 +3374,18 @@
{
"metadata": {
"name": "unifiedRequestLog",
"resourceVersion": "1718727528075",
"creationTimestamp": "2023-03-31T13:38:09Z"
"resourceVersion": "1731688509416",
"creationTimestamp": "2023-03-31T13:38:09Z",
"annotations": {
"grafana.app/updatedTimestamp": "2024-11-15 16:35:09.416681 +0000 UTC"
}
},
"spec": {
"description": "Writes error logs to the request logger",
"stage": "experimental",
"codeowner": "@grafana/grafana-backend-group"
"stage": "GA",
"codeowner": "@grafana/grafana-backend-group",
"hideFromAdminPage": true,
"expression": "true"
}
},
{

Loading…
Cancel
Save