Elasticsearch: Run Explore queries trough data source backend (#65339)

Elasticsearch: Execute Explore queries trough backend
This commit is contained in:
Ivana Huckova
2023-03-27 15:52:27 +02:00
committed by GitHub
parent cb68b1e0d1
commit f3da91f53f
6 changed files with 34 additions and 17 deletions

View File

@@ -334,7 +334,7 @@ var (
},
{
Name: "disablePrometheusExemplarSampling",
Description: "Disable Prometheus examplar sampling",
Description: "Disable Prometheus exemplar sampling",
State: FeatureStateStable,
Owner: grafanaObservabilityMetricsSquad,
},
@@ -441,5 +441,11 @@ var (
State: FeatureStateAlpha,
Owner: grafanaAuthnzSquad,
},
{
Name: "disableElasticsearchBackendExploreQuery",
Description: "Disable executing of Elasticsearch Explore queries trough backend",
State: FeatureStateBeta,
Owner: grafanaObservabilityLogsSquad,
},
}
)

View File

@@ -65,3 +65,4 @@ prometheusMetricEncyclopedia,alpha,@grafana/observability-metrics,false,false,fa
timeSeriesTable,alpha,@grafana/app-o11y,false,false,false,true
influxdbBackendMigration,alpha,@grafana/observability-metrics,false,false,false,true
clientTokenRotation,alpha,@grafana/grafana-authnz-team,false,false,false,false
disableElasticsearchBackendExploreQuery,beta,@grafana/observability-logs,false,false,false,false
1 Name State Owner requiresDevMode RequiresLicense RequiresRestart FrontendOnly
65 timeSeriesTable alpha @grafana/app-o11y false false false true
66 influxdbBackendMigration alpha @grafana/observability-metrics false false false true
67 clientTokenRotation alpha @grafana/grafana-authnz-team false false false false
68 disableElasticsearchBackendExploreQuery beta @grafana/observability-logs false false false false

View File

@@ -208,7 +208,7 @@ const (
FlagAuthnService = "authnService"
// FlagDisablePrometheusExemplarSampling
// Disable Prometheus examplar sampling
// Disable Prometheus exemplar sampling
FlagDisablePrometheusExemplarSampling = "disablePrometheusExemplarSampling"
// FlagAlertingBacktesting
@@ -270,4 +270,8 @@ const (
// FlagClientTokenRotation
// Replaces the current in-request token rotation so that the client initiates the rotation
FlagClientTokenRotation = "clientTokenRotation"
// FlagDisableElasticsearchBackendExploreQuery
// Disable executing of Elasticsearch Explore queries trough backend
FlagDisableElasticsearchBackendExploreQuery = "disableElasticsearchBackendExploreQuery"
)