mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
UnifiedHistory: Create feature toggle (#97922)
This commit is contained in:
parent
0cce224adb
commit
aac62c89da
@ -227,6 +227,7 @@ Experimental features might be changed or removed without prior notice.
|
|||||||
| `crashDetection` | Enables browser crash detection reporting to Faro. |
|
| `crashDetection` | Enables browser crash detection reporting to Faro. |
|
||||||
| `jaegerBackendMigration` | Enables querying the Jaeger data source without the proxy |
|
| `jaegerBackendMigration` | Enables querying the Jaeger data source without the proxy |
|
||||||
| `alertingNotificationsStepMode` | Enables simplified step mode in the notifications section |
|
| `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
|
## Development feature toggles
|
||||||
|
|
||||||
|
@ -243,4 +243,5 @@ export interface FeatureToggles {
|
|||||||
alertingNotificationsStepMode?: boolean;
|
alertingNotificationsStepMode?: boolean;
|
||||||
feedbackButton?: boolean;
|
feedbackButton?: boolean;
|
||||||
elasticsearchCrossClusterSearch?: boolean;
|
elasticsearchCrossClusterSearch?: boolean;
|
||||||
|
unifiedHistory?: boolean;
|
||||||
}
|
}
|
||||||
|
@ -1682,6 +1682,13 @@ var (
|
|||||||
Stage: FeatureStagePublicPreview,
|
Stage: FeatureStagePublicPreview,
|
||||||
Owner: awsDatasourcesSquad,
|
Owner: awsDatasourcesSquad,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
Name: "unifiedHistory",
|
||||||
|
Description: "Displays the navigation history so the user can navigate back to previous pages",
|
||||||
|
Stage: FeatureStageExperimental,
|
||||||
|
Owner: grafanaFrontendPlatformSquad,
|
||||||
|
FrontendOnly: true,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -224,3 +224,4 @@ azureMonitorEnableUserAuth,GA,@grafana/partner-datasources,false,false,false
|
|||||||
alertingNotificationsStepMode,experimental,@grafana/alerting-squad,false,false,true
|
alertingNotificationsStepMode,experimental,@grafana/alerting-squad,false,false,true
|
||||||
feedbackButton,experimental,@grafana/grafana-operator-experience-squad,false,false,false
|
feedbackButton,experimental,@grafana/grafana-operator-experience-squad,false,false,false
|
||||||
elasticsearchCrossClusterSearch,preview,@grafana/aws-datasources,false,false,false
|
elasticsearchCrossClusterSearch,preview,@grafana/aws-datasources,false,false,false
|
||||||
|
unifiedHistory,experimental,@grafana/grafana-frontend-platform,false,false,true
|
||||||
|
|
@ -906,4 +906,8 @@ const (
|
|||||||
// FlagElasticsearchCrossClusterSearch
|
// FlagElasticsearchCrossClusterSearch
|
||||||
// Enables cross cluster search in the Elasticsearch datasource
|
// Enables cross cluster search in the Elasticsearch datasource
|
||||||
FlagElasticsearchCrossClusterSearch = "elasticsearchCrossClusterSearch"
|
FlagElasticsearchCrossClusterSearch = "elasticsearchCrossClusterSearch"
|
||||||
|
|
||||||
|
// FlagUnifiedHistory
|
||||||
|
// Displays the navigation history so the user can navigate back to previous pages
|
||||||
|
FlagUnifiedHistory = "unifiedHistory"
|
||||||
)
|
)
|
||||||
|
@ -3463,6 +3463,19 @@
|
|||||||
"expression": "true"
|
"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": {
|
"metadata": {
|
||||||
"name": "unifiedRequestLog",
|
"name": "unifiedRequestLog",
|
||||||
|
Loading…
Reference in New Issue
Block a user