Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
50b140f6
Unverified
Commit
50b140f6
authored
Jan 28, 2019
by
Torkel Ödegaard
Committed by
GitHub
Jan 28, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #15082 from bergquist/explore_by_default
enables explore by default
parents
5768593d
6e672eb2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
conf/defaults.ini
+1
-1
conf/sample.ini
+1
-1
pkg/setting/setting.go
+1
-1
No files found.
conf/defaults.ini
View file @
50b140f6
...
...
@@ -504,7 +504,7 @@ concurrent_render_limit = 5
#################################### Explore #############################
[explore]
# Enable the Explore section
enabled
=
fals
e
enabled
=
tru
e
#################################### Internal Grafana Metrics ############
# Metrics available at HTTP API Url /metrics
...
...
conf/sample.ini
View file @
50b140f6
...
...
@@ -429,7 +429,7 @@ log_queries =
#################################### Explore #############################
[explore]
# Enable the Explore section
;enabled =
fals
e
;enabled =
tru
e
#################################### Internal Grafana Metrics ##########################
# Metrics available at HTTP API Url /metrics
...
...
pkg/setting/setting.go
View file @
50b140f6
...
...
@@ -718,7 +718,7 @@ func (cfg *Cfg) Load(args *CommandLineArgs) error {
AlertingNoDataOrNullValues
=
alerting
.
Key
(
"nodata_or_nullvalues"
)
.
MustString
(
"no_data"
)
explore
:=
iniFile
.
Section
(
"explore"
)
ExploreEnabled
=
explore
.
Key
(
"enabled"
)
.
MustBool
(
fals
e
)
ExploreEnabled
=
explore
.
Key
(
"enabled"
)
.
MustBool
(
tru
e
)
panels
:=
iniFile
.
Section
(
"panels"
)
cfg
.
EnableAlphaPanels
=
panels
.
Key
(
"enable_alpha"
)
.
MustBool
(
false
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment