Compare commits

...

2 Commits

Author SHA1 Message Date
Tito Lins
fbfd5c3cb3 add frontendonly param 2026-01-13 13:56:12 +01:00
Tito Lins
e9e315d563 Alerting: add feature flag to control sync timer 2026-01-13 13:39:34 +01:00
5 changed files with 2079 additions and 2048 deletions

View File

@@ -1246,4 +1246,8 @@ export interface FeatureToggles {
* Enables profiles exemplars support in profiles drilldown
*/
profilesExemplars?: boolean;
/**
* Use synchronized dispatch timer to minimize duplicate notifications across alertmanager HA pods
*/
alertingSyncDispatchTimer?: boolean;
}

File diff suppressed because it is too large Load Diff

View File

@@ -279,3 +279,4 @@ multiPropsVariables,experimental,@grafana/dashboards-squad,false,false,true
smoothingTransformation,experimental,@grafana/datapro,false,false,true
secretsManagementAppPlatformAwsKeeper,experimental,@grafana/grafana-operator-experience-squad,false,false,false
profilesExemplars,experimental,@grafana/observability-traces-and-profiling,false,false,false
alertingSyncDispatchTimer,experimental,@grafana/alerting-squad,false,true,false
1 Name Stage Owner requiresDevMode RequiresRestart FrontendOnly
279 smoothingTransformation experimental @grafana/datapro false false true
280 secretsManagementAppPlatformAwsKeeper experimental @grafana/grafana-operator-experience-squad false false false
281 profilesExemplars experimental @grafana/observability-traces-and-profiling false false false
282 alertingSyncDispatchTimer experimental @grafana/alerting-squad false true false

View File

@@ -789,4 +789,8 @@ const (
// FlagProfilesExemplars
// Enables profiles exemplars support in profiles drilldown
FlagProfilesExemplars = "profilesExemplars"
// FlagAlertingSyncDispatchTimer
// Use synchronized dispatch timer to minimize duplicate notifications across alertmanager HA pods
FlagAlertingSyncDispatchTimer = "alertingSyncDispatchTimer"
)

View File

@@ -511,6 +511,20 @@
"frontend": true
}
},
{
"metadata": {
"name": "alertingSyncDispatchTimer",
"resourceVersion": "1768307942819",
"creationTimestamp": "2026-01-13T12:39:02Z"
},
"spec": {
"description": "Use synchronized dispatch timer to minimize duplicate notifications across alertmanager HA pods",
"stage": "experimental",
"codeowner": "@grafana/alerting-squad",
"requiresRestart": true,
"hideFromDocs": true
}
},
{
"metadata": {
"name": "alertingTriage",