2017-03-09 06:12:27 -05:00
|
|
|
applications:
|
|
|
|
- prometheus
|
|
|
|
classes:
|
|
|
|
- service.prometheus.support
|
|
|
|
parameters:
|
2017-09-08 09:11:53 -04:00
|
|
|
_param:
|
|
|
|
prometheus_evaluation_interval: "15s"
|
|
|
|
prometheus_region_label: "region1"
|
|
|
|
prometheus_scrape_interval: "15s"
|
|
|
|
prometheus_storage_retention: "360h"
|
2017-03-09 06:12:27 -05:00
|
|
|
prometheus:
|
|
|
|
server:
|
|
|
|
enabled: true
|
2018-01-26 07:35:38 -05:00
|
|
|
is_container: true
|
|
|
|
use_grains:
|
|
|
|
target: true
|
|
|
|
recording: true
|
|
|
|
alert: true
|
2017-05-17 10:00:52 -04:00
|
|
|
dir:
|
|
|
|
config: /srv/volumes/prometheus/server
|
2017-07-28 08:33:36 -04:00
|
|
|
config_in_container: /srv/prometheus
|
2017-05-17 10:00:52 -04:00
|
|
|
data: /srv/volumes/local/prometheus/server
|
2017-03-09 06:12:27 -05:00
|
|
|
bind:
|
|
|
|
port: 9090
|
|
|
|
address: 0.0.0.0
|
|
|
|
storage:
|
|
|
|
local:
|
2017-09-08 09:11:53 -04:00
|
|
|
retention: ${_param:prometheus_storage_retention}
|
2017-03-09 06:12:27 -05:00
|
|
|
alertmanager:
|
|
|
|
notification_queue_capacity: 10000
|
|
|
|
config:
|
|
|
|
global:
|
2017-09-08 09:11:53 -04:00
|
|
|
scrape_interval: ${_param:prometheus_scrape_interval}
|
2017-03-09 06:12:27 -05:00
|
|
|
scrape_timeout: "15s"
|
2017-09-08 09:11:53 -04:00
|
|
|
evaluation_interval: ${_param:prometheus_evaluation_interval}
|
2017-03-09 06:12:27 -05:00
|
|
|
external_labels:
|
2017-09-08 09:11:53 -04:00
|
|
|
region: ${_param:prometheus_region_label}
|