mirror of
https://github.com/prometheus/prometheus.git
synced 2025-01-26 21:22:33 -08:00
Merge pull request #763 from joonas/joonas/fix_scrape_interval_default
Restore default ScrapeInterval of 1 minute instead of 10 seconds
This commit is contained in:
commit
93de548320
|
@ -50,7 +50,7 @@ var (
|
||||||
|
|
||||||
// The default global configuration.
|
// The default global configuration.
|
||||||
DefaultGlobalConfig = DefaultedGlobalConfig{
|
DefaultGlobalConfig = DefaultedGlobalConfig{
|
||||||
ScrapeInterval: Duration(10 * time.Second),
|
ScrapeInterval: Duration(1 * time.Minute),
|
||||||
ScrapeTimeout: Duration(10 * time.Second),
|
ScrapeTimeout: Duration(10 * time.Second),
|
||||||
EvaluationInterval: Duration(1 * time.Minute),
|
EvaluationInterval: Duration(1 * time.Minute),
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue