Bartosz Kupidura | d856be8 | 2017-04-14 11:03:20 +0200 | [diff] [blame] | 1 | classes: |
Simon Pasquier | 6aa6b25 | 2017-05-22 14:23:58 +0200 | [diff] [blame] | 2 | - system.prometheus.alertmanager.container |
| 3 | - system.prometheus.pushgateway.container |
| 4 | - system.prometheus.remote_storage_adapter.container |
| 5 | - system.prometheus.server.container |
Simon Pasquier | fb9370f | 2017-07-06 15:31:20 +0200 | [diff] [blame] | 6 | - system.docker.swarm.stack.monitoring.remote_agent |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 7 | parameters: |
| 8 | docker: |
| 9 | client: |
| 10 | stack: |
| 11 | monitoring: |
| 12 | network: |
| 13 | monitoring: |
| 14 | driver: overlay |
| 15 | driver_opts: |
Bartosz Kupidura | d856be8 | 2017-04-14 11:03:20 +0200 | [diff] [blame] | 16 | encrypted: 1 |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 17 | service: |
Bartosz Kupidura | 93b7415 | 2017-06-12 09:57:10 +0200 | [diff] [blame] | 18 | remote_storage_adapter: |
| 19 | networks: |
| 20 | - monitoring |
| 21 | deploy: |
| 22 | replicas: 1 |
| 23 | labels: |
| 24 | com.mirantis.monitoring: "remote_storage_adapter" |
| 25 | restart_policy: |
| 26 | condition: any |
| 27 | labels: |
| 28 | com.mirantis.monitoring: "remote_storage_adapter" |
| 29 | image: ${_param:docker_image_remote_storage_adapter} |
| 30 | ports: |
| 31 | - 15015:${prometheus:remote_storage_adapter:bind:port} |
| 32 | environment: |
| 33 | bind_port: ${prometheus:remote_storage_adapter:bind:port} |
| 34 | bind_address: ${prometheus:remote_storage_adapter:bind:address} |
Bartosz Kupidura | be7862f | 2017-08-02 13:33:30 +0200 | [diff] [blame] | 35 | influxdb_retention_policy: 'lma' |
Bartosz Kupidura | 93b7415 | 2017-06-12 09:57:10 +0200 | [diff] [blame] | 36 | influxdb_url: ${_param:prometheus_influxdb_url} |
| 37 | influxdb_db: ${_param:prometheus_influxdb_db} |
| 38 | influxdb_username: ${_param:prometheus_influxdb_username} |
| 39 | influxdb_password: ${_param:prometheus_influxdb_password} |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 40 | alertmanager: |
Bartosz Kupidura | d856be8 | 2017-04-14 11:03:20 +0200 | [diff] [blame] | 41 | networks: |
| 42 | - monitoring |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 43 | deploy: |
| 44 | replicas: 2 |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 45 | labels: |
| 46 | com.mirantis.monitoring: "alertmanager" |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 47 | restart_policy: |
| 48 | condition: any |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 49 | labels: |
| 50 | com.mirantis.monitoring: "alertmanager" |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 51 | image: ${_param:docker_image_alertmanager} |
| 52 | ports: |
| 53 | - 15011:${prometheus:alertmanager:bind:port} |
| 54 | volumes: |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 55 | - ${prometheus:alertmanager:dir:config}:${_param:prometheus_alertmanager_config_directory} |
| 56 | - ${prometheus:alertmanager:dir:data}:${_param:prometheus_alertmanager_data_directory} |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 57 | environment: |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 58 | config_dir: ${_param:prometheus_alertmanager_config_directory} |
| 59 | data_dir: ${_param:prometheus_alertmanager_data_directory} |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 60 | bind_port: ${prometheus:alertmanager:bind:port} |
| 61 | bind_address: ${prometheus:alertmanager:bind:address} |
Bartosz Kupidura | d856be8 | 2017-04-14 11:03:20 +0200 | [diff] [blame] | 62 | discovery_domain: 'monitoring_alertmanager' |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 63 | pushgateway: |
Bartosz Kupidura | d856be8 | 2017-04-14 11:03:20 +0200 | [diff] [blame] | 64 | networks: |
| 65 | - monitoring |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 66 | deploy: |
| 67 | replicas: 2 |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 68 | labels: |
| 69 | com.mirantis.monitoring: "pushgateway" |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 70 | restart_policy: |
| 71 | condition: any |
Martin Polreich | eeaaa86 | 2017-05-10 09:57:14 +0200 | [diff] [blame] | 72 | environment: |
| 73 | bind_port: ${prometheus:pushgateway:bind:port} |
| 74 | bind_address: ${prometheus:pushgateway:bind:address} |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 75 | labels: |
| 76 | com.mirantis.monitoring: "pushgateway" |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 77 | image: ${_param:docker_image_pushgateway} |
| 78 | ports: |
Martin Polreich | eeaaa86 | 2017-05-10 09:57:14 +0200 | [diff] [blame] | 79 | - 15012:${prometheus:pushgateway:bind:port} |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 80 | server: |
Bartosz Kupidura | d856be8 | 2017-04-14 11:03:20 +0200 | [diff] [blame] | 81 | networks: |
| 82 | - monitoring |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 83 | deploy: |
| 84 | replicas: 1 |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 85 | labels: |
| 86 | com.mirantis.monitoring: "prometheus" |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 87 | restart_policy: |
| 88 | condition: any |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 89 | labels: |
| 90 | com.mirantis.monitoring: "prometheus" |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 91 | image: ${_param:docker_image_prometheus} |
| 92 | ports: |
| 93 | - 15010:${prometheus:server:bind:port} |
| 94 | volumes: |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 95 | - ${prometheus:server:dir:config}:${_param:prometheus_server_config_directory} |
| 96 | - ${prometheus:server:dir:data}:${_param:prometheus_server_data_directory} |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 97 | environment: |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 98 | config_dir: ${_param:prometheus_server_config_directory} |
| 99 | data_dir: ${_param:prometheus_server_data_directory} |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 100 | bind_port: ${prometheus:server:bind:port} |
| 101 | bind_address: ${prometheus:server:bind:address} |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 102 | storage_local_engine: ${prometheus:server:storage:local:engine} |
| 103 | storage_local_retention: ${prometheus:server:storage:local:retention} |
Bartosz Kupidura | 7e9b8b2 | 2017-05-25 10:59:09 +0200 | [diff] [blame] | 104 | storage_local_target_heap_size: ${prometheus:server:storage:local:target_heap_size} |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 105 | storage_local_num_fingerprint_mutexes: ${prometheus:server:storage:local:num_fingerprint_mutexes} |