mirror of
https://github.com/grafana/grafana.git
synced 2024-12-01 04:59:15 -06:00
47 lines
1.0 KiB
YAML
47 lines
1.0 KiB
YAML
# my global config
|
|
global:
|
|
scrape_interval: 10s # By default, scrape targets every 15 seconds.
|
|
evaluation_interval: 10s # By default, scrape targets every 15 seconds.
|
|
# scrape_timeout is set to the global default (10s).
|
|
|
|
# Load and evaluate rules in this file every 'evaluation_interval' seconds.
|
|
#rule_files:
|
|
# - "alert.rules"
|
|
# - "first.rules"
|
|
# - "second.rules"
|
|
|
|
# alerting:
|
|
# alertmanagers:
|
|
# - scheme: http
|
|
# static_configs:
|
|
# - targets:
|
|
# - "127.0.0.1:9093"
|
|
|
|
scrape_configs:
|
|
- job_name: 'prometheus'
|
|
static_configs:
|
|
- targets: ['localhost:9090']
|
|
|
|
- job_name: 'grafana'
|
|
dns_sd_configs:
|
|
- names:
|
|
- 'grafana'
|
|
type: 'A'
|
|
port: 3000
|
|
refresh_interval: 10s
|
|
|
|
- job_name: 'mysql'
|
|
dns_sd_configs:
|
|
- names:
|
|
- 'mysqld-exporter'
|
|
type: 'A'
|
|
port: 9104
|
|
refresh_interval: 10s
|
|
|
|
- job_name: 'loki'
|
|
dns_sd_configs:
|
|
- names:
|
|
- 'loki'
|
|
type: 'A'
|
|
port: 3100
|
|
refresh_interval: 10s |