mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Add the feature toggle for the new central alert state history feature
This commit is contained in:
parent
aac6e6dfd9
commit
c4ec603da8
@ -190,6 +190,7 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `newDashboardSharingComponent` | Enables the new sharing drawer design |
|
||||
| `alertingListViewV2` | Enables the new alert list view design |
|
||||
| `notificationBanner` | Enables the notification banner UI and API |
|
||||
| `alertingCentralAlertHistory` | Enables the new central alert history. |
|
||||
|
||||
## Development feature toggles
|
||||
|
||||
|
@ -194,4 +194,5 @@ export interface FeatureToggles {
|
||||
datasourceProxyDisableRBAC?: boolean;
|
||||
alertingDisableSendAlertsExternal?: boolean;
|
||||
preserveDashboardStateWhenNavigating?: boolean;
|
||||
alertingCentralAlertHistory?: boolean;
|
||||
}
|
||||
|
@ -1314,6 +1314,13 @@ var (
|
||||
HideFromDocs: true,
|
||||
HideFromAdminPage: true,
|
||||
},
|
||||
{
|
||||
Name: "alertingCentralAlertHistory",
|
||||
Description: "Enables the new central alert history.",
|
||||
Stage: FeatureStageExperimental,
|
||||
Owner: grafanaAlertingSquad,
|
||||
FrontendOnly: true,
|
||||
},
|
||||
}
|
||||
)
|
||||
|
||||
|
@ -175,3 +175,4 @@ dashboardRestore,experimental,@grafana/grafana-frontend-platform,false,false,fal
|
||||
datasourceProxyDisableRBAC,GA,@grafana/identity-access-team,false,false,false
|
||||
alertingDisableSendAlertsExternal,experimental,@grafana/alerting-squad,false,false,false
|
||||
preserveDashboardStateWhenNavigating,experimental,@grafana/dashboards-squad,false,false,false
|
||||
alertingCentralAlertHistory,experimental,@grafana/alerting-squad,false,false,true
|
||||
|
|
@ -710,4 +710,8 @@ const (
|
||||
// FlagPreserveDashboardStateWhenNavigating
|
||||
// Enables possibility to preserve dashboard variables and time range when navigating between dashboards
|
||||
FlagPreserveDashboardStateWhenNavigating = "preserveDashboardStateWhenNavigating"
|
||||
|
||||
// FlagAlertingCentralAlertHistory
|
||||
// Enables the new central alert history.
|
||||
FlagAlertingCentralAlertHistory = "alertingCentralAlertHistory"
|
||||
)
|
||||
|
@ -2264,6 +2264,19 @@
|
||||
"hideFromAdminPage": true,
|
||||
"hideFromDocs": true
|
||||
}
|
||||
},
|
||||
{
|
||||
"metadata": {
|
||||
"name": "alertingCentralAlertHistory",
|
||||
"resourceVersion": "1716819619889",
|
||||
"creationTimestamp": "2024-05-27T14:20:19Z"
|
||||
},
|
||||
"spec": {
|
||||
"description": "Enables the new central alert history.",
|
||||
"stage": "experimental",
|
||||
"codeowner": "@grafana/alerting-squad",
|
||||
"frontend": true
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
Loading…
Reference in New Issue
Block a user