mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Loki: Enable lokiStructuredMetadata
feature flag by default (#82325)
This commit is contained in:
parent
062fa2daa2
commit
e422309bc4
@ -51,6 +51,7 @@ Some features are enabled by default. You can disable these feature by setting t
|
|||||||
| `alertingInsights` | Show the new alerting insights landing page | Yes |
|
| `alertingInsights` | Show the new alerting insights landing page | Yes |
|
||||||
| `cloudWatchWildCardDimensionValues` | Fetches dimension values from CloudWatch to correctly label wildcard dimensions | Yes |
|
| `cloudWatchWildCardDimensionValues` | Fetches dimension values from CloudWatch to correctly label wildcard dimensions | Yes |
|
||||||
| `recoveryThreshold` | Enables feature recovery threshold (aka hysteresis) for threshold server-side expression | Yes |
|
| `recoveryThreshold` | Enables feature recovery threshold (aka hysteresis) for threshold server-side expression | Yes |
|
||||||
|
| `lokiStructuredMetadata` | Enables the loki data source to request structured metadata from the Loki server | Yes |
|
||||||
| `logRowsPopoverMenu` | Enable filtering menu displayed when text of a log line is selected | Yes |
|
| `logRowsPopoverMenu` | Enable filtering menu displayed when text of a log line is selected | Yes |
|
||||||
| `displayAnonymousStats` | Enables anonymous stats to be shown in the UI for Grafana | Yes |
|
| `displayAnonymousStats` | Enables anonymous stats to be shown in the UI for Grafana | Yes |
|
||||||
| `lokiQueryHints` | Enables query hints for Loki | Yes |
|
| `lokiQueryHints` | Enables query hints for Loki | Yes |
|
||||||
@ -152,7 +153,6 @@ Experimental features might be changed or removed without prior notice.
|
|||||||
| `enableNativeHTTPHistogram` | Enables native HTTP Histograms |
|
| `enableNativeHTTPHistogram` | Enables native HTTP Histograms |
|
||||||
| `kubernetesPlaylists` | Use the kubernetes API in the frontend for playlists, and route /api/playlist requests to k8s |
|
| `kubernetesPlaylists` | Use the kubernetes API in the frontend for playlists, and route /api/playlist requests to k8s |
|
||||||
| `kubernetesSnapshots` | Routes snapshot requests from /api to the /apis endpoint |
|
| `kubernetesSnapshots` | Routes snapshot requests from /api to the /apis endpoint |
|
||||||
| `lokiStructuredMetadata` | Enables the loki data source to request structured metadata from the Loki server |
|
|
||||||
| `teamHttpHeaders` | Enables datasources to apply team headers to the client requests |
|
| `teamHttpHeaders` | Enables datasources to apply team headers to the client requests |
|
||||||
| `cachingOptimizeSerializationMemoryUsage` | If enabled, the caching backend gradually serializes query responses for the cache, comparing against the configured `[caching]max_value_mb` value as it goes. This can can help prevent Grafana from running out of memory while attempting to cache very large query responses. |
|
| `cachingOptimizeSerializationMemoryUsage` | If enabled, the caching backend gradually serializes query responses for the cache, comparing against the configured `[caching]max_value_mb` value as it goes. This can can help prevent Grafana from running out of memory while attempting to cache very large query responses. |
|
||||||
| `pluginsInstrumentationStatusSource` | Include a status source label for plugin request metrics and logs |
|
| `pluginsInstrumentationStatusSource` | Include a status source label for plugin request metrics and logs |
|
||||||
|
@ -878,9 +878,10 @@ var (
|
|||||||
{
|
{
|
||||||
Name: "lokiStructuredMetadata",
|
Name: "lokiStructuredMetadata",
|
||||||
Description: "Enables the loki data source to request structured metadata from the Loki server",
|
Description: "Enables the loki data source to request structured metadata from the Loki server",
|
||||||
Stage: FeatureStageExperimental,
|
Stage: FeatureStageGeneralAvailability,
|
||||||
FrontendOnly: false,
|
FrontendOnly: false,
|
||||||
Owner: grafanaObservabilityLogsSquad,
|
Owner: grafanaObservabilityLogsSquad,
|
||||||
|
Expression: "true",
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Name: "teamHttpHeaders",
|
Name: "teamHttpHeaders",
|
||||||
|
@ -116,7 +116,7 @@ kubernetesSnapshots,experimental,@grafana/grafana-app-platform-squad,false,true,
|
|||||||
kubernetesQueryServiceRewrite,experimental,@grafana/grafana-app-platform-squad,true,true,false
|
kubernetesQueryServiceRewrite,experimental,@grafana/grafana-app-platform-squad,true,true,false
|
||||||
cloudWatchBatchQueries,preview,@grafana/aws-datasources,false,false,false
|
cloudWatchBatchQueries,preview,@grafana/aws-datasources,false,false,false
|
||||||
recoveryThreshold,GA,@grafana/alerting-squad,false,true,false
|
recoveryThreshold,GA,@grafana/alerting-squad,false,true,false
|
||||||
lokiStructuredMetadata,experimental,@grafana/observability-logs,false,false,false
|
lokiStructuredMetadata,GA,@grafana/observability-logs,false,false,false
|
||||||
teamHttpHeaders,experimental,@grafana/identity-access-team,false,false,false
|
teamHttpHeaders,experimental,@grafana/identity-access-team,false,false,false
|
||||||
awsDatasourcesNewFormStyling,preview,@grafana/aws-datasources,false,false,true
|
awsDatasourcesNewFormStyling,preview,@grafana/aws-datasources,false,false,true
|
||||||
cachingOptimizeSerializationMemoryUsage,experimental,@grafana/grafana-operator-experience-squad,false,false,false
|
cachingOptimizeSerializationMemoryUsage,experimental,@grafana/grafana-operator-experience-squad,false,false,false
|
||||||
|
|
@ -1468,12 +1468,15 @@
|
|||||||
{
|
{
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"name": "lokiStructuredMetadata",
|
"name": "lokiStructuredMetadata",
|
||||||
"resourceVersion": "1700136000000",
|
"resourceVersion": "1707755676105",
|
||||||
"creationTimestamp": "2023-11-16T12:00:00Z"
|
"creationTimestamp": "2023-11-16T12:00:00Z",
|
||||||
|
"annotations": {
|
||||||
|
"grafana.app/updatedTimestamp": "2024-02-12 16:34:36.105725 +0000 UTC"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"spec": {
|
"spec": {
|
||||||
"description": "Enables the loki data source to request structured metadata from the Loki server",
|
"description": "Enables the loki data source to request structured metadata from the Loki server",
|
||||||
"stage": "experimental",
|
"stage": "GA",
|
||||||
"codeowner": "@grafana/observability-logs"
|
"codeowner": "@grafana/observability-logs"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user