diff --git a/packages/grafana-data/src/types/featureToggles.gen.ts b/packages/grafana-data/src/types/featureToggles.gen.ts index 86faf2d7f04..32cfbabd040 100644 --- a/packages/grafana-data/src/types/featureToggles.gen.ts +++ b/packages/grafana-data/src/types/featureToggles.gen.ts @@ -1099,4 +1099,9 @@ export interface FeatureToggles { * New Log Context component */ newLogContext?: boolean; + /** + * Enables new design for the Clickhouse data source configuration page + * @default false + */ + newClickhouseConfigPageDesign?: boolean; } diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index ab2d9d14053..10567d153fd 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -1904,6 +1904,14 @@ var ( Owner: grafanaObservabilityLogsSquad, FrontendOnly: true, }, + { + Name: "newClickhouseConfigPageDesign", + Description: "Enables new design for the Clickhouse data source configuration page", + Stage: FeatureStagePrivatePreview, + FrontendOnly: false, + Owner: grafanaPartnerPluginsSquad, + Expression: "false", + }, } ) diff --git a/pkg/services/featuremgmt/toggles_gen.csv b/pkg/services/featuremgmt/toggles_gen.csv index a0319c94bfb..a3d9818ecd2 100644 --- a/pkg/services/featuremgmt/toggles_gen.csv +++ b/pkg/services/featuremgmt/toggles_gen.csv @@ -246,3 +246,4 @@ dashboardLevelTimeMacros,experimental,@grafana/dashboards-squad,false,false,true alertmanagerRemoteSecondaryWithRemoteState,experimental,@grafana/alerting-squad,false,false,false adhocFiltersInTooltips,experimental,@grafana/datapro,false,false,true newLogContext,experimental,@grafana/observability-logs,false,false,true +newClickhouseConfigPageDesign,privatePreview,@grafana/partner-datasources,false,false,false diff --git a/pkg/services/featuremgmt/toggles_gen.go b/pkg/services/featuremgmt/toggles_gen.go index c45b269451b..ffca3680409 100644 --- a/pkg/services/featuremgmt/toggles_gen.go +++ b/pkg/services/featuremgmt/toggles_gen.go @@ -994,4 +994,8 @@ const ( // FlagNewLogContext // New Log Context component FlagNewLogContext = "newLogContext" + + // FlagNewClickhouseConfigPageDesign + // Enables new design for the Clickhouse data source configuration page + FlagNewClickhouseConfigPageDesign = "newClickhouseConfigPageDesign" ) diff --git a/pkg/services/featuremgmt/toggles_gen.json b/pkg/services/featuremgmt/toggles_gen.json index 503f8a657f6..325188cc143 100644 --- a/pkg/services/featuremgmt/toggles_gen.json +++ b/pkg/services/featuremgmt/toggles_gen.json @@ -2109,6 +2109,19 @@ "expression": "true" } }, + { + "metadata": { + "name": "newClickhouseConfigPageDesign", + "resourceVersion": "1754075145003", + "creationTimestamp": "2025-08-01T19:05:45Z" + }, + "spec": { + "description": "Enables new design for the Clickhouse data source configuration page", + "stage": "privatePreview", + "codeowner": "@grafana/partner-datasources", + "expression": "false" + } + }, { "metadata": { "name": "newDashboardSharingComponent",