mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Loki: Enable new log context query editor (#67131)
Loki: Enable new log context editor
This commit is contained in:
parent
e2e243d1b6
commit
2fb1c64e80
@ -34,6 +34,7 @@ Some stable features are enabled by default. You can disable a stable feature by
|
|||||||
| `emptyDashboardPage` | Enable the redesigned user interface of a dashboard page that includes no panels | Yes |
|
| `emptyDashboardPage` | Enable the redesigned user interface of a dashboard page that includes no panels | Yes |
|
||||||
| `disablePrometheusExemplarSampling` | Disable Prometheus exemplar sampling | |
|
| `disablePrometheusExemplarSampling` | Disable Prometheus exemplar sampling | |
|
||||||
| `logsSampleInExplore` | Enables access to the logs sample feature in Explore | Yes |
|
| `logsSampleInExplore` | Enables access to the logs sample feature in Explore | Yes |
|
||||||
|
| `logsContextDatasourceUi` | Allow datasource to provide custom UI for context view | Yes |
|
||||||
| `useCachingService` | 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 | |
|
| `useCachingService` | 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 | |
|
||||||
|
|
||||||
## Beta feature toggles
|
## Beta feature toggles
|
||||||
@ -88,7 +89,6 @@ Alpha features might be changed or removed without prior notice.
|
|||||||
| `authnService` | Use new auth service to perform authentication |
|
| `authnService` | Use new auth service to perform authentication |
|
||||||
| `alertingBacktesting` | Rule backtesting API for alerting |
|
| `alertingBacktesting` | Rule backtesting API for alerting |
|
||||||
| `editPanelCSVDragAndDrop` | Enables drag and drop for CSV and Excel files |
|
| `editPanelCSVDragAndDrop` | Enables drag and drop for CSV and Excel files |
|
||||||
| `logsContextDatasourceUi` | Allow datasource to provide custom UI for context view |
|
|
||||||
| `lokiQuerySplitting` | Split large interval queries into subqueries with smaller time intervals |
|
| `lokiQuerySplitting` | Split large interval queries into subqueries with smaller time intervals |
|
||||||
| `lokiQuerySplittingConfig` | Give users the option to configure split durations for Loki queries |
|
| `lokiQuerySplittingConfig` | Give users the option to configure split durations for Loki queries |
|
||||||
| `individualCookiePreferences` | Support overriding cookie preferences per user |
|
| `individualCookiePreferences` | Support overriding cookie preferences per user |
|
||||||
|
@ -354,9 +354,10 @@ var (
|
|||||||
{
|
{
|
||||||
Name: "logsContextDatasourceUi",
|
Name: "logsContextDatasourceUi",
|
||||||
Description: "Allow datasource to provide custom UI for context view",
|
Description: "Allow datasource to provide custom UI for context view",
|
||||||
State: FeatureStateAlpha,
|
State: FeatureStateStable,
|
||||||
FrontendOnly: true,
|
FrontendOnly: true,
|
||||||
Owner: grafanaObservabilityLogsSquad,
|
Owner: grafanaObservabilityLogsSquad,
|
||||||
|
Expression: "true", // turned on by default
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
Name: "lokiQuerySplitting",
|
Name: "lokiQuerySplitting",
|
||||||
|
@ -51,7 +51,7 @@ alertingBacktesting,alpha,@grafana/alerting-squad,false,false,false,false
|
|||||||
editPanelCSVDragAndDrop,alpha,@grafana/grafana-bi-squad,false,false,false,true
|
editPanelCSVDragAndDrop,alpha,@grafana/grafana-bi-squad,false,false,false,true
|
||||||
alertingNoNormalState,beta,@grafana/alerting-squad,false,false,false,false
|
alertingNoNormalState,beta,@grafana/alerting-squad,false,false,false,false
|
||||||
logsSampleInExplore,stable,@grafana/observability-logs,false,false,false,true
|
logsSampleInExplore,stable,@grafana/observability-logs,false,false,false,true
|
||||||
logsContextDatasourceUi,alpha,@grafana/observability-logs,false,false,false,true
|
logsContextDatasourceUi,stable,@grafana/observability-logs,false,false,false,true
|
||||||
lokiQuerySplitting,alpha,@grafana/observability-logs,false,false,false,true
|
lokiQuerySplitting,alpha,@grafana/observability-logs,false,false,false,true
|
||||||
lokiQuerySplittingConfig,alpha,@grafana/observability-logs,false,false,false,true
|
lokiQuerySplittingConfig,alpha,@grafana/observability-logs,false,false,false,true
|
||||||
individualCookiePreferences,alpha,@grafana/backend-platform,false,false,false,false
|
individualCookiePreferences,alpha,@grafana/backend-platform,false,false,false,false
|
||||||
|
|
Loading…
Reference in New Issue
Block a user