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 |
Ksawery Dziekoński | 6ce6d81 | 2020-05-14 19:23:03 +0200 | [diff] [blame] | 12 | prometheus_cors_origin: ".*" |
Michal Kobus | d49a139 | 2020-06-10 12:10:33 +0200 | [diff] [blame] | 13 | prometheus_alert_resend_delay: "2m" |
Bartosz Kupidura | 5e9fb1d | 2018-01-26 13:35:38 +0100 | [diff] [blame] | 14 | prometheus: |
| 15 | server: |
| 16 | enabled: true |
| 17 | is_container: false |
Ksawery Dziekoński | 6ce6d81 | 2020-05-14 19:23:03 +0200 | [diff] [blame] | 18 | cors_origin: ${_param:prometheus_cors_origin} |
Bartosz Kupidura | 5e9fb1d | 2018-01-26 13:35:38 +0100 | [diff] [blame] | 19 | use_grains: |
| 20 | target: false |
| 21 | recording: false |
| 22 | alert: false |
| 23 | dir: |
| 24 | config: /etc/prometheus |
| 25 | data: /var/lib/prometheus/data |
| 26 | bind: |
| 27 | port: ${_param:prometheus_server_bind_port} |
| 28 | address: 0.0.0.0 |
| 29 | storage: |
| 30 | local: |
| 31 | retention: ${_param:prometheus_storage_retention} |
| 32 | alertmanager: |
| 33 | notification_queue_capacity: 10000 |
| 34 | config: |
| 35 | global: |
| 36 | scrape_interval: ${_param:prometheus_scrape_interval} |
| 37 | scrape_timeout: "15s" |
| 38 | evaluation_interval: ${_param:prometheus_evaluation_interval} |
| 39 | external_labels: |
| 40 | region: ${_param:prometheus_region_label} |