mirror of
https://github.com/grafana/grafana.git
synced 2025-01-01 11:47:05 -06:00
Updated conf description, metrics interval
This commit is contained in:
parent
a26436f59b
commit
44bc2b2d56
@ -1,7 +1,7 @@
|
||||
app_name = Grafana
|
||||
app_mode = production
|
||||
|
||||
# Once every 24 hours Grafana will report anonymous data to
|
||||
# Once every 1 hour Grafana will report anonymous data to
|
||||
# stats.grafana.org (https). No ip addresses are being tracked.
|
||||
# only simple counters to track running instances, dashboard
|
||||
# count and errors. It is very helpful to us.
|
||||
|
@ -5,10 +5,10 @@
|
||||
|
||||
app_mode = production
|
||||
|
||||
# Once every 24 hours Grafana will report anonymous data to
|
||||
# Once every 1 hour Grafana will report anonymous data to
|
||||
# stats.grafana.org (https). No ip addresses are being tracked.
|
||||
# only simple counters to track running instances, dashboard
|
||||
# count and errors. It is very helpful to us.
|
||||
# counts and errors. It is very helpful to us.
|
||||
# Change this option to false to disable reporting.
|
||||
reporting-enabled = true
|
||||
|
||||
|
@ -14,7 +14,7 @@ import (
|
||||
func StartUsageReportLoop() chan struct{} {
|
||||
M_Instance_Start.Inc(1)
|
||||
|
||||
ticker := time.NewTicker(10 * time.Minute)
|
||||
ticker := time.NewTicker(time.Hour)
|
||||
for {
|
||||
select {
|
||||
case <-ticker.C:
|
||||
|
Loading…
Reference in New Issue
Block a user