2015-05-07 07:47:18 -07:00
|
|
|
# my global config
|
2015-05-19 09:12:58 -07:00
|
|
|
global:
|
2016-11-21 00:53:59 -08:00
|
|
|
scrape_interval: 15s # Set the scrape interval to every 15 seconds. Default is every 1 minute.
|
|
|
|
evaluation_interval: 15s # Evaluate rules every 15 seconds. The default is every 1 minute.
|
2015-05-07 07:47:18 -07:00
|
|
|
# scrape_timeout is set to the global default (10s).
|
|
|
|
|
2015-10-02 14:00:10 -07:00
|
|
|
# Attach these labels to any time series or alerts when communicating with
|
|
|
|
# external systems (federation, remote storage, Alertmanager).
|
|
|
|
external_labels:
|
2015-05-19 09:12:58 -07:00
|
|
|
monitor: 'codelab-monitor'
|
2015-05-07 07:47:18 -07:00
|
|
|
|
2016-08-02 23:29:51 -07:00
|
|
|
# Load rules once and periodically evaluate them according to the global 'evaluation_interval'.
|
2015-05-07 07:47:18 -07:00
|
|
|
rule_files:
|
|
|
|
# - "first.rules"
|
|
|
|
# - "second.rules"
|
|
|
|
|
2016-02-24 12:06:36 -08:00
|
|
|
# A scrape configuration containing exactly one endpoint to scrape:
|
2015-05-07 07:47:18 -07:00
|
|
|
# Here it's Prometheus itself.
|
|
|
|
scrape_configs:
|
|
|
|
# The job name is added as a label `job=<job_name>` to any timeseries scraped from this config.
|
2015-05-19 09:12:58 -07:00
|
|
|
- job_name: 'prometheus'
|
2015-05-07 07:47:18 -07:00
|
|
|
|
|
|
|
# metrics_path defaults to '/metrics'
|
|
|
|
# scheme defaults to 'http'.
|
|
|
|
|
2016-06-14 00:39:34 -07:00
|
|
|
static_configs:
|
2015-10-02 14:00:10 -07:00
|
|
|
- targets: ['localhost:9090']
|