2022-04-01 01:32:00 -05:00
// NOTE: This file was auto generated. DO NOT EDIT DIRECTLY!
// To change feature flags, edit:
// pkg/services/featuremgmt/registry.go
// Then run tests in:
// pkg/services/featuremgmt/toggles_gen_test.go
2022-01-26 11:44:20 -06:00
package featuremgmt
const (
2022-10-06 01:22:58 -05:00
// FlagAlertingBigTransactions
// Use big transactions for alerting database writes
FlagAlertingBigTransactions = "alertingBigTransactions"
2022-01-26 11:44:20 -06:00
// FlagTrimDefaults
// Use cue schema to remove values that will be applied automatically
FlagTrimDefaults = "trimDefaults"
2022-05-24 03:34:47 -05:00
// FlagDisableEnvelopeEncryption
// Disable envelope encryption (emergency only)
FlagDisableEnvelopeEncryption = "disableEnvelopeEncryption"
2022-01-26 11:44:20 -06:00
// FlagDatabaseMetrics
2022-11-30 15:50:20 -06:00
// Add Prometheus metrics for database tables
2022-01-26 11:44:20 -06:00
FlagDatabaseMetrics = "database_metrics"
// FlagDashboardPreviews
// Create and show thumbnails for dashboard search results
FlagDashboardPreviews = "dashboardPreviews"
// FlagLivePipeline
2022-11-30 15:50:20 -06:00
// Enable a generic live processing pipeline
2022-01-26 11:44:20 -06:00
FlagLivePipeline = "live-pipeline"
// FlagLiveServiceWebWorker
// This will use a webworker thread to processes events rather than the main thread
FlagLiveServiceWebWorker = "live-service-web-worker"
// FlagQueryOverLive
2022-11-30 15:50:20 -06:00
// Use Grafana Live WebSocket to execute backend queries
2022-01-26 11:44:20 -06:00
FlagQueryOverLive = "queryOverLive"
2022-02-15 12:26:03 -06:00
// FlagPanelTitleSearch
// Search for dashboards using panel title
FlagPanelTitleSearch = "panelTitleSearch"
2022-05-30 10:43:32 -05:00
// FlagPrometheusAzureOverrideAudience
// Experimental. Allow override default AAD audience for Azure Prometheus endpoint
FlagPrometheusAzureOverrideAudience = "prometheusAzureOverrideAudience"
2022-04-07 13:30:19 -05:00
// FlagPublicDashboards
2022-11-30 15:50:20 -06:00
// Enables public access to dashboards
2022-04-07 13:30:19 -05:00
FlagPublicDashboards = "publicDashboards"
2023-01-03 13:45:15 -06:00
// FlagPublicDashboardsEmailSharing
// Allows public dashboard sharing to be restricted to only allowed emails
FlagPublicDashboardsEmailSharing = "publicDashboardsEmailSharing"
2022-03-01 16:46:52 -06:00
// FlagLokiLive
2022-11-30 15:50:20 -06:00
// Support WebSocket streaming for loki (early prototype)
2022-03-01 16:46:52 -06:00
FlagLokiLive = "lokiLive"
2022-06-13 01:33:46 -05:00
// FlagLokiDataframeApi
2022-11-30 15:50:20 -06:00
// Use experimental loki api for WebSocket streaming (early prototype)
2022-06-13 01:33:46 -05:00
FlagLokiDataframeApi = "lokiDataframeApi"
2022-02-03 05:53:23 -06:00
// FlagFeatureHighlights
2022-11-30 15:50:20 -06:00
// Highlight Grafana Enterprise features
2022-02-03 05:53:23 -06:00
FlagFeatureHighlights = "featureHighlights"
2022-02-15 10:54:27 -06:00
2022-02-22 01:47:42 -06:00
// FlagDashboardComments
// Enable dashboard-wide comments
FlagDashboardComments = "dashboardComments"
// FlagAnnotationComments
// Enable annotation comments
FlagAnnotationComments = "annotationComments"
2022-02-15 10:54:27 -06:00
// FlagMigrationLocking
// Lock database during migrations
FlagMigrationLocking = "migrationLocking"
2022-03-14 14:07:45 -05:00
2022-03-17 12:19:23 -05:00
// FlagStorage
// Configurable storage for dashboards, datasources, and resources
FlagStorage = "storage"
2022-12-13 09:41:16 -06:00
// FlagK8s
// Explore native k8s integrations
FlagK8s = "k8s"
2022-07-14 17:36:17 -05:00
// FlagDashboardsFromStorage
// Load dashboards from the generic storage interface
FlagDashboardsFromStorage = "dashboardsFromStorage"
2022-08-31 09:24:20 -05:00
// FlagExploreMixedDatasource
// Enable mixed datasource in Explore
FlagExploreMixedDatasource = "exploreMixedDatasource"
2022-04-26 08:31:27 -05:00
// FlagTracing
// Adds trace ID to error notifications
FlagTracing = "tracing"
2023-02-28 09:41:40 -06:00
// FlagNewTraceView
// Shows the new trace view design
FlagNewTraceView = "newTraceView"
2022-09-16 08:14:27 -05:00
// FlagCorrelations
// Correlations page
FlagCorrelations = "correlations"
2022-04-29 04:43:04 -05:00
// FlagCloudWatchDynamicLabels
// Use dynamic labels instead of alias patterns in CloudWatch datasource
FlagCloudWatchDynamicLabels = "cloudWatchDynamicLabels"
2022-05-03 11:02:20 -05:00
// FlagDatasourceQueryMultiStatus
// Introduce HTTP 207 Multi Status for api/ds/query
FlagDatasourceQueryMultiStatus = "datasourceQueryMultiStatus"
2022-05-04 08:54:09 -05:00
2022-05-05 15:46:18 -05:00
// FlagTraceToMetrics
// Enable trace to metrics links
FlagTraceToMetrics = "traceToMetrics"
2022-05-13 13:28:54 -05:00
2022-10-25 20:20:41 -05:00
// FlagNewDBLibrary
// Use jmoiron/sqlx rather than xorm for a few backend services
FlagNewDBLibrary = "newDBLibrary"
2022-05-21 19:44:12 -05:00
// FlagValidateDashboardsOnSave
// Validate dashboard JSON POSTed to api/dashboards/db
FlagValidateDashboardsOnSave = "validateDashboardsOnSave"
2022-05-24 15:17:11 -05:00
2022-06-10 19:12:56 -05:00
// FlagAutoMigrateGraphPanels
// Replace the angular graph panel with timeseries
FlagAutoMigrateGraphPanels = "autoMigrateGraphPanels"
2022-05-24 15:17:11 -05:00
// FlagPrometheusWideSeries
// Enable wide series responses in the Prometheus datasource
FlagPrometheusWideSeries = "prometheusWideSeries"
2022-05-31 14:03:34 -05:00
// FlagCanvasPanelNesting
// Allow elements nesting
FlagCanvasPanelNesting = "canvasPanelNesting"
2022-06-09 08:56:32 -05:00
2022-07-07 01:53:02 -05:00
// FlagScenes
// Experimental framework to build interactive dashboards
FlagScenes = "scenes"
2022-07-12 15:27:37 -05:00
// FlagDisableSecretsCompatibility
// Disable duplicated secret storage in legacy tables
FlagDisableSecretsCompatibility = "disableSecretsCompatibility"
2022-06-10 03:56:55 -05:00
// FlagLogRequestsInstrumentedAsUnknown
// Logs the path for requests that are instrumented as unknown
FlagLogRequestsInstrumentedAsUnknown = "logRequestsInstrumentedAsUnknown"
2022-06-10 05:13:31 -05:00
// FlagDataConnectionsConsole
2022-11-30 15:50:20 -06:00
// Enables a new top-level page called Connections. This page is an experiment that provides a better experience when you install and configure data sources and other plugins.
2022-06-10 05:13:31 -05:00
FlagDataConnectionsConsole = "dataConnectionsConsole"
2022-06-10 06:02:52 -05:00
// FlagInternationalization
2022-11-23 08:23:26 -06:00
// Enables internationalization
2022-06-10 06:02:52 -05:00
FlagInternationalization = "internationalization"
2022-06-20 09:25:43 -05:00
// FlagTopnav
2023-02-02 08:44:21 -06:00
// Displays new top nav and page layouts
2022-06-20 09:25:43 -05:00
FlagTopnav = "topnav"
2022-06-22 10:05:52 -05:00
2022-09-26 15:25:34 -05:00
// FlagGrpcServer
// Run GRPC server
FlagGrpcServer = "grpcServer"
2022-11-30 16:52:15 -06:00
// FlagEntityStore
// SQL-based entity store (requires storage flag also)
FlagEntityStore = "entityStore"
2022-10-06 14:48:53 -05:00
2022-11-28 05:39:12 -06:00
// FlagCloudWatchCrossAccountQuerying
2023-01-27 15:46:08 -06:00
// Enables cross-account querying in CloudWatch datasources
2022-11-28 05:39:12 -06:00
FlagCloudWatchCrossAccountQuerying = "cloudWatchCrossAccountQuerying"
2022-09-05 10:39:45 -05:00
// FlagRedshiftAsyncQueryDataSupport
// Enable async query data support for Redshift
FlagRedshiftAsyncQueryDataSupport = "redshiftAsyncQueryDataSupport"
// FlagAthenaAsyncQueryDataSupport
// Enable async query data support for Athena
FlagAthenaAsyncQueryDataSupport = "athenaAsyncQueryDataSupport"
2022-09-12 02:50:54 -05:00
2022-10-10 10:03:16 -05:00
// FlagNewPanelChromeUI
// Show updated look and feel of grafana-ui PanelChrome: panel header, icons, and menu
FlagNewPanelChromeUI = "newPanelChromeUI"
2022-10-07 13:31:45 -05:00
// FlagQueryLibrary
// Reusable query library
FlagQueryLibrary = "queryLibrary"
2022-10-12 06:43:35 -05:00
2022-10-14 08:51:05 -05:00
// FlagShowDashboardValidationWarnings
2022-11-30 15:50:20 -06:00
// Show warnings when dashboards do not validate against the schema
2022-10-14 08:51:05 -05:00
FlagShowDashboardValidationWarnings = "showDashboardValidationWarnings"
2022-10-12 06:43:35 -05:00
// FlagMysqlAnsiQuotes
2022-11-30 15:50:20 -06:00
// Use double quotes to escape keyword in a MySQL query
2022-10-12 06:43:35 -05:00
FlagMysqlAnsiQuotes = "mysqlAnsiQuotes"
2022-10-19 11:10:09 -05:00
// FlagAccessControlOnCall
// Access control primitives for OnCall
FlagAccessControlOnCall = "accessControlOnCall"
2022-10-26 09:15:14 -05:00
// FlagNestedFolders
// Enable folder nesting
FlagNestedFolders = "nestedFolders"
2022-11-10 09:35:15 -06:00
2022-11-14 09:47:46 -06:00
// FlagAccessTokenExpirationCheck
// Enable OAuth access_token expiration check and token refresh using the refresh_token
FlagAccessTokenExpirationCheck = "accessTokenExpirationCheck"
2022-11-10 09:35:15 -06:00
// FlagElasticsearchBackendMigration
// Use Elasticsearch as backend data source
FlagElasticsearchBackendMigration = "elasticsearchBackendMigration"
2022-11-29 03:57:47 -06:00
2022-12-07 17:29:38 -06:00
// FlagDatasourceOnboarding
// Enable data source onboarding page
FlagDatasourceOnboarding = "datasourceOnboarding"
2022-11-29 23:50:59 -06:00
// FlagSecureSocksDatasourceProxy
// Enable secure socks tunneling for supported core datasources
FlagSecureSocksDatasourceProxy = "secureSocksDatasourceProxy"
2022-11-29 03:57:47 -06:00
// FlagAuthnService
// Use new auth service to perform authentication
FlagAuthnService = "authnService"
2022-12-07 03:55:48 -06:00
2022-12-19 09:00:15 -06:00
// FlagDisablePrometheusExemplarSampling
// Disable Prometheus examplar sampling
FlagDisablePrometheusExemplarSampling = "disablePrometheusExemplarSampling"
2022-12-14 08:44:14 -06:00
// FlagAlertingBacktesting
// Rule backtesting API for alerting
FlagAlertingBacktesting = "alertingBacktesting"
2023-01-13 17:29:29 -06:00
2023-01-24 03:43:44 -06:00
// FlagEditPanelCSVDragAndDrop
// Enables drag and drop for CSV and Excel files
FlagEditPanelCSVDragAndDrop = "editPanelCSVDragAndDrop"
2023-01-13 17:29:29 -06:00
// FlagAlertingNoNormalState
// Stop maintaining state of alerts that are not firing
FlagAlertingNoNormalState = "alertingNoNormalState"
2023-01-20 09:29:23 -06:00
2023-01-27 10:30:25 -06:00
// FlagLogsSampleInExplore
// Enables access to the logs sample feature in Explore
FlagLogsSampleInExplore = "logsSampleInExplore"
2023-01-27 08:12:01 -06:00
// FlagLogsContextDatasourceUi
// Allow datasource to provide custom UI for context view
FlagLogsContextDatasourceUi = "logsContextDatasourceUi"
2023-02-09 11:27:02 -06:00
// FlagLokiQuerySplitting
// Split large interval queries into subqueries with smaller time intervals
FlagLokiQuerySplitting = "lokiQuerySplitting"
2023-02-21 04:19:07 -06:00
// FlagIndividualCookiePreferences
// Support overriding cookie preferences per user
FlagIndividualCookiePreferences = "individualCookiePreferences"
2023-03-01 04:26:19 -06:00
// FlagDrawerDataSourcePicker
// Changes the user experience for data source selection to a drawer.
FlagDrawerDataSourcePicker = "drawerDataSourcePicker"
2023-03-06 10:31:08 -06:00
// FlagTraceqlSearch
// Enables the 'TraceQL Search' tab for the Tempo datasource which provides a UI to generate TraceQL queries
FlagTraceqlSearch = "traceqlSearch"
2022-01-26 11:44:20 -06:00
)