mirror of
https://github.com/grafana/grafana.git
synced 2025-01-23 23:13:52 -06:00
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:
parent
fe7b594bbd
commit
98161be9ad
@ -1371,6 +1371,14 @@ Configures the Profile section.
|
||||
|
||||
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]
|
||||
|
||||
For detailed instructions, refer to [Internal Grafana metrics]({{< relref "view-server/internal-metrics.md" >}}).
|
||||
|
@ -153,6 +153,7 @@ export interface GrafanaConfig {
|
||||
alertingMinInterval: number;
|
||||
authProxyEnabled: boolean;
|
||||
exploreEnabled: boolean;
|
||||
queryHistoryEnabled: boolean;
|
||||
helpEnabled: boolean;
|
||||
profileEnabled: boolean;
|
||||
ldapEnabled: boolean;
|
||||
|
@ -47,6 +47,7 @@ export class GrafanaBootConfig implements GrafanaConfig {
|
||||
angularSupportEnabled = false;
|
||||
authProxyEnabled = false;
|
||||
exploreEnabled = false;
|
||||
queryHistoryEnabled = false;
|
||||
helpEnabled = false;
|
||||
profileEnabled = false;
|
||||
ldapEnabled = false;
|
||||
|
Loading…
Reference in New Issue
Block a user