Alerting: Contact Points v2 part IV (#76063)

This commit is contained in:
Gilles De Mey
2023-10-25 15:57:53 +02:00
committed by GitHub
parent 283f279a17
commit e12e40fc24
28 changed files with 610 additions and 299 deletions

View File

@@ -773,6 +773,13 @@ var (
Owner: grafanaAlertingSquad,
Expression: "true", // enabled by default
},
{
Name: "alertingContactPointsV2",
Description: "Show the new contacpoints list view",
FrontendOnly: true,
Stage: FeatureStagePublicPreview,
Owner: grafanaAlertingSquad,
},
{
Name: "externalCorePlugins",
Description: "Allow core plugins to be loaded as external",

View File

@@ -109,6 +109,7 @@ libraryPanelRBAC,experimental,@grafana/dashboards-squad,false,false,true,false
lokiRunQueriesInParallel,privatePreview,@grafana/observability-logs,false,false,false,false
wargamesTesting,experimental,@grafana/hosted-grafana-team,false,false,false,false
alertingInsights,GA,@grafana/alerting-squad,false,false,false,true
alertingContactPointsV2,preview,@grafana/alerting-squad,false,false,false,true
externalCorePlugins,experimental,@grafana/plugins-platform-backend,false,false,false,false
pluginsAPIMetrics,experimental,@grafana/plugins-platform-backend,false,false,false,true
httpSLOLevels,experimental,@grafana/hosted-grafana-team,false,false,true,false
1 Name Stage Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
109 lokiRunQueriesInParallel privatePreview @grafana/observability-logs false false false false
110 wargamesTesting experimental @grafana/hosted-grafana-team false false false false
111 alertingInsights GA @grafana/alerting-squad false false false true
112 alertingContactPointsV2 preview @grafana/alerting-squad false false false true
113 externalCorePlugins experimental @grafana/plugins-platform-backend false false false false
114 pluginsAPIMetrics experimental @grafana/plugins-platform-backend false false false true
115 httpSLOLevels experimental @grafana/hosted-grafana-team false false true false

View File

@@ -447,6 +447,10 @@ const (
// Show the new alerting insights landing page
FlagAlertingInsights = "alertingInsights"
// FlagAlertingContactPointsV2
// Show the new contacpoints list view
FlagAlertingContactPointsV2 = "alertingContactPointsV2"
// FlagExternalCorePlugins
// Allow core plugins to be loaded as external
FlagExternalCorePlugins = "externalCorePlugins"