UnifiedHistory: Create feature toggle (#97922)

This commit is contained in:
Laura Fernández 2024-12-13 11:41:18 +01:00 committed by GitHub
parent 0cce224adb
commit aac62c89da
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 27 additions and 0 deletions

View File

@ -227,6 +227,7 @@ Experimental features might be changed or removed without prior notice.
| `crashDetection` | Enables browser crash detection reporting to Faro. |
| `jaegerBackendMigration` | Enables querying the Jaeger data source without the proxy |
| `alertingNotificationsStepMode` | Enables simplified step mode in the notifications section |
| `unifiedHistory` | Displays the navigation history so the user can navigate back to previous pages |
## Development feature toggles

View File

@ -243,4 +243,5 @@ export interface FeatureToggles {
alertingNotificationsStepMode?: boolean;
feedbackButton?: boolean;
elasticsearchCrossClusterSearch?: boolean;
unifiedHistory?: boolean;
}

View File

@ -1682,6 +1682,13 @@ var (
Stage: FeatureStagePublicPreview,
Owner: awsDatasourcesSquad,
},
{
Name: "unifiedHistory",
Description: "Displays the navigation history so the user can navigate back to previous pages",
Stage: FeatureStageExperimental,
Owner: grafanaFrontendPlatformSquad,
FrontendOnly: true,
},
}
)

View File

@ -224,3 +224,4 @@ azureMonitorEnableUserAuth,GA,@grafana/partner-datasources,false,false,false
alertingNotificationsStepMode,experimental,@grafana/alerting-squad,false,false,true
feedbackButton,experimental,@grafana/grafana-operator-experience-squad,false,false,false
elasticsearchCrossClusterSearch,preview,@grafana/aws-datasources,false,false,false
unifiedHistory,experimental,@grafana/grafana-frontend-platform,false,false,true

1 Name Stage Owner requiresDevMode RequiresRestart FrontendOnly
224 alertingNotificationsStepMode experimental @grafana/alerting-squad false false true
225 feedbackButton experimental @grafana/grafana-operator-experience-squad false false false
226 elasticsearchCrossClusterSearch preview @grafana/aws-datasources false false false
227 unifiedHistory experimental @grafana/grafana-frontend-platform false false true

View File

@ -906,4 +906,8 @@ const (
// FlagElasticsearchCrossClusterSearch
// Enables cross cluster search in the Elasticsearch datasource
FlagElasticsearchCrossClusterSearch = "elasticsearchCrossClusterSearch"
// FlagUnifiedHistory
// Displays the navigation history so the user can navigate back to previous pages
FlagUnifiedHistory = "unifiedHistory"
)

View File

@ -3463,6 +3463,19 @@
"expression": "true"
}
},
{
"metadata": {
"name": "unifiedHistory",
"resourceVersion": "1734085219453",
"creationTimestamp": "2024-12-13T10:20:19Z"
},
"spec": {
"description": "Displays the navigation history so the user can navigate back to previous pages",
"stage": "experimental",
"codeowner": "@grafana/grafana-frontend-platform",
"frontend": true
}
},
{
"metadata": {
"name": "unifiedRequestLog",