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 51c4007672a..1fe442a3761 100644 --- a/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md +++ b/docs/sources/setup-grafana/configure-grafana/feature-toggles/index.md @@ -141,7 +141,7 @@ Experimental features might be changed or removed without prior notice. | `tracesEmbeddedFlameGraph` | Enables embedding a flame graph in traces | | `permissionsFilterRemoveSubquery` | Alternative permission filter implementation that does not use subqueries for fetching the dashboard folder | | `angularDeprecationUI` | Display new Angular deprecation-related UI features | -| `sseGroupByDatasource` | Send query to the same datasource in a single request when using server side expressions | +| `sseGroupByDatasource` | Send query to the same datasource in a single request when using server side expressions. The `cloudWatchBatchQueries` feature toggle should be enabled if this used with CloudWatch. | | `requestInstrumentationStatusSource` | Include a status source label for request metrics and logs | | `libraryPanelRBAC` | Enables RBAC support for library panels | | `wargamesTesting` | Placeholder feature flag for internal testing | diff --git a/pkg/services/featuremgmt/registry.go b/pkg/services/featuremgmt/registry.go index a1eec261add..7115a48bd46 100644 --- a/pkg/services/featuremgmt/registry.go +++ b/pkg/services/featuremgmt/registry.go @@ -858,7 +858,7 @@ var ( }, { Name: "sseGroupByDatasource", - Description: "Send query to the same datasource in a single request when using server side expressions", + Description: "Send query to the same datasource in a single request when using server side expressions. The `cloudWatchBatchQueries` feature toggle should be enabled if this used with CloudWatch.", Stage: FeatureStageExperimental, Owner: grafanaObservabilityMetricsSquad, Created: time.Date(2023, time.September, 7, 12, 0, 0, 0, time.UTC), diff --git a/pkg/services/featuremgmt/toggles_gen.go b/pkg/services/featuremgmt/toggles_gen.go index bd388d12001..fbd8775a7b4 100644 --- a/pkg/services/featuremgmt/toggles_gen.go +++ b/pkg/services/featuremgmt/toggles_gen.go @@ -408,7 +408,7 @@ const ( FlagReportingRetries = "reportingRetries" // FlagSseGroupByDatasource - // Send query to the same datasource in a single request when using server side expressions + // Send query to the same datasource in a single request when using server side expressions. The `cloudWatchBatchQueries` feature toggle should be enabled if this used with CloudWatch. FlagSseGroupByDatasource = "sseGroupByDatasource" // FlagRequestInstrumentationStatusSource