diff --git a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md index 27154ac8357..49e6c99098d 100644 --- a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md +++ b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md @@ -244,4 +244,3 @@ The following toggles require explicitly setting Grafana's [app mode]({{< relref | -------------------------------------- | ----------------------------------------------------------------------------- | | `grafanaAPIServerWithExperimentalAPIs` | Register experimental APIs with the k8s API server, including all datasources | | `grafanaAPIServerEnsureKubectlAccess` | Start an additional https handler and write kubectl options | -| `panelTitleSearchInV1` | Enable searching for dashboards using panel title in search v1 | diff --git a/packages/grafana-data/src/types/featureToggles.gen.ts b/packages/grafana-data/src/types/featureToggles.gen.ts index 2028aa8545c..3691d40e4df 100644 --- a/packages/grafana-data/src/types/featureToggles.gen.ts +++ b/packages/grafana-data/src/types/featureToggles.gen.ts @@ -124,7 +124,6 @@ export interface FeatureToggles { lokiStructuredMetadata?: boolean; teamHttpHeaders?: boolean; cachingOptimizeSerializationMemoryUsage?: boolean; - panelTitleSearchInV1?: boolean; managedPluginsInstall?: boolean; prometheusPromQAIL?: boolean; prometheusCodeModeMetricNamesSearch?: boolean; diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index 50ba8b58d0c..ac80cb89c2c 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -792,13 +792,6 @@ var ( Owner: grafanaOperatorExperienceSquad, FrontendOnly: false, }, - { - Name: "panelTitleSearchInV1", - Description: "Enable searching for dashboards using panel title in search v1", - RequiresDevMode: true, - Stage: FeatureStageExperimental, - Owner: grafanaSearchAndStorageSquad, - }, { Name: "managedPluginsInstall", Description: "Install managed plugins directly from plugins catalog", diff --git a/pkg/services/featuremgmt/toggles_gen.csv b/pkg/services/featuremgmt/toggles_gen.csv index 1646b034dc8..cc379d9878e 100644 --- a/pkg/services/featuremgmt/toggles_gen.csv +++ b/pkg/services/featuremgmt/toggles_gen.csv @@ -105,7 +105,6 @@ recoveryThreshold,GA,@grafana/alerting-squad,false,true,false lokiStructuredMetadata,GA,@grafana/observability-logs,false,false,false teamHttpHeaders,preview,@grafana/identity-access-team,false,false,false cachingOptimizeSerializationMemoryUsage,experimental,@grafana/grafana-operator-experience-squad,false,false,false -panelTitleSearchInV1,experimental,@grafana/search-and-storage,true,false,false managedPluginsInstall,GA,@grafana/plugins-platform-backend,false,false,false prometheusPromQAIL,experimental,@grafana/oss-big-tent,false,false,true prometheusCodeModeMetricNamesSearch,experimental,@grafana/oss-big-tent,false,false,true diff --git a/pkg/services/featuremgmt/toggles_gen.go b/pkg/services/featuremgmt/toggles_gen.go index 1f85e2be92a..02f3e7d062d 100644 --- a/pkg/services/featuremgmt/toggles_gen.go +++ b/pkg/services/featuremgmt/toggles_gen.go @@ -431,10 +431,6 @@ const ( // If enabled, the caching backend gradually serializes query responses for the cache, comparing against the configured `[caching]max_value_mb` value as it goes. This can can help prevent Grafana from running out of memory while attempting to cache very large query responses. FlagCachingOptimizeSerializationMemoryUsage = "cachingOptimizeSerializationMemoryUsage" - // FlagPanelTitleSearchInV1 - // Enable searching for dashboards using panel title in search v1 - FlagPanelTitleSearchInV1 = "panelTitleSearchInV1" - // FlagManagedPluginsInstall // Install managed plugins directly from plugins catalog FlagManagedPluginsInstall = "managedPluginsInstall" diff --git a/pkg/services/featuremgmt/toggles_gen.json b/pkg/services/featuremgmt/toggles_gen.json index 42094196915..6616e393d35 100644 --- a/pkg/services/featuremgmt/toggles_gen.json +++ b/pkg/services/featuremgmt/toggles_gen.json @@ -2778,7 +2778,8 @@ "metadata": { "name": "panelTitleSearchInV1", "resourceVersion": "1718727528075", - "creationTimestamp": "2023-10-13T12:04:24Z" + "creationTimestamp": "2023-10-13T12:04:24Z", + "deletionTimestamp": "2025-01-20T20:07:05Z" }, "spec": { "description": "Enable searching for dashboards using panel title in search v1",