mirror of
https://github.com/grafana/grafana.git
synced 2025-08-03 01:22:29 +08:00
Alerting: Enable alertingMigrationUI feature flag by default (#105419)
This commit is contained in:

committed by
GitHub

parent
06e8b5a2f8
commit
d8dd2facdd
@ -80,6 +80,7 @@ Most [generally available](https://grafana.com/docs/release-life-cycle/#general-
|
||||
| `alertingNotificationsStepMode` | Enables simplified step mode in the notifications section | Yes |
|
||||
| `lokiLabelNamesQueryApi` | Defaults to using the Loki `/labels` API instead of `/series` | Yes |
|
||||
| `grafanaManagedRecordingRulesDatasources` | Enables writing to data sources for Grafana-managed recording rules. | |
|
||||
| `alertingMigrationUI` | Enables the alerting migration UI, to migrate data source-managed rules to Grafana-managed rules | Yes |
|
||||
| `unifiedNavbars` | Enables unified navbars | |
|
||||
|
||||
## Public preview feature toggles
|
||||
|
@ -931,7 +931,8 @@ export interface FeatureToggles {
|
||||
*/
|
||||
inviteUserExperimental?: boolean;
|
||||
/**
|
||||
* Enables the alerting migration UI, to migrate datasource-managed rules to Grafana-managed rules
|
||||
* Enables the alerting migration UI, to migrate data source-managed rules to Grafana-managed rules
|
||||
* @default true
|
||||
*/
|
||||
alertingMigrationUI?: boolean;
|
||||
/**
|
||||
|
@ -1595,13 +1595,12 @@ var (
|
||||
FrontendOnly: true,
|
||||
},
|
||||
{
|
||||
Name: "alertingMigrationUI",
|
||||
Description: "Enables the alerting migration UI, to migrate datasource-managed rules to Grafana-managed rules",
|
||||
FrontendOnly: true,
|
||||
Stage: FeatureStageExperimental,
|
||||
Owner: grafanaAlertingSquad,
|
||||
HideFromAdminPage: true,
|
||||
HideFromDocs: true,
|
||||
Name: "alertingMigrationUI",
|
||||
Description: "Enables the alerting migration UI, to migrate data source-managed rules to Grafana-managed rules",
|
||||
FrontendOnly: true,
|
||||
Stage: FeatureStageGeneralAvailability,
|
||||
Owner: grafanaAlertingSquad,
|
||||
Expression: "true",
|
||||
},
|
||||
{
|
||||
Name: "unifiedStorageHistoryPruner",
|
||||
|
@ -209,7 +209,7 @@ alertRuleRestore,preview,@grafana/alerting-squad,false,false,false
|
||||
grafanaManagedRecordingRulesDatasources,GA,@grafana/alerting-squad,false,false,false
|
||||
infinityRunQueriesInParallel,privatePreview,@grafana/oss-big-tent,false,false,false
|
||||
inviteUserExperimental,experimental,@grafana/sharing-squad,false,false,true
|
||||
alertingMigrationUI,experimental,@grafana/alerting-squad,false,false,true
|
||||
alertingMigrationUI,GA,@grafana/alerting-squad,false,false,true
|
||||
unifiedStorageHistoryPruner,GA,@grafana/search-and-storage,false,false,false
|
||||
azureMonitorLogsBuilderEditor,preview,@grafana/partner-datasources,false,false,false
|
||||
localeFormatPreference,experimental,@grafana/grafana-frontend-platform,false,false,false
|
||||
|
|
@ -848,7 +848,7 @@ const (
|
||||
FlagInviteUserExperimental = "inviteUserExperimental"
|
||||
|
||||
// FlagAlertingMigrationUI
|
||||
// Enables the alerting migration UI, to migrate datasource-managed rules to Grafana-managed rules
|
||||
// Enables the alerting migration UI, to migrate data source-managed rules to Grafana-managed rules
|
||||
FlagAlertingMigrationUI = "alertingMigrationUI"
|
||||
|
||||
// FlagUnifiedStorageHistoryPruner
|
||||
|
@ -214,16 +214,18 @@
|
||||
{
|
||||
"metadata": {
|
||||
"name": "alertingMigrationUI",
|
||||
"resourceVersion": "1743693517832",
|
||||
"creationTimestamp": "2025-03-14T16:40:05Z"
|
||||
"resourceVersion": "1747241866044",
|
||||
"creationTimestamp": "2025-03-14T16:40:05Z",
|
||||
"annotations": {
|
||||
"grafana.app/updatedTimestamp": "2025-05-14 16:57:46.044198 +0000 UTC"
|
||||
}
|
||||
},
|
||||
"spec": {
|
||||
"description": "Enables the alerting migration UI, to migrate datasource-managed rules to Grafana-managed rules",
|
||||
"stage": "experimental",
|
||||
"description": "Enables the alerting migration UI, to migrate data source-managed rules to Grafana-managed rules",
|
||||
"stage": "GA",
|
||||
"codeowner": "@grafana/alerting-squad",
|
||||
"frontend": true,
|
||||
"hideFromAdminPage": true,
|
||||
"hideFromDocs": true
|
||||
"expression": "true"
|
||||
}
|
||||
},
|
||||
{
|
||||
|
Reference in New Issue
Block a user