mirror of https://github.com/grafana/grafana.git
Enable logsPanelControls by default (#103725)
This commit is contained in:
parent
ac0c1ece79
commit
b839be6086
|
|
@ -116,6 +116,7 @@ Most [generally available](https://grafana.com/docs/release-life-cycle/#general-
|
|||
| `teamHttpHeadersMimir` | Enables LBAC for datasources for Mimir to apply LBAC filtering of metrics to the client requests for users in teams |
|
||||
| `alertRuleRestore` | Enables the alert rule restore feature |
|
||||
| `azureMonitorLogsBuilderEditor` | Enables the logs builder mode for the Azure Monitor data source |
|
||||
| `logsPanelControls` | Enables a control component for the logs panel in Explore |
|
||||
|
||||
## Experimental feature toggles
|
||||
|
||||
|
|
|
|||
|
|
@ -1034,7 +1034,7 @@ export interface FeatureToggles {
|
|||
unifiedNavbars?: boolean;
|
||||
/**
|
||||
* Enables a control component for the logs panel in Explore
|
||||
* @default false
|
||||
* @default true
|
||||
*/
|
||||
logsPanelControls?: boolean;
|
||||
/**
|
||||
|
|
|
|||
|
|
@ -1779,10 +1779,10 @@ var (
|
|||
{
|
||||
Name: "logsPanelControls",
|
||||
Description: "Enables a control component for the logs panel in Explore",
|
||||
Stage: FeatureStagePrivatePreview,
|
||||
Stage: FeatureStagePublicPreview,
|
||||
FrontendOnly: true,
|
||||
Owner: grafanaObservabilityLogsSquad,
|
||||
Expression: "false",
|
||||
Expression: "true",
|
||||
},
|
||||
{
|
||||
Name: "metricsFromProfiles",
|
||||
|
|
|
|||
|
|
@ -232,5 +232,5 @@ xrayApplicationSignals,experimental,@grafana/aws-datasources,false,false,true
|
|||
multiTenantTempCredentials,experimental,@grafana/aws-datasources,false,false,false
|
||||
localizationForPlugins,experimental,@grafana/plugins-platform-backend,false,false,false
|
||||
unifiedNavbars,GA,@grafana/plugins-platform-backend,false,false,true
|
||||
logsPanelControls,privatePreview,@grafana/observability-logs,false,false,true
|
||||
logsPanelControls,preview,@grafana/observability-logs,false,false,true
|
||||
metricsFromProfiles,experimental,@grafana/observability-traces-and-profiling,false,false,true
|
||||
|
|
|
|||
|
|
|
@ -1867,18 +1867,18 @@
|
|||
{
|
||||
"metadata": {
|
||||
"name": "logsPanelControls",
|
||||
"resourceVersion": "1743772342343",
|
||||
"resourceVersion": "1744209818391",
|
||||
"creationTimestamp": "2025-04-04T13:11:29Z",
|
||||
"annotations": {
|
||||
"grafana.app/updatedTimestamp": "2025-04-04 13:12:22.343052 +0000 UTC"
|
||||
"grafana.app/updatedTimestamp": "2025-04-09 14:43:38.391331 +0000 UTC"
|
||||
}
|
||||
},
|
||||
"spec": {
|
||||
"description": "Enables a control component for the logs panel in Explore",
|
||||
"stage": "privatePreview",
|
||||
"stage": "preview",
|
||||
"codeowner": "@grafana/observability-logs",
|
||||
"frontend": true,
|
||||
"expression": "false"
|
||||
"expression": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue