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 09:44:20 -08:00
package featuremgmt
const (
// FlagTrimDefaults
// Use cue schema to remove values that will be applied automatically
FlagTrimDefaults = "trimDefaults"
2022-05-24 10:34:47 +02:00
// FlagDisableEnvelopeEncryption
// Disable envelope encryption (emergency only)
FlagDisableEnvelopeEncryption = "disableEnvelopeEncryption"
2022-01-26 09:44:20 -08:00
// FlagLiveServiceWebWorker
// This will use a webworker thread to processes events rather than the main thread
FlagLiveServiceWebWorker = "live-service-web-worker"
// FlagQueryOverLive
2022-11-30 16:50:20 -05:00
// Use Grafana Live WebSocket to execute backend queries
2022-01-26 09:44:20 -08:00
FlagQueryOverLive = "queryOverLive"
2022-02-15 10:26:03 -08:00
// FlagPanelTitleSearch
// Search for dashboards using panel title
FlagPanelTitleSearch = "panelTitleSearch"
2022-04-07 10:30:19 -08:00
// FlagPublicDashboards
2022-11-30 16:50:20 -05:00
// Enables public access to dashboards
2022-04-07 10:30:19 -08:00
FlagPublicDashboards = "publicDashboards"
2023-01-03 13:45:15 -06:00
// FlagPublicDashboardsEmailSharing
2023-03-07 16:42:24 -03:00
// Enables public dashboard sharing to be restricted to only allowed emails
2023-01-03 13:45:15 -06:00
FlagPublicDashboardsEmailSharing = "publicDashboardsEmailSharing"
2023-06-19 12:03:51 +02:00
// FlagLokiExperimentalStreaming
// Support new streaming approach for loki (prototype, needs special loki build)
FlagLokiExperimentalStreaming = "lokiExperimentalStreaming"
2022-03-01 14:46:52 -08:00
2022-02-03 13:53:23 +02:00
// FlagFeatureHighlights
2022-11-30 16:50:20 -05:00
// Highlight Grafana Enterprise features
2022-02-03 13:53:23 +02:00
FlagFeatureHighlights = "featureHighlights"
2022-02-15 18:54:27 +02:00
// FlagMigrationLocking
// Lock database during migrations
FlagMigrationLocking = "migrationLocking"
2022-03-14 15:07:45 -04:00
2022-03-17 10:19:23 -07:00
// FlagStorage
// Configurable storage for dashboards, datasources, and resources
FlagStorage = "storage"
2022-09-16 15:14:27 +02:00
// FlagCorrelations
// Correlations page
FlagCorrelations = "correlations"
2022-05-03 18:02:20 +02:00
// FlagDatasourceQueryMultiStatus
// Introduce HTTP 207 Multi Status for api/ds/query
FlagDatasourceQueryMultiStatus = "datasourceQueryMultiStatus"
2022-05-04 09:54:09 -04:00
2022-05-05 14:46:18 -06:00
// FlagTraceToMetrics
// Enable trace to metrics links
FlagTraceToMetrics = "traceToMetrics"
2022-05-13 14:28:54 -04:00
2022-10-25 18:20:41 -07:00
// FlagNewDBLibrary
// Use jmoiron/sqlx rather than xorm for a few backend services
FlagNewDBLibrary = "newDBLibrary"
2023-03-22 21:02:36 -07:00
// FlagAutoMigrateOldPanels
// Migrate old angular panels to supported versions (graph, table-old, worldmap, etc)
FlagAutoMigrateOldPanels = "autoMigrateOldPanels"
2022-06-10 17:12:56 -07:00
2023-03-23 08:43:45 -07:00
// FlagDisableAngular
// 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.
FlagDisableAngular = "disableAngular"
2022-05-31 14:03:34 -05:00
// FlagCanvasPanelNesting
// Allow elements nesting
FlagCanvasPanelNesting = "canvasPanelNesting"
2022-06-09 06:56:32 -07:00
2022-07-07 08:53:02 +02:00
// FlagScenes
// Experimental framework to build interactive dashboards
FlagScenes = "scenes"
2022-07-12 17:27:37 -03:00
// FlagDisableSecretsCompatibility
// Disable duplicated secret storage in legacy tables
FlagDisableSecretsCompatibility = "disableSecretsCompatibility"
2022-06-10 10:56:55 +02:00
// FlagLogRequestsInstrumentedAsUnknown
// Logs the path for requests that are instrumented as unknown
FlagLogRequestsInstrumentedAsUnknown = "logRequestsInstrumentedAsUnknown"
2022-06-10 12:13:31 +02:00
// FlagDataConnectionsConsole
2022-11-30 16:50:20 -05: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 12:13:31 +02:00
FlagDataConnectionsConsole = "dataConnectionsConsole"
2022-06-10 12:02:52 +01:00
2022-06-20 16:25:43 +02:00
// FlagTopnav
2023-07-26 11:07:18 +00:00
// Enables topnav support in external plugins. The new Grafana navigation cannot be disabled.
2022-06-20 16:25:43 +02:00
FlagTopnav = "topnav"
2022-06-22 17:05:52 +02:00
2023-09-18 12:57:11 +02:00
// FlagDockedMegaMenu
// Enable support for a persistent (docked) navigation menu
FlagDockedMegaMenu = "dockedMegaMenu"
2022-09-27 00:25:34 +04:00
// FlagGrpcServer
2023-04-04 08:42:07 +01:00
// Run the GRPC server
2022-09-27 00:25:34 +04:00
FlagGrpcServer = "grpcServer"
2022-11-30 14:52:15 -08:00
// FlagEntityStore
// SQL-based entity store (requires storage flag also)
FlagEntityStore = "entityStore"
2022-10-06 12:48:53 -07:00
2022-11-28 12:39:12 +01:00
// FlagCloudWatchCrossAccountQuerying
2023-01-27 16:46:08 -05:00
// Enables cross-account querying in CloudWatch datasources
2022-11-28 12:39:12 +01:00
FlagCloudWatchCrossAccountQuerying = "cloudWatchCrossAccountQuerying"
2022-09-05 08:39:45 -07:00
// FlagRedshiftAsyncQueryDataSupport
// Enable async query data support for Redshift
FlagRedshiftAsyncQueryDataSupport = "redshiftAsyncQueryDataSupport"
// FlagAthenaAsyncQueryDataSupport
// Enable async query data support for Athena
FlagAthenaAsyncQueryDataSupport = "athenaAsyncQueryDataSupport"
2022-09-12 09:50:54 +02:00
2023-09-25 14:19:12 -04:00
// FlagCloudwatchNewRegionsHandler
// Refactor of /regions endpoint, no user-facing changes
FlagCloudwatchNewRegionsHandler = "cloudwatchNewRegionsHandler"
2022-10-14 14:51:05 +01:00
// FlagShowDashboardValidationWarnings
2022-11-30 16:50:20 -05:00
// Show warnings when dashboards do not validate against the schema
2022-10-14 14:51:05 +01:00
FlagShowDashboardValidationWarnings = "showDashboardValidationWarnings"
2022-10-12 19:43:35 +08:00
// FlagMysqlAnsiQuotes
2022-11-30 16:50:20 -05:00
// Use double quotes to escape keyword in a MySQL query
2022-10-12 19:43:35 +08:00
FlagMysqlAnsiQuotes = "mysqlAnsiQuotes"
2022-10-19 18:10:09 +02:00
// FlagAccessControlOnCall
// Access control primitives for OnCall
FlagAccessControlOnCall = "accessControlOnCall"
2022-10-26 10:15:14 -04:00
// FlagNestedFolders
// Enable folder nesting
FlagNestedFolders = "nestedFolders"
2022-11-10 16:35:15 +01:00
2023-06-28 10:40:29 +01:00
// FlagNestedFolderPicker
2023-09-07 11:41:00 +01:00
// Enables the new folder picker to work with nested folders. Requires the nestedFolders feature flag
2023-06-28 10:40:29 +01:00
FlagNestedFolderPicker = "nestedFolderPicker"
2022-11-14 16:47:46 +01:00
// FlagAccessTokenExpirationCheck
// Enable OAuth access_token expiration check and token refresh using the refresh_token
FlagAccessTokenExpirationCheck = "accessTokenExpirationCheck"
2023-03-28 12:42:23 +03:00
// FlagEmptyDashboardPage
// Enable the redesigned user interface of a dashboard page that includes no panels
FlagEmptyDashboardPage = "emptyDashboardPage"
2022-12-19 16:00:15 +01:00
// FlagDisablePrometheusExemplarSampling
2023-03-27 15:52:27 +02:00
// Disable Prometheus exemplar sampling
2022-12-19 16:00:15 +01:00
FlagDisablePrometheusExemplarSampling = "disablePrometheusExemplarSampling"
2022-12-14 09:44:14 -05:00
// FlagAlertingBacktesting
// Rule backtesting API for alerting
FlagAlertingBacktesting = "alertingBacktesting"
2023-01-13 18:29:29 -05:00
2023-01-24 10:43:44 +01:00
// FlagEditPanelCSVDragAndDrop
// Enables drag and drop for CSV and Excel files
FlagEditPanelCSVDragAndDrop = "editPanelCSVDragAndDrop"
2023-01-13 18:29:29 -05:00
// FlagAlertingNoNormalState
// Stop maintaining state of alerts that are not firing
FlagAlertingNoNormalState = "alertingNoNormalState"
2023-01-20 16:29:23 +01:00
2023-01-27 15:12:01 +01:00
// FlagLogsContextDatasourceUi
// Allow datasource to provide custom UI for context view
FlagLogsContextDatasourceUi = "logsContextDatasourceUi"
2023-02-09 18:27:02 +01:00
// FlagLokiQuerySplitting
// Split large interval queries into subqueries with smaller time intervals
FlagLokiQuerySplitting = "lokiQuerySplitting"
2023-02-21 11:19:07 +01:00
2023-03-20 16:51:36 +01:00
// FlagLokiQuerySplittingConfig
// Give users the option to configure split durations for Loki queries
FlagLokiQuerySplittingConfig = "lokiQuerySplittingConfig"
2023-02-21 11:19:07 +01:00
// FlagIndividualCookiePreferences
// Support overriding cookie preferences per user
FlagIndividualCookiePreferences = "individualCookiePreferences"
2023-03-01 11:26:19 +01:00
2023-07-25 13:27:02 +01:00
// FlagGcomOnlyExternalOrgRoleSync
// Prohibits a user from changing organization roles synced with Grafana Cloud auth provider
FlagGcomOnlyExternalOrgRoleSync = "gcomOnlyExternalOrgRoleSync"
2023-03-07 13:41:05 -05:00
// FlagPrometheusMetricEncyclopedia
2023-06-23 09:20:23 -04:00
// Adds the metrics explorer component to the Prometheus query builder as an option in metric select
2023-03-07 13:41:05 -05:00
FlagPrometheusMetricEncyclopedia = "prometheusMetricEncyclopedia"
2023-03-10 14:41:06 +02:00
// FlagTimeSeriesTable
// Enable time series table transformer & sparkline cell type
FlagTimeSeriesTable = "timeSeriesTable"
2023-03-15 18:12:16 +01:00
2023-04-03 09:07:17 -05:00
// FlagPrometheusResourceBrowserCache
// Displays browser caching options in Prometheus data source configuration
FlagPrometheusResourceBrowserCache = "prometheusResourceBrowserCache"
2023-03-15 18:12:16 +01:00
// FlagInfluxdbBackendMigration
// Query InfluxDB InfluxQL without the proxy
FlagInfluxdbBackendMigration = "influxdbBackendMigration"
2023-03-23 14:39:04 +01:00
// FlagClientTokenRotation
// Replaces the current in-request token rotation so that the client initiates the rotation
FlagClientTokenRotation = "clientTokenRotation"
2023-03-27 15:52:27 +02:00
2023-03-29 11:26:32 -04:00
// FlagPrometheusDataplane
// Changes responses to from Prometheus to be compliant with the dataplane specification. In particular it sets the numeric Field.Name from 'Value' to the value of the `__name__` label when present.
FlagPrometheusDataplane = "prometheusDataplane"
2023-03-30 13:53:21 -05:00
2023-04-13 15:07:08 +02:00
// FlagLokiMetricDataplane
2023-04-25 12:46:07 +02:00
// Changes metric responses from Loki to be compliant with the dataplane specification.
2023-04-13 15:07:08 +02:00
FlagLokiMetricDataplane = "lokiMetricDataplane"
2023-07-13 09:58:00 +02:00
// FlagLokiLogsDataplane
// Changes logs responses from Loki to be compliant with the dataplane specification.
FlagLokiLogsDataplane = "lokiLogsDataplane"
2023-04-24 13:29:54 -04:00
// FlagDataplaneFrontendFallback
// Support dataplane contract field name change for transformations and field name matchers where the name is different
FlagDataplaneFrontendFallback = "dataplaneFrontendFallback"
// FlagDisableSSEDataplane
// Disables dataplane specific processing in server side expressions.
FlagDisableSSEDataplane = "disableSSEDataplane"
2023-03-30 13:53:21 -05:00
// FlagAlertStateHistoryLokiSecondary
// Enable Grafana to write alert state history to an external Loki instance in addition to Grafana annotations.
FlagAlertStateHistoryLokiSecondary = "alertStateHistoryLokiSecondary"
2023-05-30 15:15:22 +02:00
// FlagAlertingNotificationsPoliciesMatchingInstances
// Enables the preview of matching instances for notification policies
FlagAlertingNotificationsPoliciesMatchingInstances = "alertingNotificationsPoliciesMatchingInstances"
2023-03-30 13:53:21 -05:00
// FlagAlertStateHistoryLokiPrimary
// Enable a remote Loki instance as the primary source for state history reads.
FlagAlertStateHistoryLokiPrimary = "alertStateHistoryLokiPrimary"
// FlagAlertStateHistoryLokiOnly
// Disable Grafana alerts from emitting annotations when a remote Loki instance is available.
FlagAlertStateHistoryLokiOnly = "alertStateHistoryLokiOnly"
2023-03-31 15:38:09 +02:00
// FlagUnifiedRequestLog
// Writes error logs to the request logger
FlagUnifiedRequestLog = "unifiedRequestLog"
2023-04-03 18:53:38 +02:00
// FlagRenderAuthJWT
// Uses JWT-based auth for rendering instead of relying on remote cache
FlagRenderAuthJWT = "renderAuthJWT"
2023-04-05 14:57:24 +02:00
2023-04-11 15:21:19 +02:00
// FlagExternalServiceAuth
// Starts an OAuth2 authentication provider for external services
FlagExternalServiceAuth = "externalServiceAuth"
2023-06-06 16:12:09 +03:00
// FlagRefactorVariablesTimeRange
// Refactor time range variables flow to reduce number of API calls made when query variables are chained
FlagRefactorVariablesTimeRange = "refactorVariablesTimeRange"
2023-04-12 12:30:33 -04:00
// FlagUseCachingService
// When turned on, the new query and resource caching implementation using a wire service inject will be used in place of the previous middleware implementation
FlagUseCachingService = "useCachingService"
2023-04-14 11:24:35 +02:00
// FlagEnableElasticsearchBackendQuerying
// Enable the processing of queries and responses in the Elasticsearch data source through backend
FlagEnableElasticsearchBackendQuerying = "enableElasticsearchBackendQuerying"
2023-04-13 17:07:43 +03:00
2023-04-14 13:01:10 +02:00
// FlagAdvancedDataSourcePicker
2023-05-12 17:09:30 +02:00
// Enable a new data source picker with contextual information, recently used order and advanced mode
2023-04-14 13:01:10 +02:00
FlagAdvancedDataSourcePicker = "advancedDataSourcePicker"
2023-04-14 13:59:31 -04:00
2023-05-04 17:35:10 -07:00
// FlagFaroDatasourceSelector
2023-05-23 07:42:22 -07:00
// Enable the data source selector within the Frontend Apps section of the Frontend Observability
2023-05-04 17:35:10 -07:00
FlagFaroDatasourceSelector = "faroDatasourceSelector"
2023-04-24 17:46:31 +03:00
// FlagEnableDatagridEditing
// Enables the edit functionality in the datagrid panel
FlagEnableDatagridEditing = "enableDatagridEditing"
2023-05-10 15:37:04 +02:00
2023-05-23 09:18:00 -04:00
// FlagDataSourcePageHeader
// Apply new pageHeader UI in data source edit page
FlagDataSourcePageHeader = "dataSourcePageHeader"
2023-05-10 15:37:04 +02:00
// FlagExtraThemes
// Enables extra themes
FlagExtraThemes = "extraThemes"
2023-06-02 12:52:36 +02:00
// FlagLokiPredefinedOperations
// Adds predefined query operations to Loki query editor
FlagLokiPredefinedOperations = "lokiPredefinedOperations"
2023-06-05 10:51:36 +02:00
// FlagPluginsFrontendSandbox
// Enables the plugins frontend sandbox
FlagPluginsFrontendSandbox = "pluginsFrontendSandbox"
2023-06-06 10:28:52 -06:00
2023-07-06 17:43:20 +03:00
// FlagDashboardEmbed
// Allow embedding dashboard for external use in Code editors
FlagDashboardEmbed = "dashboardEmbed"
2023-07-05 13:48:25 +02:00
// FlagFrontendSandboxMonitorOnly
// Enables monitor only in the plugin frontend sandbox (if enabled)
FlagFrontendSandboxMonitorOnly = "frontendSandboxMonitorOnly"
2023-06-06 10:28:52 -06:00
// FlagSqlDatasourceDatabaseSelection
// Enables previous SQL data source dataset dropdown behavior
FlagSqlDatasourceDatabaseSelection = "sqlDatasourceDatabaseSelection"
2023-06-12 09:49:52 -04:00
2023-07-21 13:03:56 +01:00
// FlagLokiFormatQuery
// Enables the ability to format Loki queries
FlagLokiFormatQuery = "lokiFormatQuery"
2023-06-12 09:49:52 -04:00
// FlagCloudWatchLogsMonacoEditor
// Enables the Monaco editor for CloudWatch Logs queries
FlagCloudWatchLogsMonacoEditor = "cloudWatchLogsMonacoEditor"
2023-06-14 08:34:22 -04:00
2023-06-15 12:25:34 +01:00
// FlagExploreScrollableLogsContainer
// Improves the scrolling behavior of logs in Explore
FlagExploreScrollableLogsContainer = "exploreScrollableLogsContainer"
2023-06-14 08:34:22 -04:00
// FlagRecordedQueriesMulti
// Enables writing multiple items from a single query within Recorded Queries
FlagRecordedQueriesMulti = "recordedQueriesMulti"
2023-06-16 19:55:49 +02:00
Plugins: Angular detector: Remote patterns fetching (#69843)
* Plugins: Angular detector: Remote patterns fetching
* Renamed PatternType to GCOMPatternType
* Renamed files
* Renamed more files
* Moved files again
* Add type checks, unexport GCOM structs
* Cache failures, update log messages, fix GCOM URL
* Fail silently for unknown pattern types, update docstrings
* Fix tests
* Rename gcomPattern.Value to gcomPattern.Pattern
* Refactoring
* Add FlagPluginsRemoteAngularDetectionPatterns feature flag
* Fix tests
* Re-generate feature flags
* Add TestProvideInspector, renamed TestDefaultStaticDetectorsInspector
* Add TestProvideInspector
* Add TestContainsBytesDetector and TestRegexDetector
* Renamed getter to provider
* More tests
* TestStaticDetectorsProvider, TestSequenceDetectorsProvider
* GCOM tests
* Lint
* Made detector.detect unexported, updated docstrings
* Allow changing grafana.com URL
* Fix API path, add more logs
* Update tryUpdateRemoteDetectors docstring
* Use angulardetector http client
* Return false, nil if module.js does not exist
* Chore: Split angualrdetector into angularinspector and angulardetector packages
Moved files around, changed references and fixed tests:
- Split the old angulardetector package into angular/angulardetector and angular/angularinspector
- angulardetector provides the detection structs/interfaces (Detector, DetectorsProvider...)
- angularinspector provides the actual angular detection service used directly in pluginsintegration
- Exported most of the stuff that was private and now put into angulardetector, as it is not required by angularinspector
* Renamed detector.go -> angulardetector.go and inspector.go -> angularinspector.go
Forgot to rename those two files to match the package's names
* Renamed angularinspector.ProvideInspector to angularinspector.ProvideService
* Renamed "harcoded" to "static" and "remote" to "dynamic"
from PR review, matches the same naming schema used for signing keys fetching
* Fix merge conflict on updated angular patterns
* Removed GCOM cache
* Renamed Detect to DetectAngular and Detector to AngularDetector
* Fix call to NewGCOMDetectorsProvider in newDynamicInspector
* Removed unused test function newError500GCOMScenario
* Added angularinspector service definition in pluginsintegration
* Moved dynamic inspector into pluginsintegration
* Move gcom angulardetectorsprovider into pluginsintegration
* Log errUnknownPatternType at debug level
* re-generate feature flags
* fix error log
2023-06-26 15:33:21 +02:00
// FlagPluginsDynamicAngularDetectionPatterns
// Enables fetching Angular detection patterns for plugins from GCOM and fallback to hardcoded ones
FlagPluginsDynamicAngularDetectionPatterns = "pluginsDynamicAngularDetectionPatterns"
2023-06-27 12:22:13 +02:00
// FlagVizAndWidgetSplit
// Split panels between vizualizations and widgets
FlagVizAndWidgetSplit = "vizAndWidgetSplit"
2023-07-05 14:39:49 -05:00
// FlagPrometheusIncrementalQueryInstrumentation
// Adds RudderStack events to incremental queries
FlagPrometheusIncrementalQueryInstrumentation = "prometheusIncrementalQueryInstrumentation"
2023-07-06 17:06:11 +02:00
2023-07-12 15:52:42 +02:00
// FlagLogsExploreTableVisualisation
// A table visualisation for logs in Explore
FlagLogsExploreTableVisualisation = "logsExploreTableVisualisation"
2023-07-06 17:06:11 +02:00
// FlagAwsDatasourcesTempCredentials
// Support temporary security credentials in AWS plugins for Grafana Cloud customers
FlagAwsDatasourcesTempCredentials = "awsDatasourcesTempCredentials"
2023-07-12 18:35:49 +02:00
// FlagTransformationsRedesign
// Enables the transformations redesign
FlagTransformationsRedesign = "transformationsRedesign"
2023-07-13 13:37:50 -04:00
2023-07-24 10:22:47 +02:00
// FlagToggleLabelsInLogsUI
// Enable toggleable filters in log details view
FlagToggleLabelsInLogsUI = "toggleLabelsInLogsUI"
2023-07-13 13:37:50 -04:00
// FlagMlExpressions
// Enable support for Machine Learning in server-side expressions
FlagMlExpressions = "mlExpressions"
2023-07-14 15:10:46 +01:00
2023-07-26 14:33:16 +01:00
// FlagTraceQLStreaming
// Enables response streaming of TraceQL queries of the Tempo data source
FlagTraceQLStreaming = "traceQLStreaming"
2023-07-14 15:22:10 -04:00
2023-08-28 15:02:12 +01:00
// FlagMetricsSummary
// Enables metrics summary queries in the Tempo data source
FlagMetricsSummary = "metricsSummary"
2023-07-14 15:22:10 -04:00
// FlagGrafanaAPIServer
// Enable Kubernetes API Server for Grafana resources
FlagGrafanaAPIServer = "grafanaAPIServer"
2023-07-18 16:43:32 -04:00
// FlagFeatureToggleAdminPage
// Enable admin page for managing feature toggles from the Grafana front-end
FlagFeatureToggleAdminPage = "featureToggleAdminPage"
2023-07-21 15:23:01 +01:00
2023-07-21 11:34:07 -04:00
// FlagAwsAsyncQueryCaching
// Enable caching for async queries for Redshift and Athena. Requires that the `useCachingService` feature toggle is enabled and the datasource has caching and async query support enabled
FlagAwsAsyncQueryCaching = "awsAsyncQueryCaching"
2023-07-21 15:23:01 +01:00
// FlagSplitScopes
// Support faster dashboard and folder search by splitting permission scopes into parts
FlagSplitScopes = "splitScopes"
2023-07-24 09:50:49 -04:00
// FlagAzureMonitorDataplane
// Adds dataplane compliant frame metadata in the Azure Monitor datasource
FlagAzureMonitorDataplane = "azureMonitorDataplane"
2023-07-26 12:09:53 -04:00
2023-08-02 10:39:25 +03:00
// FlagPermissionsFilterRemoveSubquery
// Alternative permission filter implementation that does not use subqueries for fetching the dashboard folder
FlagPermissionsFilterRemoveSubquery = "permissionsFilterRemoveSubquery"
2023-07-26 12:09:53 -04:00
// FlagPrometheusConfigOverhaulAuth
// Update the Prometheus configuration page with the new auth component
FlagPrometheusConfigOverhaulAuth = "prometheusConfigOverhaulAuth"
2023-07-26 12:44:12 -04:00
// FlagConfigurableSchedulerTick
// Enable changing the scheduler base interval via configuration option unified_alerting.scheduler_tick_interval
FlagConfigurableSchedulerTick = "configurableSchedulerTick"
2023-08-02 19:27:43 +03:00
// FlagInfluxdbSqlSupport
// Enable InfluxDB SQL query language support with new querying UI
FlagInfluxdbSqlSupport = "influxdbSqlSupport"
2023-08-04 11:08:14 +02:00
// FlagNoBasicRole
// Enables a new role that has no permissions by default
FlagNoBasicRole = "noBasicRole"
2023-08-15 10:27:15 -04:00
// FlagAlertingNoDataErrorExecution
// Changes how Alerting state manager handles execution of NoData/Error
FlagAlertingNoDataErrorExecution = "alertingNoDataErrorExecution"
2023-08-29 16:05:47 +02:00
// FlagAngularDeprecationUI
// Display new Angular deprecation-related UI features
FlagAngularDeprecationUI = "angularDeprecationUI"
2023-08-30 22:22:05 +02:00
// FlagDashgpt
// Enable AI powered features in dashboards
FlagDashgpt = "dashgpt"
2023-08-31 09:47:47 +02:00
// FlagReportingRetries
// Enables rendering retries for the reporting feature
FlagReportingRetries = "reportingRetries"
2023-09-07 11:41:00 +01:00
// FlagNewBrowseDashboards
// New browse/manage dashboards UI
FlagNewBrowseDashboards = "newBrowseDashboards"
2023-09-07 16:02:07 -04:00
// FlagSseGroupByDatasource
// Send query to the same datasource in a single request when using server side expressions
FlagSseGroupByDatasource = "sseGroupByDatasource"
2023-09-11 12:13:13 +02:00
// FlagRequestInstrumentationStatusSource
// Include a status source label for request metrics and logs
FlagRequestInstrumentationStatusSource = "requestInstrumentationStatusSource"
2023-09-13 20:32:01 +02:00
2023-09-19 03:34:01 -06:00
// FlagLokiRunQueriesInParallel
// Enables running Loki queries in parallel
FlagLokiRunQueriesInParallel = "lokiRunQueriesInParallel"
2023-09-13 20:32:01 +02:00
// FlagWargamesTesting
// Placeholder feature flag for internal testing
FlagWargamesTesting = "wargamesTesting"
2023-09-14 09:58:04 -03:00
// FlagAlertingInsights
// Show the new alerting insights landing page
FlagAlertingInsights = "alertingInsights"
2023-09-21 13:36:32 +02:00
2023-09-22 10:50:13 +02:00
// FlagExternalCorePlugins
// Allow core plugins to be loaded as external
FlagExternalCorePlugins = "externalCorePlugins"
2023-09-21 13:36:32 +02:00
// FlagPluginsAPIMetrics
// Sends metrics of public grafana packages usage by plugins
FlagPluginsAPIMetrics = "pluginsAPIMetrics"
2023-09-22 10:52:28 +02:00
// FlagHttpSLOLevels
// Adds SLO level to http request metrics
FlagHttpSLOLevels = "httpSLOLevels"
2023-09-25 17:21:28 +02:00
// FlagIdForwarding
// Generate signed id token for identity that can be forwarded to plugins and external services
FlagIdForwarding = "idForwarding"
2023-09-27 10:41:48 -04:00
// FlagCloudWatchWildCardDimensionValues
// Fetches dimension values from CloudWatch to correctly label wildcard dimensions
FlagCloudWatchWildCardDimensionValues = "cloudWatchWildCardDimensionValues"
2023-09-28 09:26:37 +02:00
// FlagExternalServiceAccounts
// Automatic service account and token setup for plugins
FlagExternalServiceAccounts = "externalServiceAccounts"
2022-01-26 09:44:20 -08:00
)