mirror of
https://github.com/grafana/grafana.git
synced 2024-11-29 12:14:08 -06:00
InfluxDB: Introduce influxqlStreamingParser feature toggle (#78834)
introduce influxqlStreamingParser feature toggle
This commit is contained in:
parent
b3deef8f4b
commit
5845f14075
@ -103,6 +103,7 @@ Experimental features might be changed or removed without prior notice.
|
||||
| `editPanelCSVDragAndDrop` | Enables drag and drop for CSV and Excel files |
|
||||
| `lokiQuerySplittingConfig` | Give users the option to configure split durations for Loki queries |
|
||||
| `individualCookiePreferences` | Support overriding cookie preferences per user |
|
||||
| `influxqlStreamingParser` | Enable streaming JSON parser for InfluxDB datasource InfluxQL query language |
|
||||
| `lokiLogsDataplane` | Changes logs responses from Loki to be compliant with the dataplane specification. |
|
||||
| `disableSSEDataplane` | Disables dataplane specific processing in server side expressions. |
|
||||
| `alertStateHistoryLokiSecondary` | Enable Grafana to write alert state history to an external Loki instance in addition to Grafana annotations. |
|
||||
|
@ -65,6 +65,7 @@ export interface FeatureToggles {
|
||||
individualCookiePreferences?: boolean;
|
||||
prometheusMetricEncyclopedia?: boolean;
|
||||
influxdbBackendMigration?: boolean;
|
||||
influxqlStreamingParser?: boolean;
|
||||
clientTokenRotation?: boolean;
|
||||
prometheusDataplane?: boolean;
|
||||
lokiMetricDataplane?: boolean;
|
||||
|
@ -358,6 +358,12 @@ var (
|
||||
Expression: "true", // enabled by default
|
||||
AllowSelfServe: falsePtr,
|
||||
},
|
||||
{
|
||||
Name: "influxqlStreamingParser",
|
||||
Description: "Enable streaming JSON parser for InfluxDB datasource InfluxQL query language",
|
||||
Stage: FeatureStageExperimental,
|
||||
Owner: grafanaObservabilityMetricsSquad,
|
||||
},
|
||||
{
|
||||
Name: "clientTokenRotation",
|
||||
Description: "Replaces the current in-request token rotation so that the client initiates the rotation",
|
||||
|
@ -46,6 +46,7 @@ lokiQuerySplittingConfig,experimental,@grafana/observability-logs,false,false,fa
|
||||
individualCookiePreferences,experimental,@grafana/backend-platform,false,false,false,false
|
||||
prometheusMetricEncyclopedia,GA,@grafana/observability-metrics,false,false,false,true
|
||||
influxdbBackendMigration,GA,@grafana/observability-metrics,false,false,false,true
|
||||
influxqlStreamingParser,experimental,@grafana/observability-metrics,false,false,false,false
|
||||
clientTokenRotation,GA,@grafana/identity-access-team,false,false,false,false
|
||||
prometheusDataplane,GA,@grafana/observability-metrics,false,false,false,false
|
||||
lokiMetricDataplane,GA,@grafana/observability-logs,false,false,false,false
|
||||
|
|
@ -195,6 +195,10 @@ const (
|
||||
// Query InfluxDB InfluxQL without the proxy
|
||||
FlagInfluxdbBackendMigration = "influxdbBackendMigration"
|
||||
|
||||
// FlagInfluxqlStreamingParser
|
||||
// Enable streaming JSON parser for InfluxDB datasource InfluxQL query language
|
||||
FlagInfluxqlStreamingParser = "influxqlStreamingParser"
|
||||
|
||||
// FlagClientTokenRotation
|
||||
// Replaces the current in-request token rotation so that the client initiates the rotation
|
||||
FlagClientTokenRotation = "clientTokenRotation"
|
||||
|
Loading…
Reference in New Issue
Block a user