mirror of
https://github.com/prometheus/prometheus.git
synced 2024-11-10 23:54:05 -08:00
22 lines
267 B
Plaintext
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"
|
||
|
]
|
||
|
}
|
||
|
}
|