mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -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`.
|
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" >}}).
|
||||||
|
@ -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;
|
||||||
|
@ -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;
|
||||||
|
Loading…
Reference in New Issue
Block a user