33 lines
592 B
YAML
33 lines
592 B
YAML
---
|
|
# Prometheus config file
|
|
|
|
# my global config
|
|
global:
|
|
scrape_interval: 15s
|
|
evaluation_interval: 30s
|
|
# scrape_timeout is set to the global default (10s).
|
|
|
|
external_labels:
|
|
monitor: test
|
|
foo: bar
|
|
|
|
|
|
scrape_configs:
|
|
|
|
- job_name: glusterfs
|
|
metrics_path: /metrics
|
|
scrape_interval: 120s
|
|
scrape_timeout: 14s
|
|
static_configs:
|
|
- targets:
|
|
- 'cubox-i.xai-corp.net:9189'
|
|
- 'home.xai-corp.net:9189'
|
|
|
|
- job_name: fluentd
|
|
metrics_path: /metrics
|
|
scrape_interval: 60s
|
|
scrape_timeout: 9s
|
|
static_configs:
|
|
- targets:
|
|
- 'fluentd_exporter:9309'
|