[Alerting Insights] - Use Grafana feature flag system (#74749)

Use Grafana feature flag system
This commit is contained in:
Virginia Cepeda
2023-09-14 09:58:04 -03:00
committed by GitHub
parent 5af35f1f3c
commit 5d88b8a4f5
7 changed files with 45 additions and 35 deletions
+7
View File
@@ -737,5 +737,12 @@ var (
FrontendOnly: false,
Owner: hostedGrafanaTeam,
},
{
Name: "alertingInsights",
Description: "Show the new alerting insights landing page",
FrontendOnly: true,
Stage: FeatureStageExperimental,
Owner: grafanaAlertingSquad,
},
}
)
+1
View File
@@ -105,3 +105,4 @@ newBrowseDashboards,preview,@grafana/grafana-frontend-platform,false,false,false
sseGroupByDatasource,experimental,@grafana/observability-metrics,false,false,false,false
requestInstrumentationStatusSource,experimental,@grafana/plugins-platform-backend,false,false,false,false
wargamesTesting,experimental,@grafana/hosted-grafana-team,false,false,false,false
alertingInsights,experimental,@grafana/alerting-squad,false,false,false,true
1 Name Stage Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
105 sseGroupByDatasource experimental @grafana/observability-metrics false false false false
106 requestInstrumentationStatusSource experimental @grafana/plugins-platform-backend false false false false
107 wargamesTesting experimental @grafana/hosted-grafana-team false false false false
108 alertingInsights experimental @grafana/alerting-squad false false false true
+4
View File
@@ -430,4 +430,8 @@ const (
// FlagWargamesTesting
// Placeholder feature flag for internal testing
FlagWargamesTesting = "wargamesTesting"
// FlagAlertingInsights
// Show the new alerting insights landing page
FlagAlertingInsights = "alertingInsights"
)