diff --git a/packages/grafana-data/src/types/featureToggles.gen.ts b/packages/grafana-data/src/types/featureToggles.gen.ts index 8b62b52c1ec..b98349e852d 100644 --- a/packages/grafana-data/src/types/featureToggles.gen.ts +++ b/packages/grafana-data/src/types/featureToggles.gen.ts @@ -766,6 +766,11 @@ export interface FeatureToggles { */ alertingEnrichmentPerRule?: boolean; /** + * Enable Assistant Investigations enrichment type. + * @default false + */ + alertingEnrichmentAssistantInvestigations?: boolean; + /** * Enable AI-analyze central state history. * @default false */ diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index 802b5234bfc..a19ae8f3f96 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -1316,6 +1316,15 @@ var ( HideFromDocs: true, Expression: "false", }, + { + Name: "alertingEnrichmentAssistantInvestigations", + Description: "Enable Assistant Investigations enrichment type.", + Stage: FeatureStageExperimental, + Owner: grafanaAlertingSquad, + HideFromAdminPage: true, + HideFromDocs: true, + Expression: "false", + }, { Name: "alertingAIAnalyzeCentralStateHistory", Description: "Enable AI-analyze central state history.", diff --git a/pkg/services/featuremgmt/toggles_gen.csv b/pkg/services/featuremgmt/toggles_gen.csv index 0af8cc7c543..0294b58ccf3 100644 --- a/pkg/services/featuremgmt/toggles_gen.csv +++ b/pkg/services/featuremgmt/toggles_gen.csv @@ -171,6 +171,7 @@ alertingAIFeedback,experimental,@grafana/alerting-squad,false,false,false alertingAIImproveAlertRules,experimental,@grafana/alerting-squad,false,false,false alertingAIGenTemplates,experimental,@grafana/alerting-squad,false,false,false alertingEnrichmentPerRule,experimental,@grafana/alerting-squad,false,false,false +alertingEnrichmentAssistantInvestigations,experimental,@grafana/alerting-squad,false,false,false alertingAIAnalyzeCentralStateHistory,experimental,@grafana/alerting-squad,false,false,false alertingNotificationsStepMode,GA,@grafana/alerting-squad,false,false,true feedbackButton,experimental,@grafana/grafana-operator-experience-squad,false,false,false diff --git a/pkg/services/featuremgmt/toggles_gen.go b/pkg/services/featuremgmt/toggles_gen.go index 2b87218e5cf..f337c991e09 100644 --- a/pkg/services/featuremgmt/toggles_gen.go +++ b/pkg/services/featuremgmt/toggles_gen.go @@ -695,6 +695,10 @@ const ( // Enable enrichment per rule in the alerting UI. FlagAlertingEnrichmentPerRule = "alertingEnrichmentPerRule" + // FlagAlertingEnrichmentAssistantInvestigations + // Enable Assistant Investigations enrichment type. + FlagAlertingEnrichmentAssistantInvestigations = "alertingEnrichmentAssistantInvestigations" + // FlagAlertingAIAnalyzeCentralStateHistory // Enable AI-analyze central state history. FlagAlertingAIAnalyzeCentralStateHistory = "alertingAIAnalyzeCentralStateHistory" diff --git a/pkg/services/featuremgmt/toggles_gen.json b/pkg/services/featuremgmt/toggles_gen.json index 081bfde8a62..9337a5f30e7 100644 --- a/pkg/services/featuremgmt/toggles_gen.json +++ b/pkg/services/featuremgmt/toggles_gen.json @@ -248,6 +248,37 @@ "hideFromDocs": true } }, + { + "metadata": { + "name": "alertingEnrichmentAssistantInvestigations", + "resourceVersion": "1757606567075", + "creationTimestamp": "2025-09-11T16:02:47Z" + }, + "spec": { + "description": "Enable Assistant Investigations enrichment type.", + "stage": "experimental", + "codeowner": "@grafana/alerting-squad", + "hideFromAdminPage": true, + "hideFromDocs": true, + "expression": "false" + } + }, + { + "metadata": { + "name": "alertingEnrichmentAssistantInvestigationsUI", + "resourceVersion": "1757541861834", + "creationTimestamp": "2025-09-10T22:04:21Z", + "deletionTimestamp": "2025-09-11T16:02:47Z" + }, + "spec": { + "description": "Enable Assistant Investigations enrichment type in the UI.", + "stage": "experimental", + "codeowner": "@grafana/alerting-squad", + "hideFromAdminPage": true, + "hideFromDocs": true, + "expression": "false" + } + }, { "metadata": { "name": "alertingEnrichmentPerRule",