Query history: Pass config to frontend and add missing documentation (#48204)

* Query history: Pass config to frontend and add missing documentation

* Update
This commit is contained in:
Ivana Huckova 2022-04-26 11:15:08 +02:00 committed by GitHub
parent fe7b594bbd
commit 98161be9ad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 0 deletions

View File

@ -1371,6 +1371,14 @@ Configures the Profile section.
Enable or disable the Profile section. Default is `enabled`. Enable or disable the Profile section. Default is `enabled`.
## [query_history]
Configures Query history in Explore.
### enabled
Enable or disable the Query history. Default is `disabled`.
## [metrics] ## [metrics]
For detailed instructions, refer to [Internal Grafana metrics]({{< relref "view-server/internal-metrics.md" >}}). For detailed instructions, refer to [Internal Grafana metrics]({{< relref "view-server/internal-metrics.md" >}}).

View File

@ -153,6 +153,7 @@ export interface GrafanaConfig {
alertingMinInterval: number; alertingMinInterval: number;
authProxyEnabled: boolean; authProxyEnabled: boolean;
exploreEnabled: boolean; exploreEnabled: boolean;
queryHistoryEnabled: boolean;
helpEnabled: boolean; helpEnabled: boolean;
profileEnabled: boolean; profileEnabled: boolean;
ldapEnabled: boolean; ldapEnabled: boolean;

View File

@ -47,6 +47,7 @@ export class GrafanaBootConfig implements GrafanaConfig {
angularSupportEnabled = false; angularSupportEnabled = false;
authProxyEnabled = false; authProxyEnabled = false;
exploreEnabled = false; exploreEnabled = false;
queryHistoryEnabled = false;
helpEnabled = false; helpEnabled = false;
profileEnabled = false; profileEnabled = false;
ldapEnabled = false; ldapEnabled = false;