prometheus/config/fixtures/minimal.conf.input
2013-02-17 01:01:50 +01:00

22 lines
267 B
Plaintext

global {
scrape_interval = "30s"
evaluation_interval = "30s"
labels {
monitor = "test"
}
rule_files = [
"prometheus.rules"
]
}
job {
name = "prometheus"
scrape_interval = "15s"
targets {
endpoints = [
"http://localhost:9090/metrics.json"
]
}
}