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 | 8159ee7 | 2017-06-20 11:50:34 +0200 | [diff] [blame] | 6 | - system.telegraf.agent.remote |
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} |
| 35 | influxdb_url: ${_param:prometheus_influxdb_url} |
| 36 | influxdb_db: ${_param:prometheus_influxdb_db} |
| 37 | influxdb_username: ${_param:prometheus_influxdb_username} |
| 38 | influxdb_password: ${_param:prometheus_influxdb_password} |
Bartosz Kupidura | 2c2d6d6 | 2017-06-05 11:37:41 +0200 | [diff] [blame] | 39 | remote_agent: |
| 40 | networks: |
| 41 | - monitoring |
| 42 | deploy: |
| 43 | replicas: 1 |
| 44 | labels: |
| 45 | com.mirantis.monitoring: "remote_agent" |
| 46 | restart_policy: |
| 47 | condition: any |
| 48 | labels: |
| 49 | com.mirantis.monitoring: "remote_agent" |
| 50 | image: ${_param:docker_image_remote_agent} |
| 51 | ports: |
| 52 | - 15014:${telegraf:remote_agent:output:prometheus_client:bind:port} |
| 53 | volumes: |
| 54 | - ${telegraf:remote_agent:dir:config}:/etc/telegraf |
| 55 | - ${telegraf:remote_agent:dir:config_d}:/etc/telegraf/telegraf.d |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 56 | alertmanager: |
Bartosz Kupidura | d856be8 | 2017-04-14 11:03:20 +0200 | [diff] [blame] | 57 | networks: |
| 58 | - monitoring |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 59 | deploy: |
| 60 | replicas: 2 |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 61 | labels: |
| 62 | com.mirantis.monitoring: "alertmanager" |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 63 | restart_policy: |
| 64 | condition: any |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 65 | labels: |
| 66 | com.mirantis.monitoring: "alertmanager" |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 67 | image: ${_param:docker_image_alertmanager} |
| 68 | ports: |
| 69 | - 15011:${prometheus:alertmanager:bind:port} |
| 70 | volumes: |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 71 | - ${prometheus:alertmanager:dir:config}:${_param:prometheus_alertmanager_config_directory} |
| 72 | - ${prometheus:alertmanager:dir:data}:${_param:prometheus_alertmanager_data_directory} |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 73 | environment: |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 74 | config_dir: ${_param:prometheus_alertmanager_config_directory} |
| 75 | data_dir: ${_param:prometheus_alertmanager_data_directory} |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 76 | bind_port: ${prometheus:alertmanager:bind:port} |
| 77 | bind_address: ${prometheus:alertmanager:bind:address} |
Bartosz Kupidura | d856be8 | 2017-04-14 11:03:20 +0200 | [diff] [blame] | 78 | discovery_domain: 'monitoring_alertmanager' |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 79 | pushgateway: |
Bartosz Kupidura | d856be8 | 2017-04-14 11:03:20 +0200 | [diff] [blame] | 80 | networks: |
| 81 | - monitoring |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 82 | deploy: |
| 83 | replicas: 2 |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 84 | labels: |
| 85 | com.mirantis.monitoring: "pushgateway" |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 86 | restart_policy: |
| 87 | condition: any |
Martin Polreich | eeaaa86 | 2017-05-10 09:57:14 +0200 | [diff] [blame] | 88 | environment: |
| 89 | bind_port: ${prometheus:pushgateway:bind:port} |
| 90 | bind_address: ${prometheus:pushgateway:bind:address} |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 91 | labels: |
| 92 | com.mirantis.monitoring: "pushgateway" |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 93 | image: ${_param:docker_image_pushgateway} |
| 94 | ports: |
Martin Polreich | eeaaa86 | 2017-05-10 09:57:14 +0200 | [diff] [blame] | 95 | - 15012:${prometheus:pushgateway:bind:port} |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 96 | server: |
Bartosz Kupidura | d856be8 | 2017-04-14 11:03:20 +0200 | [diff] [blame] | 97 | networks: |
| 98 | - monitoring |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 99 | deploy: |
| 100 | replicas: 1 |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 101 | labels: |
| 102 | com.mirantis.monitoring: "prometheus" |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 103 | restart_policy: |
| 104 | condition: any |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 105 | labels: |
| 106 | com.mirantis.monitoring: "prometheus" |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 107 | image: ${_param:docker_image_prometheus} |
| 108 | ports: |
| 109 | - 15010:${prometheus:server:bind:port} |
| 110 | volumes: |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 111 | - ${prometheus:server:dir:config}:${_param:prometheus_server_config_directory} |
| 112 | - ${prometheus:server:dir:data}:${_param:prometheus_server_data_directory} |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 113 | environment: |
Bartosz Kupidura | a7a3244 | 2017-05-17 15:59:08 +0200 | [diff] [blame] | 114 | config_dir: ${_param:prometheus_server_config_directory} |
| 115 | data_dir: ${_param:prometheus_server_data_directory} |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 116 | bind_port: ${prometheus:server:bind:port} |
| 117 | bind_address: ${prometheus:server:bind:address} |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 118 | storage_local_engine: ${prometheus:server:storage:local:engine} |
| 119 | storage_local_retention: ${prometheus:server:storage:local:retention} |
Bartosz Kupidura | 7e9b8b2 | 2017-05-25 10:59:09 +0200 | [diff] [blame] | 120 | storage_local_target_heap_size: ${prometheus:server:storage:local:target_heap_size} |
Filip Pytloun | 7d6144a | 2017-04-13 13:36:45 +0200 | [diff] [blame] | 121 | storage_local_num_fingerprint_mutexes: ${prometheus:server:storage:local:num_fingerprint_mutexes} |