mirror of https://github.com/prometheus/prometheus
Merge pull request #763 from joonas/joonas/fix_scrape_interval_default
Restore default ScrapeInterval of 1 minute instead of 10 secondspull/765/head
commit
93de548320
|
@ -50,7 +50,7 @@ var (
|
|||
|
||||
// The default global configuration.
|
||||
DefaultGlobalConfig = DefaultedGlobalConfig{
|
||||
ScrapeInterval: Duration(10 * time.Second),
|
||||
ScrapeInterval: Duration(1 * time.Minute),
|
||||
ScrapeTimeout: Duration(10 * time.Second),
|
||||
EvaluationInterval: Duration(1 * time.Minute),
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue