2022-04-01 14:32:00 +08:00
// To change feature flags, edit:
// pkg/services/featuremgmt/registry.go
// Then run tests in:
// pkg/services/featuremgmt/toggles_gen_test.go
2022-06-10 19:02:52 +08:00
// twice to generate and validate the feature flag files
2024-03-21 19:04:49 +08:00
//
// Alternatively, use `make gen-feature-toggles`
2022-04-01 14:32:00 +08:00
2022-01-27 01:44:20 +08:00
package featuremgmt
2023-12-04 12:45:51 +08:00
import (
2024-02-10 07:34:12 +08:00
"embed"
"encoding/json"
featuretoggle "github.com/grafana/grafana/pkg/apis/featuretoggle/v0alpha1"
2023-12-04 12:45:51 +08:00
)
2022-01-27 01:44:20 +08:00
var (
// Register each toggle here
standardFeatureFlags = [ ] FeatureFlag {
{
2023-11-15 01:04:54 +08:00
Name : "disableEnvelopeEncryption" ,
Description : "Disable envelope encryption (emergency only)" ,
Stage : FeatureStageGeneralAvailability ,
Owner : grafanaAsCodeSquad ,
HideFromAdminPage : true ,
2023-12-19 02:55:21 +08:00
AllowSelfServe : false ,
2024-06-07 22:21:54 +08:00
Expression : "false" ,
2022-01-27 01:44:20 +08:00
} ,
{
Name : "live-service-web-worker" ,
Description : "This will use a webworker thread to processes events rather than the main thread" ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2022-01-27 01:44:20 +08:00
FrontendOnly : true ,
2024-09-27 18:43:02 +08:00
Owner : grafanaDashboardsSquad ,
2022-01-27 01:44:20 +08:00
} ,
{
Name : "queryOverLive" ,
2022-12-01 05:50:20 +08:00
Description : "Use Grafana Live WebSocket to execute backend queries" ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2022-01-27 01:44:20 +08:00
FrontendOnly : true ,
2024-09-27 18:43:02 +08:00
Owner : grafanaDashboardsSquad ,
2022-01-27 01:44:20 +08:00
} ,
2022-02-16 02:26:03 +08:00
{
2023-11-15 01:04:54 +08:00
Name : "panelTitleSearch" ,
Description : "Search for dashboards using panel title" ,
Stage : FeatureStagePublicPreview ,
2024-08-20 04:57:00 +08:00
Owner : grafanaSearchAndStorageSquad ,
2023-11-15 01:04:54 +08:00
HideFromAdminPage : true ,
2022-02-16 02:26:03 +08:00
} ,
2023-01-04 03:45:15 +08:00
{
2023-11-15 01:04:54 +08:00
Name : "publicDashboardsEmailSharing" ,
Description : "Enables public dashboard sharing to be restricted to only allowed emails" ,
Stage : FeatureStagePublicPreview ,
Owner : grafanaSharingSquad ,
HideFromDocs : true ,
HideFromAdminPage : true ,
2023-01-04 03:45:15 +08:00
} ,
2024-03-22 22:48:21 +08:00
{
Name : "publicDashboardsScene" ,
Description : "Enables public dashboard rendering using scenes" ,
2024-09-30 17:49:02 +08:00
Stage : FeatureStageGeneralAvailability ,
2024-03-22 22:48:21 +08:00
FrontendOnly : true ,
Owner : grafanaSharingSquad ,
2024-09-30 17:49:02 +08:00
Expression : "true" , // enabled by default
2024-03-22 22:48:21 +08:00
} ,
2022-03-02 06:46:52 +08:00
{
2023-06-19 18:03:51 +08:00
Name : "lokiExperimentalStreaming" ,
Description : "Support new streaming approach for loki (prototype, needs special loki build)" ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2023-03-08 20:42:47 +08:00
Owner : grafanaObservabilityLogsSquad ,
2022-03-02 06:46:52 +08:00
} ,
2022-02-03 19:53:23 +08:00
{
2023-11-03 23:59:07 +08:00
Name : "featureHighlights" ,
Description : "Highlight Grafana Enterprise features" ,
Stage : FeatureStageGeneralAvailability ,
Owner : grafanaAsCodeSquad ,
2023-12-19 02:55:21 +08:00
AllowSelfServe : true ,
2024-06-07 22:21:54 +08:00
Expression : "false" ,
2022-02-03 19:53:23 +08:00
} ,
2022-03-18 01:19:23 +08:00
{
Name : "storage" ,
Description : "Configurable storage for dashboards, datasources, and resources" ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2024-08-20 04:57:00 +08:00
Owner : grafanaSearchAndStorageSquad ,
2022-03-18 01:19:23 +08:00
} ,
2022-09-16 21:14:27 +08:00
{
2024-01-22 16:27:11 +08:00
Name : "correlations" ,
Description : "Correlations page" ,
Stage : FeatureStageGeneralAvailability ,
2024-11-15 03:51:06 +08:00
Owner : grafanaDatavizSquad ,
2024-05-27 18:04:37 +08:00
Expression : "true" , // enabled by default
2024-01-22 16:27:11 +08:00
AllowSelfServe : true ,
2022-09-16 21:14:27 +08:00
} ,
2022-06-11 08:12:56 +08:00
{
2023-03-23 12:02:36 +08:00
Name : "autoMigrateOldPanels" ,
Description : "Migrate old angular panels to supported versions (graph, table-old, worldmap, etc)" ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStagePublicPreview ,
2022-06-11 08:12:56 +08:00
FrontendOnly : true ,
2023-03-08 00:04:20 +08:00
Owner : grafanaDatavizSquad ,
2022-06-11 08:12:56 +08:00
} ,
2024-02-09 06:00:48 +08:00
{
Name : "autoMigrateGraphPanel" ,
Description : "Migrate old graph panel to supported time series panel - broken out from autoMigrateOldPanels to enable granular tracking" ,
Stage : FeatureStagePublicPreview ,
FrontendOnly : true ,
Owner : grafanaDatavizSquad ,
} ,
2024-02-15 00:06:25 +08:00
{
Name : "autoMigrateTablePanel" ,
Description : "Migrate old table panel to supported table panel - broken out from autoMigrateOldPanels to enable granular tracking" ,
Stage : FeatureStagePublicPreview ,
FrontendOnly : true ,
Owner : grafanaDatavizSquad ,
} ,
{
Name : "autoMigratePiechartPanel" ,
Description : "Migrate old piechart panel to supported piechart panel - broken out from autoMigrateOldPanels to enable granular tracking" ,
Stage : FeatureStagePublicPreview ,
FrontendOnly : true ,
Owner : grafanaDatavizSquad ,
} ,
{
Name : "autoMigrateWorldmapPanel" ,
Description : "Migrate old worldmap panel to supported geomap panel - broken out from autoMigrateOldPanels to enable granular tracking" ,
Stage : FeatureStagePublicPreview ,
FrontendOnly : true ,
Owner : grafanaDatavizSquad ,
} ,
{
Name : "autoMigrateStatPanel" ,
Description : "Migrate old stat panel to supported stat panel - broken out from autoMigrateOldPanels to enable granular tracking" ,
Stage : FeatureStagePublicPreview ,
FrontendOnly : true ,
Owner : grafanaDatavizSquad ,
} ,
2023-03-23 23:43:45 +08:00
{
2023-11-15 01:04:54 +08:00
Name : "disableAngular" ,
Description : "Dynamic flag to disable angular at runtime. The preferred method is to set `angular_support_enabled` to `false` in the [security] settings, which allows you to change the state at runtime." ,
Stage : FeatureStagePublicPreview ,
FrontendOnly : true ,
Owner : grafanaDatavizSquad ,
HideFromAdminPage : true ,
2022-05-25 04:17:11 +08:00
} ,
2022-06-01 03:03:34 +08:00
{
2023-11-15 01:04:54 +08:00
Name : "canvasPanelNesting" ,
Description : "Allow elements nesting" ,
Stage : FeatureStageExperimental ,
FrontendOnly : true ,
Owner : grafanaDatavizSquad ,
HideFromAdminPage : true ,
2022-06-01 03:03:34 +08:00
} ,
2022-07-13 04:27:37 +08:00
{
Name : "disableSecretsCompatibility" ,
Description : "Disable duplicated secret storage in legacy tables" ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2022-07-13 04:27:37 +08:00
RequiresRestart : true ,
2023-03-09 01:25:12 +08:00
Owner : hostedGrafanaTeam ,
2022-07-13 04:27:37 +08:00
} ,
2022-06-10 16:56:55 +08:00
{
Name : "logRequestsInstrumentedAsUnknown" ,
Description : "Logs the path for requests that are instrumented as unknown" ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2023-03-09 01:25:12 +08:00
Owner : hostedGrafanaTeam ,
2022-06-10 18:13:31 +08:00
} ,
2022-08-25 00:57:59 +08:00
{
2023-11-15 01:04:54 +08:00
Name : "grpcServer" ,
Description : "Run the GRPC server" ,
Stage : FeatureStagePublicPreview ,
2024-08-20 04:57:00 +08:00
Owner : grafanaSearchAndStorageSquad ,
2023-11-15 01:04:54 +08:00
HideFromAdminPage : true ,
2022-10-07 03:48:53 +08:00
} ,
2022-11-28 19:39:12 +08:00
{
2023-11-03 23:59:07 +08:00
Name : "cloudWatchCrossAccountQuerying" ,
Description : "Enables cross-account querying in CloudWatch datasources" ,
Stage : FeatureStageGeneralAvailability ,
Expression : "true" , // enabled by default
Owner : awsDatasourcesSquad ,
2023-12-19 02:55:21 +08:00
AllowSelfServe : true ,
2022-10-07 18:39:14 +08:00
} ,
2022-10-14 21:51:05 +08:00
{
Name : "showDashboardValidationWarnings" ,
2022-12-01 05:50:20 +08:00
Description : "Show warnings when dashboards do not validate against the schema" ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2023-03-09 19:09:19 +08:00
Owner : grafanaDashboardsSquad ,
2022-10-14 21:51:05 +08:00
} ,
2022-10-12 19:43:35 +08:00
{
Name : "mysqlAnsiQuotes" ,
2022-12-01 05:50:20 +08:00
Description : "Use double quotes to escape keyword in a MySQL query" ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2024-04-20 01:12:59 +08:00
Owner : grafanaSearchAndStorageSquad ,
2022-10-12 19:43:35 +08:00
} ,
2022-10-26 22:15:14 +08:00
{
2023-04-17 20:54:32 +08:00
Name : "nestedFolders" ,
Description : "Enable folder nesting" ,
2024-03-22 21:13:43 +08:00
Stage : FeatureStageGeneralAvailability ,
2024-04-20 01:12:59 +08:00
Owner : grafanaSearchAndStorageSquad ,
2024-03-22 21:13:43 +08:00
Expression : "true" , // enabled by default
2022-10-26 22:15:14 +08:00
} ,
2022-12-14 22:44:14 +08:00
{
Name : "alertingBacktesting" ,
Description : "Rule backtesting API for alerting" ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2023-03-09 00:03:06 +08:00
Owner : grafanaAlertingSquad ,
2022-12-14 22:44:14 +08:00
} ,
2023-01-24 17:43:44 +08:00
{
Name : "editPanelCSVDragAndDrop" ,
Description : "Enables drag and drop for CSV and Excel files" ,
FrontendOnly : true ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2024-02-10 08:24:08 +08:00
Owner : grafanaDatavizSquad ,
2023-01-24 17:43:44 +08:00
} ,
2023-01-27 22:12:01 +08:00
{
2023-11-03 23:59:07 +08:00
Name : "logsContextDatasourceUi" ,
Description : "Allow datasource to provide custom UI for context view" ,
Stage : FeatureStageGeneralAvailability ,
FrontendOnly : true ,
Owner : grafanaObservabilityLogsSquad ,
Expression : "true" , // turned on by default
2023-12-19 02:55:21 +08:00
AllowSelfServe : true ,
2023-01-27 22:12:01 +08:00
} ,
2024-10-23 19:21:03 +08:00
{
Name : "lokiShardSplitting" ,
Description : "Use stream shards to split queries into smaller subqueries" ,
Stage : FeatureStageExperimental ,
FrontendOnly : true ,
Owner : grafanaObservabilityLogsSquad ,
} ,
2023-02-10 01:27:02 +08:00
{
2023-11-03 23:59:07 +08:00
Name : "lokiQuerySplitting" ,
Description : "Split large interval queries into subqueries with smaller time intervals" ,
Stage : FeatureStageGeneralAvailability ,
FrontendOnly : true ,
Owner : grafanaObservabilityLogsSquad ,
Expression : "true" , // turned on by default
2023-12-19 02:55:21 +08:00
AllowSelfServe : true ,
2023-02-10 01:27:02 +08:00
} ,
2023-03-20 23:51:36 +08:00
{
Name : "lokiQuerySplittingConfig" ,
Description : "Give users the option to configure split durations for Loki queries" ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2023-03-20 23:51:36 +08:00
FrontendOnly : true ,
Owner : grafanaObservabilityLogsSquad ,
} ,
2023-02-21 18:19:07 +08:00
{
Name : "individualCookiePreferences" ,
Description : "Support overriding cookie preferences per user" ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2024-04-20 01:12:59 +08:00
Owner : grafanaBackendGroup ,
2023-02-21 18:19:07 +08:00
} ,
2023-03-16 01:12:16 +08:00
{
2023-11-03 23:59:07 +08:00
Name : "influxdbBackendMigration" ,
Description : "Query InfluxDB InfluxQL without the proxy" ,
Stage : FeatureStageGeneralAvailability ,
FrontendOnly : true ,
2025-01-04 02:39:29 +08:00
Owner : grafanaPartnerPluginsSquad ,
2023-11-03 23:59:07 +08:00
Expression : "true" , // enabled by default
2023-12-19 02:55:21 +08:00
AllowSelfServe : false ,
2023-03-16 01:12:16 +08:00
} ,
2023-11-30 01:29:35 +08:00
{
Name : "influxqlStreamingParser" ,
Description : "Enable streaming JSON parser for InfluxDB datasource InfluxQL query language" ,
Stage : FeatureStageExperimental ,
2025-01-04 02:39:29 +08:00
Owner : grafanaPartnerPluginsSquad ,
2023-11-30 01:29:35 +08:00
} ,
2024-02-01 18:58:24 +08:00
{
Name : "influxdbRunQueriesInParallel" ,
Description : "Enables running InfluxDB Influxql queries in parallel" ,
Stage : FeatureStagePrivatePreview ,
FrontendOnly : false ,
2025-01-04 02:39:29 +08:00
Owner : grafanaPartnerPluginsSquad ,
2024-02-01 18:58:24 +08:00
} ,
2024-08-12 20:31:39 +08:00
{
Name : "prometheusRunQueriesInParallel" ,
Description : "Enables running Prometheus queries in parallel" ,
Stage : FeatureStagePrivatePreview ,
FrontendOnly : false ,
2025-01-04 02:39:29 +08:00
Owner : grafanaOSSBigTent ,
2024-08-12 20:31:39 +08:00
} ,
2023-07-13 15:58:00 +08:00
{
Name : "lokiLogsDataplane" ,
Description : "Changes logs responses from Loki to be compliant with the dataplane specification." ,
Stage : FeatureStageExperimental ,
Owner : grafanaObservabilityLogsSquad ,
} ,
2023-04-25 01:29:54 +08:00
{
2023-11-03 23:59:07 +08:00
Name : "dataplaneFrontendFallback" ,
Description : "Support dataplane contract field name change for transformations and field name matchers where the name is different" ,
Stage : FeatureStageGeneralAvailability ,
FrontendOnly : true ,
Expression : "true" ,
Owner : grafanaObservabilityMetricsSquad ,
2023-12-19 02:55:21 +08:00
AllowSelfServe : true ,
2023-04-25 01:29:54 +08:00
} ,
{
Name : "disableSSEDataplane" ,
Description : "Disables dataplane specific processing in server side expressions." ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2023-04-25 01:29:54 +08:00
Owner : grafanaObservabilityMetricsSquad ,
} ,
2023-03-31 02:53:21 +08:00
{
Name : "alertStateHistoryLokiSecondary" ,
Description : "Enable Grafana to write alert state history to an external Loki instance in addition to Grafana annotations." ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2023-03-31 02:53:21 +08:00
Owner : grafanaAlertingSquad ,
} ,
{
Name : "alertStateHistoryLokiPrimary" ,
Description : "Enable a remote Loki instance as the primary source for state history reads." ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2023-03-31 02:53:21 +08:00
Owner : grafanaAlertingSquad ,
} ,
{
Name : "alertStateHistoryLokiOnly" ,
Description : "Disable Grafana alerts from emitting annotations when a remote Loki instance is available." ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2023-03-31 02:53:21 +08:00
Owner : grafanaAlertingSquad ,
} ,
2023-03-31 21:38:09 +08:00
{
2024-11-21 23:12:00 +08:00
Name : "unifiedRequestLog" ,
Description : "Writes error logs to the request logger" ,
Stage : FeatureStageGeneralAvailability ,
Owner : grafanaBackendGroup ,
Expression : "true" ,
HideFromAdminPage : true ,
2023-03-31 21:38:09 +08:00
} ,
2023-04-04 00:53:38 +08:00
{
2023-11-15 01:04:54 +08:00
Name : "renderAuthJWT" ,
Description : "Uses JWT-based auth for rendering instead of relying on remote cache" ,
Stage : FeatureStagePublicPreview ,
Owner : grafanaAsCodeSquad ,
HideFromAdminPage : true ,
2023-04-04 00:53:38 +08:00
} ,
2023-06-06 21:12:09 +08:00
{
2023-11-15 01:04:54 +08:00
Name : "refactorVariablesTimeRange" ,
Description : "Refactor time range variables flow to reduce number of API calls made when query variables are chained" ,
Stage : FeatureStagePublicPreview ,
Owner : grafanaDashboardsSquad ,
HideFromAdminPage : true , // Non-feature, used to test out a bug fix that impacts the performance of template variables.
2023-06-06 21:12:09 +08:00
} ,
2023-05-05 08:35:10 +08:00
{
Name : "faroDatasourceSelector" ,
2023-05-23 22:42:22 +08:00
Description : "Enable the data source selector within the Frontend Apps section of the Frontend Observability" ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStagePublicPreview ,
2023-05-05 08:35:10 +08:00
FrontendOnly : true ,
Owner : appO11ySquad ,
} ,
2023-04-24 22:46:31 +08:00
{
Name : "enableDatagridEditing" ,
Description : "Enables the edit functionality in the datagrid panel" ,
FrontendOnly : true ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStagePublicPreview ,
2024-02-10 08:24:08 +08:00
Owner : grafanaDatavizSquad ,
2023-04-24 22:46:31 +08:00
} ,
2023-05-10 21:37:04 +08:00
{
Name : "extraThemes" ,
Description : "Enables extra themes" ,
FrontendOnly : true ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2023-06-05 19:24:17 +08:00
Owner : grafanaFrontendPlatformSquad ,
2023-05-10 21:37:04 +08:00
} ,
2023-06-02 18:52:36 +08:00
{
Name : "lokiPredefinedOperations" ,
Description : "Adds predefined query operations to Loki query editor" ,
FrontendOnly : true ,
2023-06-09 00:16:55 +08:00
Stage : FeatureStageExperimental ,
2023-06-02 18:52:36 +08:00
Owner : grafanaObservabilityLogsSquad ,
} ,
2023-06-05 16:51:36 +08:00
{
2024-10-08 20:38:54 +08:00
Name : "pluginsFrontendSandbox" ,
Description : "Enables the plugins frontend sandbox" ,
2025-01-10 19:00:31 +08:00
Stage : FeatureStagePrivatePreview ,
2024-10-08 20:38:54 +08:00
Owner : grafanaPluginsPlatformSquad ,
2023-06-05 16:51:36 +08:00
} ,
2023-07-05 19:48:25 +08:00
{
Name : "frontendSandboxMonitorOnly" ,
Description : "Enables monitor only in the plugin frontend sandbox (if enabled)" ,
Stage : FeatureStageExperimental ,
FrontendOnly : true ,
Owner : grafanaPluginsPlatformSquad ,
} ,
2024-08-13 17:55:30 +08:00
{
Name : "pluginsDetailsRightPanel" ,
Description : "Enables right panel for the plugins details page" ,
Stage : FeatureStageExperimental ,
FrontendOnly : true ,
Owner : grafanaPluginsPlatformSquad ,
} ,
2023-06-07 00:28:52 +08:00
{
2023-11-15 01:04:54 +08:00
Name : "sqlDatasourceDatabaseSelection" ,
Description : "Enables previous SQL data source dataset dropdown behavior" ,
FrontendOnly : true ,
Stage : FeatureStagePublicPreview ,
2024-02-10 08:24:08 +08:00
Owner : grafanaDatavizSquad ,
2023-11-15 01:04:54 +08:00
HideFromAdminPage : true ,
2023-06-07 00:28:52 +08:00
} ,
2023-06-14 20:34:22 +08:00
{
2023-11-03 23:59:07 +08:00
Name : "recordedQueriesMulti" ,
Description : "Enables writing multiple items from a single query within Recorded Queries" ,
Stage : FeatureStageGeneralAvailability ,
Expression : "true" ,
Owner : grafanaObservabilityMetricsSquad ,
2023-12-19 02:55:21 +08:00
AllowSelfServe : false ,
2023-06-14 20:34:22 +08:00
} ,
2023-07-12 21:52:42 +08:00
{
Name : "logsExploreTableVisualisation" ,
Description : "A table visualisation for logs in Explore" ,
2024-02-13 00:12:05 +08:00
Stage : FeatureStageGeneralAvailability ,
Expression : "true" , // enabled by default,
2023-07-12 21:52:42 +08:00
FrontendOnly : true ,
Owner : grafanaObservabilityLogsSquad ,
} ,
2023-07-06 23:06:11 +08:00
{
Name : "awsDatasourcesTempCredentials" ,
Description : "Support temporary security credentials in AWS plugins for Grafana Cloud customers" ,
Stage : FeatureStageExperimental ,
Owner : awsDatasourcesSquad ,
} ,
2023-07-13 00:35:49 +08:00
{
2023-11-03 23:59:07 +08:00
Name : "transformationsRedesign" ,
Description : "Enables the transformations redesign" ,
Stage : FeatureStageGeneralAvailability ,
FrontendOnly : true ,
Expression : "true" , // enabled by default
Owner : grafanaObservabilityMetricsSquad ,
2023-12-19 02:55:21 +08:00
AllowSelfServe : true ,
2023-07-13 00:35:49 +08:00
} ,
2023-07-14 01:37:50 +08:00
{
Name : "mlExpressions" ,
Description : "Enable support for Machine Learning in server-side expressions" ,
Stage : FeatureStageExperimental ,
FrontendOnly : false ,
Owner : grafanaAlertingSquad ,
} ,
2023-07-14 22:10:46 +08:00
{
2023-07-26 21:33:16 +08:00
Name : "traceQLStreaming" ,
Description : "Enables response streaming of TraceQL queries of the Tempo data source" ,
2024-03-12 22:10:13 +08:00
Stage : FeatureStageGeneralAvailability ,
2023-07-14 22:10:46 +08:00
FrontendOnly : true ,
Owner : grafanaObservabilityTracesAndProfilingSquad ,
2024-06-07 22:21:54 +08:00
Expression : "false" ,
2023-07-14 22:10:46 +08:00
} ,
2023-08-28 22:02:12 +08:00
{
Name : "metricsSummary" ,
Description : "Enables metrics summary queries in the Tempo data source" ,
Stage : FeatureStageExperimental ,
FrontendOnly : true ,
Owner : grafanaObservabilityTracesAndProfilingSquad ,
} ,
2024-09-19 16:28:27 +08:00
{
Name : "datasourceAPIServers" ,
Description : "Expose some datasources as apiservers." ,
Stage : FeatureStageExperimental ,
Owner : grafanaAppPlatformSquad ,
RequiresRestart : true , // changes the API routing
} ,
2023-10-07 02:55:22 +08:00
{
2023-12-21 02:28:56 +08:00
Name : "grafanaAPIServerWithExperimentalAPIs" ,
2024-09-19 16:28:27 +08:00
Description : "Register experimental APIs with the k8s API server, including all datasources" ,
2023-12-21 02:28:56 +08:00
Stage : FeatureStageExperimental ,
RequiresRestart : true ,
RequiresDevMode : true ,
Owner : grafanaAppPlatformSquad ,
2023-10-07 02:55:22 +08:00
} ,
2024-11-22 17:03:50 +08:00
{
Name : "provisioning" ,
Description : "Next generation provisioning... and git" ,
Stage : FeatureStageExperimental ,
RequiresRestart : true ,
Owner : grafanaAppPlatformSquad ,
} ,
Storage: Unified Storage based on Entity API (#71977)
* first round of entityapi updates
- quote column names and clean up insert/update queries
- replace grn with guid
- streamline table structure
fixes
streamline entity history
move EntitySummary into proto
remove EntitySummary
add guid to json
fix tests
change DB_Uuid to DB_NVarchar
fix folder test
convert interface to any
more cleanup
start entity store under grafana-apiserver dskit target
CRUD working, kind of
rough cut of wiring entity api to kube-apiserver
fake grafana user in context
add key to entity
list working
revert unnecessary changes
move entity storage files to their own package, clean up
use accessor to read/write grafana annotations
implement separate Create and Update functions
* go mod tidy
* switch from Kind to resource
* basic grpc storage server
* basic support for grpc entity store
* don't connect to database unless it's needed, pass user identity over grpc
* support getting user from k8s context, fix some mysql issues
* assign owner to snowflake dependency
* switch from ulid to uuid for guids
* cleanup, rename Search to List
* remove entityListResult
* EntityAPI: remove extra user abstraction (#79033)
* remove extra user abstraction
* add test stub (but
* move grpc context setup into client wrapper, fix lint issue
* remove unused constants
* remove custom json stuff
* basic list filtering, add todo
* change target to storage-server, allow entityStore flag in prod mode
* fix issue with Update
* EntityAPI: make test work, need to resolve expected differences (#79123)
* make test work, need to resolve expected differences
* remove the fields not supported by legacy
* sanitize out the bits legacy does not support
* sanitize out the bits legacy does not support
---------
Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
* update feature toggle generated files
* remove unused http headers
* update feature flag strategy
* devmode
* update readme
* spelling
* readme
---------
Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
2023-12-07 04:21:21 +08:00
{
Name : "grafanaAPIServerEnsureKubectlAccess" ,
Description : "Start an additional https handler and write kubectl options" ,
Stage : FeatureStageExperimental ,
RequiresDevMode : true ,
RequiresRestart : true ,
Owner : grafanaAppPlatformSquad ,
} ,
2023-07-19 04:43:32 +08:00
{
Name : "featureToggleAdminPage" ,
2024-05-11 02:34:53 +08:00
Description : "Enable admin page for managing feature toggles from the Grafana front-end. Grafana Cloud only." ,
2023-07-19 04:43:32 +08:00
Stage : FeatureStageExperimental ,
FrontendOnly : false ,
Owner : grafanaOperatorExperienceSquad ,
RequiresRestart : true ,
2024-05-11 02:34:53 +08:00
HideFromDocs : true ,
2023-07-19 04:43:32 +08:00
} ,
2023-07-21 23:34:07 +08:00
{
Name : "awsAsyncQueryCaching" ,
2024-01-18 05:53:25 +08:00
Description : "Enable caching for async queries for Redshift and Athena. Requires that the datasource has caching and async query support enabled" ,
2024-01-06 03:56:30 +08:00
Stage : FeatureStageGeneralAvailability ,
Expression : "true" , // enabled by default
2023-07-21 23:34:07 +08:00
Owner : awsDatasourcesSquad ,
} ,
2023-08-02 15:39:25 +08:00
{
Name : "permissionsFilterRemoveSubquery" ,
Description : "Alternative permission filter implementation that does not use subqueries for fetching the dashboard folder" ,
Stage : FeatureStageExperimental ,
2024-04-20 01:12:59 +08:00
Owner : grafanaBackendGroup ,
2023-08-02 15:39:25 +08:00
} ,
2023-07-27 00:44:12 +08:00
{
Name : "configurableSchedulerTick" ,
Description : "Enable changing the scheduler base interval via configuration option unified_alerting.scheduler_tick_interval" ,
Stage : FeatureStageExperimental ,
FrontendOnly : false ,
Owner : grafanaAlertingSquad ,
RequiresRestart : true ,
HideFromDocs : true ,
} ,
2023-08-15 22:27:15 +08:00
{
Name : "alertingNoDataErrorExecution" ,
Description : "Changes how Alerting state manager handles execution of NoData/Error" ,
2024-01-11 13:34:18 +08:00
Stage : FeatureStageGeneralAvailability ,
2023-08-15 22:27:15 +08:00
FrontendOnly : false ,
Owner : grafanaAlertingSquad ,
RequiresRestart : true ,
2024-01-11 13:34:18 +08:00
Expression : "true" , // enabled by default
2023-08-15 22:27:15 +08:00
} ,
2023-08-29 22:05:47 +08:00
{
Name : "angularDeprecationUI" ,
2024-02-16 20:46:14 +08:00
Description : "Display Angular warnings in dashboards and panels" ,
Stage : FeatureStageGeneralAvailability ,
2023-08-29 22:05:47 +08:00
FrontendOnly : true ,
Owner : grafanaPluginsPlatformSquad ,
2024-02-16 20:46:14 +08:00
Expression : "true" , // Enabled by default
2023-08-29 22:05:47 +08:00
} ,
2023-08-31 04:22:05 +08:00
{
2023-11-18 00:51:51 +08:00
Name : "dashgpt" ,
Description : "Enable AI powered features in dashboards" ,
2024-03-22 00:58:27 +08:00
Stage : FeatureStageGeneralAvailability ,
2023-11-18 00:51:51 +08:00
FrontendOnly : true ,
Owner : grafanaDashboardsSquad ,
2024-03-22 00:58:27 +08:00
Expression : "true" , // enabled by default
2023-08-31 04:22:05 +08:00
} ,
2024-03-05 20:01:31 +08:00
{
Name : "aiGeneratedDashboardChanges" ,
Description : "Enable AI powered features for dashboards to auto-summary changes when saving" ,
Stage : FeatureStageExperimental ,
FrontendOnly : true ,
Owner : grafanaDashboardsSquad ,
} ,
2023-08-31 15:47:47 +08:00
{
Name : "reportingRetries" ,
Description : "Enables rendering retries for the reporting feature" ,
Stage : FeatureStagePublicPreview ,
FrontendOnly : false ,
Owner : grafanaSharingSquad ,
RequiresRestart : true ,
} ,
2023-09-08 04:02:07 +08:00
{
Name : "sseGroupByDatasource" ,
2024-01-19 02:07:57 +08:00
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." ,
2023-09-08 04:02:07 +08:00
Stage : FeatureStageExperimental ,
Owner : grafanaObservabilityMetricsSquad ,
} ,
2023-10-12 07:30:50 +08:00
{
Name : "libraryPanelRBAC" ,
Description : "Enables RBAC support for library panels" ,
Stage : FeatureStageExperimental ,
FrontendOnly : false ,
Owner : grafanaDashboardsSquad ,
RequiresRestart : true ,
} ,
2023-09-19 17:34:01 +08:00
{
Name : "lokiRunQueriesInParallel" ,
Description : "Enables running Loki queries in parallel" ,
Stage : FeatureStagePrivatePreview ,
FrontendOnly : false ,
Owner : grafanaObservabilityLogsSquad ,
} ,
2023-09-14 02:32:01 +08:00
{
Name : "wargamesTesting" ,
Description : "Placeholder feature flag for internal testing" ,
Stage : FeatureStageExperimental ,
FrontendOnly : false ,
Owner : hostedGrafanaTeam ,
} ,
2023-09-14 20:58:04 +08:00
{
2023-11-15 01:04:54 +08:00
Name : "alertingInsights" ,
Description : "Show the new alerting insights landing page" ,
FrontendOnly : true ,
Stage : FeatureStageGeneralAvailability ,
Owner : grafanaAlertingSquad ,
Expression : "true" , // enabled by default
2023-12-19 02:55:21 +08:00
AllowSelfServe : false ,
2023-11-15 01:04:54 +08:00
HideFromAdminPage : true , // This is moving away from being a feature toggle.
2023-09-14 20:58:04 +08:00
} ,
2023-09-22 16:50:13 +08:00
{
Name : "externalCorePlugins" ,
Description : "Allow core plugins to be loaded as external" ,
Stage : FeatureStageExperimental ,
Owner : grafanaPluginsPlatformSquad ,
} ,
2023-09-21 19:36:32 +08:00
{
Name : "pluginsAPIMetrics" ,
Description : "Sends metrics of public grafana packages usage by plugins" ,
FrontendOnly : true ,
Stage : FeatureStageExperimental ,
Owner : grafanaPluginsPlatformSquad ,
} ,
2023-09-28 15:26:37 +08:00
{
2024-02-05 16:31:20 +08:00
Name : "externalServiceAccounts" ,
Description : "Automatic service account and token setup for plugins" ,
HideFromAdminPage : true ,
2024-10-04 23:28:24 +08:00
Stage : FeatureStagePublicPreview ,
2024-02-05 16:31:20 +08:00
Owner : identityAccessTeam ,
2023-09-28 15:26:37 +08:00
} ,
2023-10-09 13:19:08 +08:00
{
Name : "panelMonitoring" ,
Description : "Enables panel monitoring through logs and measurements" ,
2024-02-16 13:29:59 +08:00
Stage : FeatureStageGeneralAvailability ,
Expression : "true" , // enabled by default
2023-10-09 13:19:08 +08:00
Owner : grafanaDatavizSquad ,
FrontendOnly : true ,
} ,
2023-10-04 02:23:55 +08:00
{
2024-06-19 03:37:44 +08:00
Name : "enableNativeHTTPHistogram" ,
Description : "Enables native HTTP Histograms" ,
Stage : FeatureStageExperimental ,
FrontendOnly : false ,
Owner : grafanaBackendServicesSquad ,
HideFromAdminPage : true ,
AllowSelfServe : false ,
RequiresRestart : true ,
} ,
2024-06-19 21:20:52 +08:00
{
2024-06-19 03:37:44 +08:00
Name : "disableClassicHTTPHistogram" ,
Description : "Disables classic HTTP Histogram (use with enableNativeHTTPHistogram)" ,
Stage : FeatureStageExperimental ,
FrontendOnly : false ,
Owner : grafanaBackendServicesSquad ,
HideFromAdminPage : true ,
AllowSelfServe : false ,
RequiresRestart : true ,
2023-10-04 02:23:55 +08:00
} ,
2023-10-14 02:17:12 +08:00
{
Name : "formatString" ,
Description : "Enable format string transformer" ,
2024-07-31 10:10:07 +08:00
Stage : FeatureStageGeneralAvailability ,
2023-10-14 02:17:12 +08:00
FrontendOnly : true ,
2024-02-10 08:24:08 +08:00
Owner : grafanaDatavizSquad ,
2024-07-31 10:10:07 +08:00
Expression : "true" , // enabled by default
2023-10-14 02:17:12 +08:00
} ,
2024-08-13 23:24:26 +08:00
{
Name : "kubernetesPlaylists" ,
Description : "Use the kubernetes API in the frontend for playlists, and route /api/playlist requests to k8s" ,
Stage : FeatureStageGeneralAvailability ,
Owner : grafanaAppPlatformSquad ,
Expression : "true" ,
RequiresRestart : true , // changes the API routing
} ,
2023-12-06 06:31:49 +08:00
{
Name : "kubernetesSnapshots" ,
2024-02-03 06:19:45 +08:00
Description : "Routes snapshot requests from /api to the /apis endpoint" ,
2023-12-06 06:31:49 +08:00
Stage : FeatureStageExperimental ,
Owner : grafanaAppPlatformSquad ,
RequiresRestart : true , // changes the API routing
} ,
2024-06-05 22:34:23 +08:00
{
Name : "kubernetesDashboards" ,
Description : "Use the kubernetes API in the frontend for dashboards" ,
Stage : FeatureStageExperimental ,
Owner : grafanaAppPlatformSquad ,
FrontendOnly : true ,
} ,
2025-01-03 22:48:47 +08:00
{
Name : "kubernetesRestore" ,
Description : "Allow restoring objects in k8s" ,
Stage : FeatureStageExperimental ,
Owner : grafanaAppPlatformSquad ,
} ,
2025-01-14 05:15:35 +08:00
{
2025-02-19 07:11:26 +08:00
Name : "kubernetesClientDashboardsFolders" ,
Description : "Route the folder and dashboard service requests to k8s" ,
2025-01-14 05:15:35 +08:00
Stage : FeatureStageExperimental ,
2025-02-19 07:11:26 +08:00
Owner : grafanaAppPlatformSquad ,
2024-10-03 18:11:40 +08:00
} ,
2024-05-24 00:46:28 +08:00
{
Name : "datasourceQueryTypes" ,
Description : "Show query type endpoints in datasource API servers (currently hardcoded for testdata, expressions, and prometheus)" ,
Stage : FeatureStageExperimental ,
Owner : grafanaAppPlatformSquad ,
RequiresRestart : true , // changes the API routing
} ,
2024-02-01 02:36:51 +08:00
{
2024-04-19 17:26:21 +08:00
Name : "queryService" ,
Description : "Register /apis/query.grafana.app/ -- will eventually replace /api/ds/query" ,
Stage : FeatureStageExperimental ,
Owner : grafanaAppPlatformSquad ,
RequiresRestart : true , // Adds a route at startup
} ,
{
Name : "queryServiceRewrite" ,
2024-02-01 02:36:51 +08:00
Description : "Rewrite requests targeting /ds/query to the query service" ,
Stage : FeatureStageExperimental ,
Owner : grafanaAppPlatformSquad ,
RequiresRestart : true , // changes the API routing
2024-04-19 17:26:21 +08:00
} ,
{
Name : "queryServiceFromUI" ,
Description : "Routes requests to the new query service" ,
Stage : FeatureStageExperimental ,
Owner : grafanaAppPlatformSquad ,
FrontendOnly : true , // and can change at startup
2024-02-01 02:36:51 +08:00
} ,
2023-10-21 03:09:41 +08:00
{
Name : "cloudWatchBatchQueries" ,
Description : "Runs CloudWatch metrics queries as separate batches" ,
Stage : FeatureStagePublicPreview ,
Owner : awsDatasourcesSquad ,
} ,
2023-10-10 22:51:50 +08:00
{
Name : "recoveryThreshold" ,
Description : "Enables feature recovery threshold (aka hysteresis) for threshold server-side expression" ,
2024-01-06 01:59:41 +08:00
Stage : FeatureStageGeneralAvailability ,
2023-10-10 22:51:50 +08:00
FrontendOnly : false ,
Owner : grafanaAlertingSquad ,
RequiresRestart : true ,
2024-01-06 01:59:41 +08:00
Expression : "true" ,
2023-10-10 22:51:50 +08:00
} ,
2023-11-17 00:06:14 +08:00
{
Name : "lokiStructuredMetadata" ,
Description : "Enables the loki data source to request structured metadata from the Loki server" ,
2024-02-15 00:24:56 +08:00
Stage : FeatureStageGeneralAvailability ,
2023-11-17 00:06:14 +08:00
FrontendOnly : false ,
Owner : grafanaObservabilityLogsSquad ,
2024-02-15 00:24:56 +08:00
Expression : "true" ,
2023-11-17 00:06:14 +08:00
} ,
2023-10-13 00:56:49 +08:00
{
Name : "cachingOptimizeSerializationMemoryUsage" ,
Description : "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." ,
Stage : FeatureStageExperimental ,
Owner : grafanaOperatorExperienceSquad ,
FrontendOnly : false ,
} ,
2024-04-05 04:38:23 +08:00
{
Name : "prometheusCodeModeMetricNamesSearch" ,
Description : "Enables search for metric names in Code Mode, to improve performance when working with an enormous number of metric names" ,
FrontendOnly : true ,
Stage : FeatureStageExperimental ,
2025-01-04 02:39:29 +08:00
Owner : grafanaOSSBigTent ,
2024-04-05 04:38:23 +08:00
} ,
2023-11-03 22:39:58 +08:00
{
Name : "addFieldFromCalculationStatFunctions" ,
Description : "Add cumulative and window functions to the add field from calculation transformation" ,
2024-07-31 08:30:24 +08:00
Stage : FeatureStageGeneralAvailability ,
2023-11-03 22:39:58 +08:00
FrontendOnly : true ,
2024-02-10 08:24:08 +08:00
Owner : grafanaDatavizSquad ,
2024-07-31 08:30:24 +08:00
Expression : "true" , // enabled by default
2023-11-03 22:39:58 +08:00
} ,
2023-10-31 00:27:08 +08:00
{
Name : "alertmanagerRemoteSecondary" ,
Description : "Enable Grafana to sync configuration and state with a remote Alertmanager." ,
Stage : FeatureStageExperimental ,
Owner : grafanaAlertingSquad ,
} ,
{
Name : "alertmanagerRemotePrimary" ,
Description : "Enable Grafana to have a remote Alertmanager instance as the primary Alertmanager." ,
Stage : FeatureStageExperimental ,
Owner : grafanaAlertingSquad ,
} ,
{
Name : "alertmanagerRemoteOnly" ,
Description : "Disable the internal Alertmanager and only use the external one defined." ,
Stage : FeatureStageExperimental ,
Owner : grafanaAlertingSquad ,
} ,
2023-10-31 21:30:13 +08:00
{
Name : "annotationPermissionUpdate" ,
2024-03-22 06:45:23 +08:00
Description : "Change the way annotation permissions work by scoping them to folders and dashboards." ,
Stage : FeatureStageGeneralAvailability ,
2023-10-31 21:30:13 +08:00
RequiresDevMode : false ,
2024-03-22 06:45:23 +08:00
Expression : "true" , // enabled by default
2023-11-03 20:20:39 +08:00
Owner : identityAccessTeam ,
2023-10-31 21:30:13 +08:00
} ,
2023-11-02 23:47:42 +08:00
{
Name : "extractFieldsNameDeduplication" ,
Description : "Make sure extracted field names are unique in the dataframe" ,
Stage : FeatureStageExperimental ,
FrontendOnly : true ,
2024-02-10 08:24:08 +08:00
Owner : grafanaDatavizSquad ,
2023-11-02 23:47:42 +08:00
} ,
2023-11-03 03:02:25 +08:00
{
Name : "dashboardSceneForViewers" ,
Description : "Enables dashboard rendering using Scenes for viewer roles" ,
2024-09-30 17:49:02 +08:00
Stage : FeatureStageGeneralAvailability ,
2023-11-03 03:02:25 +08:00
FrontendOnly : true ,
Owner : grafanaDashboardsSquad ,
2024-09-30 17:49:02 +08:00
Expression : "true" , // enabled by default
2023-11-03 03:02:25 +08:00
} ,
2024-02-11 16:08:47 +08:00
{
Name : "dashboardSceneSolo" ,
Description : "Enables rendering dashboards using scenes for solo panels" ,
2024-09-30 17:49:02 +08:00
Stage : FeatureStageGeneralAvailability ,
2024-02-11 16:08:47 +08:00
FrontendOnly : true ,
Owner : grafanaDashboardsSquad ,
2024-09-30 17:49:02 +08:00
Expression : "true" , // enabled by default
2024-02-11 16:08:47 +08:00
} ,
2023-11-13 16:51:21 +08:00
{
Name : "dashboardScene" ,
Description : "Enables dashboard rendering using scenes for all roles" ,
2024-09-30 17:49:02 +08:00
Stage : FeatureStageGeneralAvailability ,
2023-11-13 16:51:21 +08:00
FrontendOnly : true ,
Owner : grafanaDashboardsSquad ,
2024-09-30 17:49:02 +08:00
Expression : "true" , // enabled by default
2023-11-13 16:51:21 +08:00
} ,
2024-10-23 16:55:45 +08:00
{
Name : "dashboardNewLayouts" ,
Description : "Enables experimental new dashboard layouts" ,
Stage : FeatureStageExperimental ,
FrontendOnly : true ,
Owner : grafanaDashboardsSquad ,
} ,
2023-11-03 20:15:54 +08:00
{
Name : "panelFilterVariable" ,
Description : "Enables use of the `systemPanelFilterVar` variable to filter panels in a dashboard" ,
Stage : FeatureStageExperimental ,
FrontendOnly : true ,
Owner : grafanaDashboardsSquad ,
HideFromDocs : true ,
} ,
2023-11-06 21:39:22 +08:00
{
Name : "pdfTables" ,
Description : "Enables generating table data as PDF in reporting" ,
2024-01-05 22:57:13 +08:00
Stage : FeatureStagePublicPreview ,
2023-11-06 21:39:22 +08:00
FrontendOnly : false ,
Owner : grafanaSharingSquad ,
} ,
2023-11-08 17:50:01 +08:00
{
2024-02-23 00:33:27 +08:00
Name : "ssoSettingsApi" ,
Description : "Enables the SSO settings API and the OAuth configuration UIs in Grafana" ,
2024-05-02 21:00:52 +08:00
Stage : FeatureStageGeneralAvailability ,
Expression : "true" ,
2024-02-23 00:33:27 +08:00
AllowSelfServe : true ,
FrontendOnly : false ,
Owner : identityAccessTeam ,
2023-11-08 17:50:01 +08:00
} ,
2024-01-03 03:52:21 +08:00
{
Name : "canvasPanelPanZoom" ,
Description : "Allow pan and zoom in canvas panel" ,
2024-01-06 09:40:11 +08:00
Stage : FeatureStagePublicPreview ,
2024-01-03 03:52:21 +08:00
FrontendOnly : true ,
Owner : grafanaDatavizSquad ,
} ,
2023-11-09 18:54:03 +08:00
{
Name : "logsInfiniteScrolling" ,
Description : "Enables infinite scrolling for the Logs panel in Explore and Dashboards" ,
2024-06-05 00:23:20 +08:00
Stage : FeatureStageGeneralAvailability ,
Expression : "true" ,
2023-11-09 18:54:03 +08:00
FrontendOnly : true ,
Owner : grafanaObservabilityLogsSquad ,
} ,
2023-11-15 19:28:29 +08:00
{
2024-04-10 02:15:18 +08:00
Name : "exploreMetrics" ,
2025-02-21 05:11:39 +08:00
Description : "Enables the new Grafana Metrics Drilldown core app" ,
2024-04-10 02:15:18 +08:00
Stage : FeatureStageGeneralAvailability ,
Expression : "true" , // enabled by default
2023-11-15 19:28:29 +08:00
FrontendOnly : true ,
2025-02-04 04:46:54 +08:00
Owner : grafanaObservabilityMetricsSquad ,
2023-11-15 19:28:29 +08:00
} ,
2023-11-10 21:14:39 +08:00
{
Name : "alertingSimplifiedRouting" ,
2024-02-16 06:58:34 +08:00
Description : "Enables users to easily configure alert notifications by specifying a contact point directly when editing or creating an alert rule" ,
2024-03-23 01:45:20 +08:00
Stage : FeatureStageGeneralAvailability ,
2023-11-10 21:14:39 +08:00
FrontendOnly : false ,
Owner : grafanaAlertingSquad ,
2024-03-23 01:45:20 +08:00
Expression : "true" , // enabled by default
2023-11-10 21:14:39 +08:00
} ,
2023-11-16 17:48:10 +08:00
{
Name : "logRowsPopoverMenu" ,
Description : "Enable filtering menu displayed when text of a log line is selected" ,
2024-01-09 00:03:39 +08:00
Stage : FeatureStageGeneralAvailability ,
2023-11-16 17:48:10 +08:00
FrontendOnly : true ,
2024-01-09 00:03:39 +08:00
Expression : "true" ,
2023-11-16 17:48:10 +08:00
Owner : grafanaObservabilityLogsSquad ,
} ,
2023-11-16 01:09:14 +08:00
{
Name : "pluginsSkipHostEnvVars" ,
Description : "Disables passing host environment variable to plugin processes" ,
Stage : FeatureStageExperimental ,
FrontendOnly : false ,
Owner : grafanaPluginsPlatformSquad ,
} ,
2023-12-13 17:33:14 +08:00
{
Name : "tableSharedCrosshair" ,
Description : "Enables shared crosshair in table panel" ,
FrontendOnly : true ,
Stage : FeatureStageExperimental ,
2024-02-10 08:24:08 +08:00
Owner : grafanaDatavizSquad ,
2023-12-13 17:33:14 +08:00
} ,
2023-11-24 22:49:16 +08:00
{
Name : "regressionTransformation" ,
Description : "Enables regression analysis transformation" ,
2024-01-06 02:39:02 +08:00
Stage : FeatureStagePublicPreview ,
2023-11-24 22:49:16 +08:00
FrontendOnly : true ,
2024-02-10 08:24:08 +08:00
Owner : grafanaDatavizSquad ,
2023-11-24 22:49:16 +08:00
} ,
2023-12-19 04:43:16 +08:00
{
2024-08-02 22:47:00 +08:00
// this is mainly used as a way to quickly disable query hints as a safeguard for our infrastructure
2023-12-19 04:43:16 +08:00
Name : "lokiQueryHints" ,
Description : "Enables query hints for Loki" ,
Stage : FeatureStageGeneralAvailability ,
FrontendOnly : true ,
Expression : "true" ,
Owner : grafanaObservabilityLogsSquad ,
AllowSelfServe : false ,
} ,
2024-01-18 13:32:44 +08:00
{
Name : "kubernetesFeatureToggles" ,
Description : "Use the kubernetes API for feature toggle management in the frontend" ,
Stage : FeatureStageExperimental ,
FrontendOnly : true ,
Owner : grafanaOperatorExperienceSquad ,
AllowSelfServe : false ,
HideFromAdminPage : true ,
} ,
2024-01-10 21:19:01 +08:00
{
2024-08-02 22:47:00 +08:00
Name : "cloudRBACRoles" ,
Description : "Enabled grafana cloud specific RBAC roles" ,
Stage : FeatureStagePublicPreview ,
Owner : identityAccessTeam ,
HideFromDocs : true ,
AllowSelfServe : true ,
HideFromAdminPage : true ,
RequiresRestart : true ,
2024-01-10 21:19:01 +08:00
} ,
2024-01-11 04:52:58 +08:00
{
Name : "alertingQueryOptimization" ,
Description : "Optimizes eligible queries in order to reduce load on datasources" ,
Stage : FeatureStageGeneralAvailability ,
Owner : grafanaAlertingSquad ,
AllowSelfServe : false ,
2024-06-07 22:21:54 +08:00
Expression : "false" ,
2024-01-11 04:52:58 +08:00
} ,
2024-01-15 19:43:19 +08:00
{
Name : "newFolderPicker" ,
Description : "Enables the nested folder picker without having nested folders enabled" ,
Stage : FeatureStageExperimental ,
Owner : grafanaFrontendPlatformSquad ,
FrontendOnly : true ,
} ,
2024-01-19 02:48:11 +08:00
{
Name : "jitterAlertRulesWithinGroups" ,
Description : "Distributes alert rule evaluations more evenly over time, including spreading out rules within the same group" ,
FrontendOnly : false ,
2024-01-26 06:46:22 +08:00
Stage : FeatureStagePublicPreview ,
2024-01-19 02:48:11 +08:00
Owner : grafanaAlertingSquad ,
AllowSelfServe : false ,
HideFromDocs : true ,
HideFromAdminPage : false ,
RequiresRestart : true ,
} ,
2024-01-23 00:09:08 +08:00
{
Name : "onPremToCloudMigrations" ,
2025-01-10 19:28:35 +08:00
Description : "Enable the Grafana Migration Assistant, which helps you easily migrate on-prem resources, such as dashboards, folders, and data source configurations, to your Grafana Cloud stack." ,
2024-07-23 08:30:51 +08:00
Stage : FeatureStagePublicPreview ,
2024-01-23 00:09:08 +08:00
Owner : grafanaOperatorExperienceSquad ,
2025-01-10 19:28:35 +08:00
Expression : "true" ,
2024-01-23 00:09:08 +08:00
} ,
2024-01-24 00:03:30 +08:00
{
Name : "alertingSaveStatePeriodic" ,
Description : "Writes the state periodically to the database, asynchronous to rule evaluation" ,
Stage : FeatureStagePrivatePreview ,
FrontendOnly : false ,
Owner : grafanaAlertingSquad ,
} ,
2025-01-28 01:47:33 +08:00
{
Name : "alertingSaveStateCompressed" ,
Description : "Enables the compressed protobuf-based alert state storage" ,
2025-02-07 01:09:43 +08:00
Stage : FeatureStagePublicPreview ,
2025-01-28 01:47:33 +08:00
FrontendOnly : false ,
Owner : grafanaAlertingSquad ,
2025-02-07 01:09:43 +08:00
Expression : "false" ,
2025-01-28 01:47:33 +08:00
} ,
2024-11-27 15:58:25 +08:00
{
Name : "scopeApi" ,
Description : "In-development feature flag for the scope api using the app platform." ,
Stage : FeatureStageExperimental ,
Owner : grafanaAppPlatformSquad ,
HideFromAdminPage : true ,
Expression : "false" ,
} ,
2024-01-30 04:22:17 +08:00
{
2025-03-11 17:12:58 +08:00
Name : "promQLScope" ,
Description : "In-development feature that will allow injection of labels into prometheus queries." ,
Stage : FeatureStageGeneralAvailability ,
Owner : grafanaOSSBigTent ,
Expression : "true" ,
HideFromDocs : true ,
HideFromAdminPage : true ,
2024-01-30 04:22:17 +08:00
} ,
2024-11-11 19:53:24 +08:00
{
2025-03-11 17:12:58 +08:00
Name : "logQLScope" ,
Description : "In-development feature that will allow injection of labels into loki queries." ,
Stage : FeatureStagePrivatePreview ,
Owner : grafanaObservabilityLogsSquad ,
Expression : "false" ,
HideFromDocs : true ,
HideFromAdminPage : true ,
2024-11-11 19:53:24 +08:00
} ,
2024-02-28 05:16:00 +08:00
{
Name : "sqlExpressions" ,
2025-03-11 17:59:23 +08:00
Description : "Enables SQL Expressions, which can execute SQL queries against data source results." ,
2024-02-28 05:16:00 +08:00
Stage : FeatureStageExperimental ,
FrontendOnly : false ,
2025-02-06 20:27:28 +08:00
Owner : grafanaDatasourcesCoreServicesSquad ,
2024-02-28 05:16:00 +08:00
} ,
2024-02-01 00:26:12 +08:00
{
Name : "nodeGraphDotLayout" ,
Description : "Changed the layout algorithm for the node graph" ,
Stage : FeatureStageExperimental ,
FrontendOnly : true ,
Owner : grafanaObservabilityTracesAndProfilingSquad ,
} ,
2024-02-07 22:28:26 +08:00
{
Name : "groupToNestedTableTransformation" ,
Description : "Enables the group to nested table transformation" ,
2024-07-11 01:08:41 +08:00
Stage : FeatureStageGeneralAvailability ,
2024-02-07 22:28:26 +08:00
FrontendOnly : true ,
Owner : grafanaDatavizSquad ,
2024-07-11 01:08:41 +08:00
Expression : "true" , // enabled by default,
2024-02-07 22:28:26 +08:00
} ,
2024-02-08 20:09:34 +08:00
{
Name : "newPDFRendering" ,
2024-03-22 16:50:53 +08:00
Description : "New implementation for the dashboard-to-PDF rendering" ,
2025-01-06 21:20:41 +08:00
Stage : FeatureStageGeneralAvailability ,
2024-02-08 20:09:34 +08:00
Owner : grafanaSharingSquad ,
2025-01-06 21:20:41 +08:00
Expression : "true" , // enabled by default,
2024-02-08 20:09:34 +08:00
} ,
2024-05-10 03:12:08 +08:00
{
2024-08-05 23:21:11 +08:00
Name : "tlsMemcached" ,
Description : "Use TLS-enabled memcached in the enterprise caching feature" ,
Stage : FeatureStageGeneralAvailability ,
Owner : grafanaOperatorExperienceSquad ,
Expression : "true" ,
AllowSelfServe : false , // the non-tls implementation is slated for removal
2024-05-10 03:12:08 +08:00
} ,
2024-02-13 04:59:35 +08:00
{
Name : "kubernetesAggregator" ,
2024-08-09 16:41:07 +08:00
Description : "Enable grafana's embedded kube-aggregator" ,
2024-02-13 04:59:35 +08:00
Stage : FeatureStageExperimental ,
Owner : grafanaAppPlatformSquad ,
RequiresRestart : true ,
} ,
2024-02-17 08:59:11 +08:00
{
Name : "expressionParser" ,
Description : "Enable new expression parser" ,
Stage : FeatureStageExperimental ,
Owner : grafanaAppPlatformSquad ,
RequiresRestart : true ,
} ,
2024-02-15 01:18:04 +08:00
{
Name : "groupByVariable" ,
Description : "Enable groupBy variable support in scenes dashboards" ,
Stage : FeatureStageExperimental ,
Owner : grafanaDashboardsSquad ,
AllowSelfServe : false ,
HideFromDocs : true ,
HideFromAdminPage : true ,
} ,
2024-03-05 23:41:19 +08:00
{
Name : "scopeFilters" ,
Description : "Enables the use of scope filters in Grafana" ,
FrontendOnly : false ,
Stage : FeatureStageExperimental ,
Owner : grafanaDashboardsSquad ,
RequiresRestart : false ,
AllowSelfServe : false ,
HideFromDocs : true ,
HideFromAdminPage : true ,
} ,
2024-03-14 19:04:45 +08:00
{
2024-05-20 21:13:05 +08:00
Name : "ssoSettingsSAML" ,
Description : "Use the new SSO Settings API to configure the SAML connector" ,
2025-03-07 19:01:18 +08:00
Stage : FeatureStageGeneralAvailability ,
2024-05-20 21:13:05 +08:00
Owner : identityAccessTeam ,
2025-03-07 19:01:18 +08:00
Expression : "true" ,
2024-05-20 21:13:05 +08:00
AllowSelfServe : true ,
2024-03-14 19:04:45 +08:00
} ,
2024-03-25 21:22:24 +08:00
{
Name : "oauthRequireSubClaim" ,
Description : "Require that sub claims is present in oauth tokens." ,
Stage : FeatureStageExperimental ,
Owner : identityAccessTeam ,
HideFromDocs : true ,
HideFromAdminPage : true ,
} ,
2024-04-04 19:25:21 +08:00
{
Name : "newDashboardWithFiltersAndGroupBy" ,
Description : "Enables filters and group by variables on all new dashboards. Variables are added only if default data source supports filtering." ,
Stage : FeatureStageExperimental ,
Owner : grafanaDashboardsSquad ,
AllowSelfServe : false ,
HideFromDocs : true ,
HideFromAdminPage : true ,
} ,
2024-04-05 23:57:56 +08:00
{
Name : "cloudWatchNewLabelParsing" ,
Description : "Updates CloudWatch label parsing to be more accurate" ,
Stage : FeatureStageGeneralAvailability ,
Expression : "true" , // enabled by default
Owner : awsDatasourcesSquad ,
FrontendOnly : false ,
AllowSelfServe : false ,
} ,
2024-04-16 22:52:47 +08:00
{
Name : "disableNumericMetricsSortingInExpressions" ,
Description : "In server-side expressions, disable the sorting of numeric-kind metrics by their metric name or labels." ,
Stage : FeatureStageExperimental ,
FrontendOnly : false ,
2025-01-04 02:39:29 +08:00
Owner : grafanaOSSBigTent ,
2024-04-16 22:52:47 +08:00
RequiresRestart : true ,
} ,
2024-04-23 01:53:16 +08:00
{
Name : "grafanaManagedRecordingRules" ,
Description : "Enables Grafana-managed recording rules." ,
Stage : FeatureStageExperimental ,
Owner : grafanaAlertingSquad ,
AllowSelfServe : false ,
HideFromDocs : true ,
HideFromAdminPage : true ,
} ,
2024-04-24 16:32:11 +08:00
{
Name : "queryLibrary" ,
Description : "Enables Query Library feature in Explore" ,
Stage : FeatureStageExperimental ,
2024-11-15 03:51:06 +08:00
Owner : grafanaFrontendPlatformSquad ,
2024-04-24 16:32:11 +08:00
FrontendOnly : false ,
AllowSelfServe : false ,
} ,
2024-05-02 23:28:15 +08:00
{
Name : "logsExploreTableDefaultVisualization" ,
Description : "Sets the logs table as default visualisation in logs explore" ,
Stage : FeatureStageExperimental ,
Owner : grafanaObservabilityLogsSquad ,
FrontendOnly : true ,
} ,
2024-05-03 23:02:18 +08:00
{
Name : "newDashboardSharingComponent" ,
Description : "Enables the new sharing drawer design" ,
2024-09-23 19:28:48 +08:00
Stage : FeatureStageGeneralAvailability ,
2024-05-03 23:02:18 +08:00
Owner : grafanaSharingSquad ,
FrontendOnly : true ,
2024-12-10 23:52:18 +08:00
Expression : "true" , // enabled by default
2024-05-03 23:02:18 +08:00
} ,
2024-05-24 22:40:49 +08:00
{
Name : "alertingListViewV2" ,
Description : "Enables the new alert list view design" ,
Stage : FeatureStageExperimental ,
Owner : grafanaAlertingSquad ,
FrontendOnly : true ,
} ,
2024-05-17 01:36:26 +08:00
{
Name : "dashboardRestore" ,
2024-10-11 16:29:58 +08:00
Description : "Enables deleted dashboard restore feature" ,
2024-05-17 01:36:26 +08:00
Stage : FeatureStageExperimental ,
2024-06-25 22:43:13 +08:00
Owner : grafanaSearchAndStorageSquad ,
2024-05-17 01:36:26 +08:00
HideFromAdminPage : true ,
2024-10-11 16:29:58 +08:00
Expression : "false" , // enabled by default
2024-05-17 01:36:26 +08:00
} ,
2024-05-23 20:29:19 +08:00
{
Name : "alertingDisableSendAlertsExternal" ,
Description : "Disables the ability to send alerts to an external Alertmanager datasource." ,
Stage : FeatureStageExperimental ,
Owner : grafanaAlertingSquad ,
AllowSelfServe : false ,
HideFromDocs : true ,
HideFromAdminPage : true ,
} ,
2024-05-27 20:28:06 +08:00
{
Name : "preserveDashboardStateWhenNavigating" ,
Description : "Enables possibility to preserve dashboard variables and time range when navigating between dashboards" ,
Stage : FeatureStageExperimental ,
Owner : grafanaDashboardsSquad ,
HideFromDocs : true ,
HideFromAdminPage : true ,
} ,
2024-05-29 23:01:38 +08:00
{
Name : "alertingCentralAlertHistory" ,
Description : "Enables the new central alert history." ,
Stage : FeatureStageExperimental ,
Owner : grafanaAlertingSquad ,
FrontendOnly : true ,
} ,
2024-06-05 19:36:14 +08:00
{
Name : "pluginProxyPreserveTrailingSlash" ,
Description : "Preserve plugin proxy trailing slash." ,
Stage : FeatureStageGeneralAvailability ,
Owner : grafanaPluginsPlatformSquad ,
2024-06-06 21:28:11 +08:00
Expression : "false" , // disabled by default
2024-06-05 19:36:14 +08:00
} ,
2024-06-07 00:53:17 +08:00
{
Name : "azureMonitorPrometheusExemplars" ,
Description : "Allows configuration of Azure Monitor as a data source that can provide Prometheus exemplars" ,
2024-08-12 18:11:45 +08:00
Stage : FeatureStagePublicPreview ,
2024-06-07 00:53:17 +08:00
Owner : grafanaPartnerPluginsSquad ,
} ,
2024-06-10 19:40:03 +08:00
{
Name : "pinNavItems" ,
Description : "Enables pinning of nav items" ,
2024-10-03 18:45:31 +08:00
Stage : FeatureStageGeneralAvailability ,
2024-06-10 19:40:03 +08:00
Owner : grafanaFrontendPlatformSquad ,
2024-10-03 18:45:31 +08:00
Expression : "true" , // enabled by default
2024-06-10 19:40:03 +08:00
} ,
2024-06-13 17:41:35 +08:00
{
Name : "authZGRPCServer" ,
Description : "Enables the gRPC server for authorization" ,
Stage : FeatureStageExperimental ,
Owner : identityAccessTeam ,
HideFromAdminPage : true ,
HideFromDocs : true ,
} ,
2024-06-18 19:31:27 +08:00
{
2024-10-04 19:59:42 +08:00
Name : "ssoSettingsLDAP" ,
Description : "Use the new SSO Settings API to configure LDAP" ,
Stage : FeatureStagePublicPreview ,
Owner : identityAccessTeam ,
AllowSelfServe : true ,
RequiresRestart : true ,
2024-06-18 19:31:27 +08:00
} ,
2024-06-20 18:56:39 +08:00
{
Name : "failWrongDSUID" ,
Description : "Throws an error if a datasource has an invalid UIDs" ,
Stage : FeatureStageExperimental ,
Owner : grafanaPluginsPlatformSquad ,
} ,
2024-06-19 21:59:47 +08:00
{
Name : "zanzana" ,
Description : "Use openFGA as authorization engine." ,
Stage : FeatureStageExperimental ,
Owner : identityAccessTeam ,
HideFromDocs : true ,
HideFromAdminPage : true ,
} ,
2024-06-20 23:49:19 +08:00
{
2024-10-25 20:56:54 +08:00
Name : "reloadDashboardsOnParamsChange" ,
Description : "Enables reload of dashboards on scopes, time range and variables changes" ,
2024-06-20 23:49:19 +08:00
FrontendOnly : false ,
Stage : FeatureStageExperimental ,
Owner : grafanaDashboardsSquad ,
2024-11-06 21:11:33 +08:00
RequiresRestart : false ,
AllowSelfServe : false ,
HideFromDocs : true ,
HideFromAdminPage : true ,
} ,
{
Name : "enableScopesInMetricsExplore" ,
Description : "Enables the scopes usage in Metrics Explore" ,
FrontendOnly : false ,
Stage : FeatureStageExperimental ,
Owner : grafanaDashboardsSquad ,
2024-06-20 23:49:19 +08:00
RequiresRestart : false ,
AllowSelfServe : false ,
HideFromDocs : true ,
HideFromAdminPage : true ,
} ,
2024-06-21 04:52:03 +08:00
{
Name : "alertingApiServer" ,
Description : "Register Alerting APIs with the K8s API server" ,
2025-01-09 03:31:35 +08:00
Stage : FeatureStageGeneralAvailability ,
2024-06-21 04:52:03 +08:00
Owner : grafanaAlertingSquad ,
RequiresRestart : true ,
2025-01-09 03:31:35 +08:00
Expression : "true" ,
2024-06-21 04:52:03 +08:00
} ,
2024-06-27 23:10:28 +08:00
{
Name : "cloudWatchRoundUpEndTime" ,
Description : "Round up end time for metric queries to the next minute to avoid missing data" ,
Stage : FeatureStageGeneralAvailability ,
Owner : awsDatasourcesSquad ,
Expression : "true" ,
} ,
2024-07-17 22:09:55 +08:00
{
Name : "prometheusAzureOverrideAudience" ,
Description : "Deprecated. Allow override default AAD audience for Azure Prometheus endpoint. Enabled by default. This feature should no longer be used and will be removed in the future." ,
Stage : FeatureStageDeprecated ,
Owner : grafanaPartnerPluginsSquad ,
Expression : "true" , // Enabled by default for now
2024-09-11 19:29:26 +08:00
} , {
Name : "alertingFilterV2" ,
Description : "Enable the new alerting search experience" ,
Stage : FeatureStageExperimental ,
Owner : grafanaAlertingSquad ,
HideFromDocs : true ,
2024-07-17 22:09:55 +08:00
} ,
2024-08-09 16:41:07 +08:00
{
Name : "dataplaneAggregator" ,
Description : "Enable grafana dataplane aggregator" ,
Stage : FeatureStageExperimental ,
Owner : grafanaAppPlatformSquad ,
RequiresRestart : true ,
} ,
2024-08-30 20:48:13 +08:00
{
Name : "newFiltersUI" ,
Description : "Enables new combobox style UI for the Ad hoc filters variable in scenes architecture" ,
2024-12-10 18:06:55 +08:00
Stage : FeatureStageGeneralAvailability ,
2024-08-30 20:48:13 +08:00
Owner : grafanaDashboardsSquad ,
2024-12-10 18:06:55 +08:00
Expression : "true" , // enabled by default
2024-08-30 20:48:13 +08:00
} ,
2024-08-23 03:30:43 +08:00
{
Name : "lokiSendDashboardPanelNames" ,
Description : "Send dashboard and panel names to Loki when querying" ,
Stage : FeatureStageExperimental ,
Owner : grafanaObservabilityLogsSquad ,
} ,
2024-09-27 20:27:16 +08:00
{
Name : "alertingPrometheusRulesPrimary" ,
Description : "Uses Prometheus rules as the primary source of truth for ruler-enabled data sources" ,
Stage : FeatureStageExperimental ,
Owner : grafanaAlertingSquad ,
FrontendOnly : true ,
} ,
2024-08-29 21:55:59 +08:00
{
Name : "exploreLogsShardSplitting" ,
2025-02-21 05:11:39 +08:00
Description : "Used in Logs Drilldown to split queries into multiple queries based on the number of shards" ,
2024-08-29 21:55:59 +08:00
Stage : FeatureStageExperimental ,
FrontendOnly : true ,
Owner : grafanaObservabilityLogsSquad ,
} ,
{
Name : "exploreLogsAggregatedMetrics" ,
2025-02-21 05:11:39 +08:00
Description : "Used in Logs Drilldown to query by aggregated metrics" ,
2024-08-29 21:55:59 +08:00
Stage : FeatureStageExperimental ,
FrontendOnly : true ,
Owner : grafanaObservabilityLogsSquad ,
} ,
{
Name : "exploreLogsLimitedTimeRange" ,
2025-02-21 05:11:39 +08:00
Description : "Used in Logs Drilldown to limit the time range" ,
2024-08-29 21:55:59 +08:00
Stage : FeatureStageExperimental ,
FrontendOnly : true ,
Owner : grafanaObservabilityLogsSquad ,
} ,
2024-09-26 01:20:04 +08:00
{
Name : "homeSetupGuide" ,
Description : "Used in Home for users who want to return to the onboarding flow or quickly find popular config pages" ,
Stage : FeatureStageExperimental ,
FrontendOnly : true ,
Owner : growthAndOnboarding ,
} ,
2024-09-06 00:18:44 +08:00
{
2024-10-14 18:47:18 +08:00
Name : "appPlatformGrpcClientAuth" ,
Description : "Enables the gRPC client to authenticate with the App Platform by using ID & access tokens" ,
2024-09-06 00:18:44 +08:00
Stage : FeatureStageExperimental ,
Owner : identityAccessTeam ,
HideFromDocs : true ,
HideFromAdminPage : true ,
} ,
2024-09-09 20:45:05 +08:00
{
Name : "appSidecar" ,
Description : "Enable the app sidecar feature that allows rendering 2 apps at the same time" ,
Stage : FeatureStageExperimental ,
2024-11-15 03:51:06 +08:00
Owner : grafanaFrontendPlatformSquad ,
2024-09-09 20:45:05 +08:00
} ,
2024-09-09 23:29:43 +08:00
{
Name : "groupAttributeSync" ,
Description : "Enable the groupsync extension for managing Group Attribute Sync feature" ,
2024-11-12 00:25:17 +08:00
Stage : FeatureStagePrivatePreview ,
2024-09-09 23:29:43 +08:00
Owner : identityAccessTeam ,
HideFromDocs : true ,
} ,
2024-09-26 14:33:14 +08:00
{
Name : "alertingQueryAndExpressionsStepMode" ,
Description : "Enables step mode for alerting queries and expressions" ,
2025-01-20 20:55:34 +08:00
Stage : FeatureStageGeneralAvailability ,
2024-09-26 14:33:14 +08:00
Owner : grafanaAlertingSquad ,
FrontendOnly : true ,
2025-01-20 20:55:34 +08:00
Expression : "true" ,
2024-09-26 14:33:14 +08:00
} ,
2024-09-17 18:54:39 +08:00
{
2025-01-20 19:33:37 +08:00
Name : "improvedExternalSessionHandling" ,
Description : "Enables improved support for OAuth external sessions. After enabling this feature, users might need to re-authenticate themselves." ,
Stage : FeatureStagePublicPreview ,
Owner : identityAccessTeam ,
AllowSelfServe : true ,
2024-09-17 18:54:39 +08:00
} ,
2024-09-23 17:31:23 +08:00
{
Name : "useSessionStorageForRedirection" ,
Description : "Use session storage for handling the redirection after login" ,
2024-12-14 02:36:35 +08:00
Stage : FeatureStageGeneralAvailability ,
2024-09-23 17:31:23 +08:00
Owner : identityAccessTeam ,
2024-12-14 02:36:35 +08:00
Expression : "true" ,
2024-09-23 17:31:23 +08:00
} ,
2024-09-26 20:51:38 +08:00
{
Name : "rolePickerDrawer" ,
Description : "Enables the new role picker drawer design" ,
Stage : FeatureStageExperimental ,
Owner : identityAccessTeam ,
} ,
2024-10-01 03:46:14 +08:00
{
Name : "unifiedStorageSearch" ,
Description : "Enable unified storage search" ,
Stage : FeatureStageExperimental ,
Owner : grafanaSearchAndStorageSquad ,
HideFromDocs : true ,
HideFromAdminPage : true ,
} ,
2024-12-19 01:00:54 +08:00
{
Name : "unifiedStorageSearchSprinkles" ,
Description : "Enable sprinkles on unified storage search" ,
Stage : FeatureStageExperimental ,
Owner : grafanaSearchAndStorageSquad ,
HideFromDocs : true ,
HideFromAdminPage : true ,
} ,
2025-01-22 19:38:37 +08:00
{
Name : "unifiedStorageSearchPermissionFiltering" ,
Description : "Enable permission filtering on unified storage search" ,
Stage : FeatureStageExperimental ,
Owner : grafanaSearchAndStorageSquad ,
HideFromDocs : true ,
HideFromAdminPage : true ,
} ,
2025-02-19 22:50:39 +08:00
{
Name : "managedDualWriter" ,
Description : "Pick the dual write mode from database configs" ,
Stage : FeatureStageExperimental ,
Owner : grafanaSearchAndStorageSquad ,
HideFromDocs : true ,
HideFromAdminPage : true ,
} ,
2024-10-04 20:55:09 +08:00
{
Name : "pluginsSriChecks" ,
Description : "Enables SRI checks for plugin assets" ,
Stage : FeatureStageExperimental ,
Owner : grafanaPluginsPlatformSquad ,
} ,
2024-10-17 18:18:29 +08:00
{
Name : "unifiedStorageBigObjectsSupport" ,
Description : "Enables to save big objects in blob storage" ,
Stage : FeatureStageExperimental ,
Owner : grafanaSearchAndStorageSquad ,
} ,
2024-10-22 18:52:33 +08:00
{
Name : "timeRangeProvider" ,
Description : "Enables time pickers sync" ,
Stage : FeatureStageExperimental ,
Owner : grafanaFrontendPlatformSquad ,
} ,
2024-10-23 19:18:33 +08:00
{
Name : "prometheusUsesCombobox" ,
Description : "Use new combobox component for Prometheus query editor" ,
Stage : FeatureStageExperimental ,
2025-01-04 02:39:29 +08:00
Owner : grafanaOSSBigTent ,
2024-10-23 19:18:33 +08:00
} ,
2024-11-12 19:56:41 +08:00
{
Name : "userStorageAPI" ,
Description : "Enables the user storage API" ,
2025-01-10 00:31:07 +08:00
Stage : FeatureStageGeneralAvailability ,
2024-11-12 19:56:41 +08:00
Owner : grafanaPluginsPlatformSquad ,
2025-01-10 00:31:07 +08:00
Expression : "true" , // enabled by default
2024-11-12 19:56:41 +08:00
} ,
2024-10-24 21:32:09 +08:00
{
Name : "azureMonitorDisableLogLimit" ,
Description : "Disables the log limit restriction for Azure Monitor when true. The limit is enabled by default." ,
Stage : FeatureStageGeneralAvailability ,
Owner : grafanaPartnerPluginsSquad ,
Expression : "false" ,
} ,
2024-11-07 20:14:25 +08:00
{
Name : "preinstallAutoUpdate" ,
Description : "Enables automatic updates for pre-installed plugins" ,
2024-11-14 20:37:21 +08:00
Stage : FeatureStageGeneralAvailability ,
2024-11-07 20:14:25 +08:00
Owner : grafanaPluginsPlatformSquad ,
2024-11-14 20:37:21 +08:00
Expression : "true" , // enabled by default
2024-11-07 20:14:25 +08:00
} ,
2024-11-02 01:47:24 +08:00
{
2024-12-20 11:09:31 +08:00
Name : "playlistsReconciler" ,
Description : "Enables experimental reconciler for playlists" ,
2024-11-02 01:47:24 +08:00
Stage : FeatureStageExperimental ,
Owner : grafanaAppPlatformSquad ,
RequiresRestart : true ,
} ,
2024-11-14 21:50:55 +08:00
{
Name : "passwordlessMagicLinkAuthentication" ,
Description : "Enable passwordless login via magic link authentication" ,
Stage : FeatureStageExperimental ,
Owner : identityAccessTeam ,
HideFromDocs : true ,
HideFromAdminPage : true ,
AllowSelfServe : false ,
} ,
2024-11-06 00:28:43 +08:00
{
Name : "exploreMetricsRelatedLogs" ,
2025-02-21 22:31:16 +08:00
Description : "Display Related Logs in Grafana Metrics Drilldown" ,
2024-11-06 00:28:43 +08:00
Stage : FeatureStageExperimental ,
Owner : grafanaObservabilityMetricsSquad ,
FrontendOnly : true ,
2025-02-21 22:31:16 +08:00
HideFromDocs : false ,
2024-11-06 00:28:43 +08:00
} ,
2024-12-19 05:31:08 +08:00
{
Name : "prometheusSpecialCharsInLabelValues" ,
Description : "Adds support for quotes and special characters in label values for Prometheus queries" ,
FrontendOnly : true ,
Stage : FeatureStageExperimental ,
2025-01-04 02:39:29 +08:00
Owner : grafanaOSSBigTent ,
2024-12-19 05:31:08 +08:00
} ,
2024-11-05 23:55:10 +08:00
{
Name : "enableExtensionsAdminPage" ,
Description : "Enables the extension admin page regardless of development mode" ,
Stage : FeatureStageExperimental ,
Owner : grafanaPluginsPlatformSquad ,
RequiresRestart : true ,
} ,
2024-11-07 22:38:46 +08:00
{
Name : "enableSCIM" ,
Description : "Enables SCIM support for user and group management" ,
Stage : FeatureStageExperimental ,
Owner : identityAccessTeam ,
} ,
2024-11-12 23:07:27 +08:00
{
Name : "crashDetection" ,
Description : "Enables browser crash detection reporting to Faro." ,
Stage : FeatureStageExperimental ,
Owner : grafanaObservabilityTracesAndProfilingSquad ,
FrontendOnly : true ,
} ,
2024-11-15 22:40:20 +08:00
{
Name : "jaegerBackendMigration" ,
Description : "Enables querying the Jaeger data source without the proxy" ,
Stage : FeatureStageExperimental ,
Owner : grafanaOSSBigTent ,
} ,
2024-11-15 04:08:03 +08:00
{
Name : "reportingUseRawTimeRange" ,
Description : "Uses the original report or dashboard time range instead of making an absolute transformation" ,
2025-01-06 21:20:41 +08:00
Stage : FeatureStageGeneralAvailability ,
2024-11-15 04:08:03 +08:00
Owner : grafanaSharingSquad ,
2025-01-06 21:20:41 +08:00
Expression : "true" , // enabled by default
2024-11-15 04:08:03 +08:00
} ,
2024-11-18 18:59:00 +08:00
{
Name : "alertingUIOptimizeReducer" ,
Description : "Enables removing the reducer from the alerting UI when creating a new alert rule and using instant query" ,
Stage : FeatureStageGeneralAvailability ,
FrontendOnly : true ,
Owner : grafanaAlertingSquad ,
Expression : "true" , // enabled by default
} ,
2024-11-27 22:01:54 +08:00
{
Name : "azureMonitorEnableUserAuth" ,
Description : "Enables user auth for Azure Monitor datasource only" ,
Stage : FeatureStageGeneralAvailability ,
Owner : grafanaPartnerPluginsSquad ,
Expression : "true" , // Enabled by default for now
} ,
2024-11-22 19:07:45 +08:00
{
Name : "alertingNotificationsStepMode" ,
Description : "Enables simplified step mode in the notifications section" ,
2025-01-20 20:55:34 +08:00
Stage : FeatureStageGeneralAvailability ,
2024-11-22 19:07:45 +08:00
Owner : grafanaAlertingSquad ,
FrontendOnly : true ,
2025-01-20 20:55:34 +08:00
Expression : "true" ,
2024-11-22 19:07:45 +08:00
} ,
2024-12-03 01:08:15 +08:00
{
Name : "feedbackButton" ,
Description : "Enables a button to send feedback from the Grafana UI" ,
Stage : FeatureStageExperimental ,
Owner : grafanaOperatorExperienceSquad ,
HideFromDocs : true ,
} ,
2024-12-20 02:21:48 +08:00
{
Name : "unifiedStorageSearchUI" ,
Description : "Enable unified storage search UI" ,
Stage : FeatureStageExperimental ,
Owner : grafanaSearchAndStorageSquad ,
HideFromDocs : true ,
HideFromAdminPage : true ,
} ,
2024-12-13 06:20:04 +08:00
{
Name : "elasticsearchCrossClusterSearch" ,
Description : "Enables cross cluster search in the Elasticsearch datasource" ,
Stage : FeatureStagePublicPreview ,
Owner : awsDatasourcesSquad ,
} ,
2024-12-13 18:41:18 +08:00
{
Name : "unifiedHistory" ,
Description : "Displays the navigation history so the user can navigate back to previous pages" ,
Stage : FeatureStageExperimental ,
Owner : grafanaFrontendPlatformSquad ,
FrontendOnly : true ,
} ,
2024-12-13 22:31:41 +08:00
{
Name : "lokiLabelNamesQueryApi" ,
Description : "Defaults to using the Loki `/labels` API instead of `/series`" ,
Stage : FeatureStageGeneralAvailability ,
Owner : grafanaObservabilityLogsSquad ,
Expression : "true" ,
} ,
2024-12-18 16:31:03 +08:00
{
Name : "investigationsBackend" ,
Description : "Enable the investigations backend API" ,
Stage : FeatureStageExperimental ,
Owner : grafanaAppPlatformSquad ,
Expression : "false" ,
} ,
2024-12-28 01:10:44 +08:00
{
Name : "k8SFolderCounts" ,
Description : "Enable folder's api server counts" ,
Stage : FeatureStageExperimental ,
Owner : grafanaSearchAndStorageSquad ,
Expression : "false" ,
} ,
{
Name : "k8SFolderMove" ,
Description : "Enable folder's api server move" ,
Stage : FeatureStageExperimental ,
Owner : grafanaSearchAndStorageSquad ,
Expression : "false" ,
} ,
2025-01-10 01:02:49 +08:00
{
2025-01-20 19:33:37 +08:00
Name : "improvedExternalSessionHandlingSAML" ,
Description : "Enables improved support for SAML external sessions. Ensure the NameID format is correctly configured in Grafana for SAML Single Logout to function properly." ,
Stage : FeatureStagePublicPreview ,
Owner : identityAccessTeam ,
AllowSelfServe : true ,
2025-01-10 01:02:49 +08:00
} ,
2025-01-13 18:42:47 +08:00
{
Name : "teamHttpHeadersMimir" ,
Description : "Enables LBAC for datasources for Mimir to apply LBAC filtering of metrics to the client requests for users in teams" ,
Stage : FeatureStageExperimental ,
FrontendOnly : false ,
AllowSelfServe : false ,
Owner : identityAccessTeam ,
} ,
2025-01-14 05:13:13 +08:00
{
Name : "ABTestFeatureToggleA" ,
Description : "Test feature toggle to see how cohorts could be set up AB testing" ,
Stage : FeatureStageExperimental ,
Owner : grafanaSharingSquad ,
Expression : "false" ,
HideFromDocs : true ,
} ,
2025-01-31 17:53:13 +08:00
{
Name : "templateVariablesUsesCombobox" ,
Description : "Use new combobox component for template variables" ,
Stage : FeatureStageExperimental ,
Owner : grafanaFrontendPlatformSquad ,
FrontendOnly : true ,
} ,
2025-01-14 05:13:13 +08:00
{
Name : "ABTestFeatureToggleB" ,
Description : "Test feature toggle to see how cohorts could be set up AB testing" ,
Stage : FeatureStageExperimental ,
Owner : grafanaSharingSquad ,
Expression : "false" ,
HideFromDocs : true ,
} ,
2025-01-20 18:08:00 +08:00
{
Name : "grafanaAdvisor" ,
Description : "Enables Advisor app" ,
Stage : FeatureStageExperimental ,
Owner : grafanaPluginsPlatformSquad ,
} ,
2025-01-16 01:05:54 +08:00
{
Name : "elasticsearchImprovedParsing" ,
Description : "Enables less memory intensive Elasticsearch result parsing" ,
Stage : FeatureStageExperimental ,
Owner : awsDatasourcesSquad ,
} ,
2025-02-04 04:46:54 +08:00
{
Name : "exploreMetricsUseExternalAppPlugin" ,
Description : "Use the externalized Metrics Drilldown (formerly known as Explore Metrics) app plugin" ,
Stage : FeatureStageExperimental ,
Owner : grafanaObservabilityMetricsSquad ,
FrontendOnly : true ,
RequiresRestart : true ,
HideFromDocs : true ,
} ,
2025-01-22 01:39:48 +08:00
{
Name : "datasourceConnectionsTab" ,
Description : "Shows defined connections for a data source in the plugins detail page" ,
Stage : FeatureStageExperimental ,
Owner : grafanaPluginsPlatformSquad ,
RequiresDevMode : false ,
FrontendOnly : true ,
} ,
2025-01-29 20:17:44 +08:00
{
Name : "fetchRulesUsingPost" ,
Description : "Use a POST request to list rules by passing down the namespaces user has access to" ,
Stage : FeatureStageExperimental ,
2025-02-12 15:13:21 +08:00
Owner : grafanaAlertingSquad ,
HideFromAdminPage : true ,
HideFromDocs : true ,
} ,
{
Name : "alertingConversionAPI" ,
Description : "Enable the alerting conversion API" ,
Stage : FeatureStageExperimental ,
2025-01-29 20:17:44 +08:00
Owner : grafanaAlertingSquad ,
HideFromAdminPage : true ,
HideFromDocs : true ,
} ,
2025-02-01 00:12:38 +08:00
{
Name : "alertingAlertmanagerExtraDedupStage" ,
Description : "enables extra deduplication stage in alertmanager that checks that timestamps of the pipeline and the current state are matching" ,
Stage : FeatureStageExperimental ,
Owner : grafanaAlertingSquad ,
HideFromAdminPage : true ,
HideFromDocs : true ,
RequiresRestart : true ,
} ,
{
Name : "alertingAlertmanagerExtraDedupStageStopPipeline" ,
Description : "works together with alertingAlertmanagerExtraDedupStage, if enabled, it will stop the pipeline if the timestamps are not matching. Otherwise, it will emit a warning" ,
Stage : FeatureStageExperimental ,
Owner : grafanaAlertingSquad ,
HideFromAdminPage : true ,
HideFromDocs : true ,
RequiresRestart : true ,
} ,
2025-02-05 01:40:17 +08:00
{
Name : "newLogsPanel" ,
Description : "Enables the new logs panel in Explore" ,
Stage : FeatureStageExperimental ,
FrontendOnly : true ,
Owner : grafanaObservabilityLogsSquad ,
} ,
2025-02-06 19:08:04 +08:00
{
Name : "grafanaconThemes" ,
Description : "Enables the temporary themes for GrafanaCon" ,
Stage : FeatureStageExperimental ,
Owner : grafanaFrontendPlatformSquad ,
HideFromAdminPage : true ,
HideFromDocs : true ,
RequiresRestart : true ,
} ,
2025-02-07 18:07:08 +08:00
{
Name : "pluginsCDNSyncLoader" ,
Description : "Load plugins from CDN synchronously" ,
Stage : FeatureStageExperimental ,
Owner : grafanaPluginsPlatformSquad ,
} ,
2025-02-14 20:22:04 +08:00
{
Name : "alertingJiraIntegration" ,
Description : "Enables the new Jira integration for contact points in cloud alert managers." ,
Stage : FeatureStageExperimental ,
Owner : grafanaAlertingSquad ,
FrontendOnly : true ,
HideFromDocs : true ,
} ,
2025-02-17 20:25:32 +08:00
{
Name : "alertingRuleVersionHistoryRestore" ,
Description : "Enables the alert rule version history restore feature" ,
FrontendOnly : true ,
2025-02-28 19:14:23 +08:00
Stage : FeatureStageGeneralAvailability ,
2025-02-17 20:25:32 +08:00
Owner : grafanaAlertingSquad ,
HideFromAdminPage : true ,
HideFromDocs : true ,
2025-02-28 19:14:23 +08:00
Expression : "true" , // enabled by default
2025-02-17 20:25:32 +08:00
} ,
2025-02-18 03:05:46 +08:00
{
Name : "newShareReportDrawer" ,
Description : "Enables the report creation drawer in a dashboard" ,
Stage : FeatureStageExperimental ,
Owner : grafanaSharingSquad ,
HideFromAdminPage : true ,
HideFromDocs : true ,
} ,
2025-02-24 22:43:06 +08:00
{
Name : "rendererDisableAppPluginsPreload" ,
Description : "Disable pre-loading app plugins when the request is coming from the renderer" ,
Stage : FeatureStageExperimental ,
Owner : grafanaSharingSquad ,
HideFromAdminPage : true ,
HideFromDocs : true ,
FrontendOnly : true ,
} ,
2025-03-04 18:56:35 +08:00
{
Name : "assetSriChecks" ,
Description : "Enables SRI checks for Grafana JavaScript assets" ,
Stage : FeatureStageExperimental ,
Owner : grafanaFrontendOpsWG ,
FrontendOnly : true ,
} ,
2025-03-05 22:15:26 +08:00
{
Name : "alertRuleRestore" ,
Description : "Enables the alert rule restore feature" ,
Stage : FeatureStagePublicPreview ,
Owner : grafanaAlertingSquad ,
Expression : "true" , // enabled by default
} ,
2025-03-07 21:30:40 +08:00
{
Name : "grafanaManagedRecordingRulesDatasources" ,
Description : "Enables writing to data sources for Grafana-managed recording rules." ,
Stage : FeatureStageExperimental ,
Owner : grafanaAlertingSquad ,
AllowSelfServe : false ,
HideFromAdminPage : true ,
HideFromDocs : true ,
} ,
2025-03-08 03:09:59 +08:00
{
Name : "inviteUserExperimental" ,
Description : "Renders invite user button along the app" ,
Stage : FeatureStageExperimental ,
Owner : grafanaSharingSquad ,
HideFromAdminPage : true ,
HideFromDocs : true ,
FrontendOnly : true ,
} ,
2025-03-11 18:07:16 +08:00
{
Name : "extraLanguages" ,
Description : "Enables additional languages" ,
Stage : FeatureStageExperimental ,
Owner : grafanaFrontendPlatformSquad ,
FrontendOnly : true ,
} ,
2022-01-27 01:44:20 +08:00
}
)
2024-02-10 07:34:12 +08:00
//go:embed toggles_gen.json
var f embed . FS
// Get the cached feature list (exposed as a k8s resource)
func GetEmbeddedFeatureList ( ) ( featuretoggle . FeatureList , error ) {
features := featuretoggle . FeatureList { }
body , err := f . ReadFile ( "toggles_gen.json" )
if err == nil {
err = json . Unmarshal ( body , & features )
}
return features , err
}