You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
384 B
21 lines
384 B
## |
|
## prometheus.conf -- Prometheus Server Configuration |
|
## |
|
|
|
global: |
|
scrape_interval: "15s" |
|
evaluation_interval: "15s" |
|
external_labels: |
|
monitor: codelab |
|
foo: bar |
|
|
|
rule_files: |
|
- "*.rules" |
|
|
|
scrape_configs: |
|
- job_name: "prometheus" |
|
honor_labels: true |
|
scrape_interval: "5s" |
|
static_configs: |
|
- targets: [ "localhost:9090" ] |
|
|
|
|