Bartosz Kupidura | 5e9fb1d | 2018-01-26 13:35:38 +0100 | [diff] [blame] | 1 | applications: |
| 2 | - prometheus |
| 3 | classes: |
| 4 | - service.prometheus.support |
| 5 | parameters: |
| 6 | _param: |
| 7 | prometheus_evaluation_interval: "15s" |
| 8 | prometheus_region_label: "region1" |
| 9 | prometheus_scrape_interval: "15s" |
| 10 | prometheus_storage_retention: "4320h" |
| 11 | prometheus_server_bind_port: 9090 |
| 12 | prometheus: |
| 13 | server: |
| 14 | enabled: true |
| 15 | is_container: false |
| 16 | use_grains: |
| 17 | target: false |
| 18 | recording: false |
| 19 | alert: false |
| 20 | dir: |
| 21 | config: /etc/prometheus |
| 22 | data: /var/lib/prometheus/data |
| 23 | bind: |
| 24 | port: ${_param:prometheus_server_bind_port} |
| 25 | address: 0.0.0.0 |
| 26 | storage: |
| 27 | local: |
| 28 | retention: ${_param:prometheus_storage_retention} |
| 29 | alertmanager: |
| 30 | notification_queue_capacity: 10000 |
| 31 | config: |
| 32 | global: |
| 33 | scrape_interval: ${_param:prometheus_scrape_interval} |
| 34 | scrape_timeout: "15s" |
| 35 | evaluation_interval: ${_param:prometheus_evaluation_interval} |
| 36 | external_labels: |
| 37 | region: ${_param:prometheus_region_label} |