|
| 1 | +version: "3.5" |
| 2 | + |
| 3 | +volumes: |
| 4 | + prometheus_data: {} |
| 5 | + grafana_data: {} |
| 6 | + alerta_db: {} |
| 7 | + |
| 8 | +networks: |
| 9 | + cosmos-monitoring: |
| 10 | + |
| 11 | +services: |
| 12 | + prometheus: |
| 13 | + profiles: ["prometheus", "monitor"] |
| 14 | + image: prom/prometheus:latest |
| 15 | + container_name: prometheus |
| 16 | + volumes: |
| 17 | + - type: volume |
| 18 | + source: prometheus_data |
| 19 | + target: /prometheus |
| 20 | + - type: bind |
| 21 | + source: ./prometheus |
| 22 | + target: /etc/prometheus |
| 23 | + read_only: true |
| 24 | + command: |
| 25 | + - '--config.file=/etc/prometheus/prometheus.yml' |
| 26 | + - '--storage.tsdb.path=/prometheus' |
| 27 | + - '--web.enable-lifecycle' |
| 28 | + ports: |
| 29 | + - 9090:9090 |
| 30 | + networks: |
| 31 | + - cosmos-monitoring |
| 32 | + restart: always |
| 33 | + |
| 34 | + # default login credentials: admin/admin |
| 35 | + grafana: |
| 36 | + profiles: ["grafana","monitor"] |
| 37 | + image: grafana/grafana:latest |
| 38 | + env_file: ./grafana/grafana.conf |
| 39 | + container_name: grafana |
| 40 | + volumes: |
| 41 | + - type: volume |
| 42 | + source: grafana_data |
| 43 | + target: /var/lib/grafana |
| 44 | + - ./grafana/datasource.yml:/etc/grafana/provisioning/datasources/datasource.yml |
| 45 | + - ./grafana/dashboards:/etc/grafana/provisioning/dashboards |
| 46 | + ports: |
| 47 | + - 9999:3000 |
| 48 | + networks: |
| 49 | + - cosmos-monitoring |
| 50 | + restart: always |
| 51 | + |
| 52 | + node-exporter: |
| 53 | + profiles: ["node_exporter","monitor"] |
| 54 | + image: prom/node-exporter:latest |
| 55 | + ports: |
| 56 | + - 9100:9100 |
| 57 | + networks: |
| 58 | + - cosmos-monitoring |
| 59 | + |
| 60 | + alertmanager: |
| 61 | + profiles: ["alert"] |
| 62 | + image: prom/alertmanager:latest |
| 63 | + container_name: alertmanager |
| 64 | + networks: |
| 65 | + - cosmos-monitoring |
| 66 | + ports: |
| 67 | + - 9093:9093 |
| 68 | + volumes: |
| 69 | + - type: bind |
| 70 | + source: ./prometheus/alert_manager |
| 71 | + target: /etc/alertmanager |
| 72 | + read_only: true |
| 73 | + command: [ |
| 74 | + '--config.file=/etc/alertmanager/alertmanager.yml', |
| 75 | + '--log.level=debug', |
| 76 | + ] |
| 77 | + hostname: 'alertmanager' |
| 78 | + restart: always |
| 79 | + |
| 80 | + alerta_db: |
| 81 | + profiles: ["alert"] |
| 82 | + image: postgres:11 |
| 83 | + container_name: alerta_db |
| 84 | + networks: |
| 85 | + - cosmos-monitoring |
| 86 | + volumes: |
| 87 | + - type: volume |
| 88 | + source: alerta_db |
| 89 | + target: /var/lib/postgresql/data |
| 90 | + environment: |
| 91 | + POSTGRES_DB: cosmos_monitoring |
| 92 | + POSTGRES_USER: admin |
| 93 | + POSTGRES_PASSWORD: admin |
| 94 | + hostname: 'alerta_db' |
| 95 | + restart: always |
| 96 | + |
| 97 | + alerta: |
| 98 | + profiles: ["alert"] |
| 99 | + image: alerta/alerta-web:latest |
| 100 | + container_name: alerta |
| 101 | + networks: |
| 102 | + - cosmos-monitoring |
| 103 | + ports: |
| 104 | + - 8083:8083 |
| 105 | + depends_on: |
| 106 | + - alerta_db |
| 107 | + volumes: |
| 108 | + - type: bind |
| 109 | + source: ./alerta/alertad.conf |
| 110 | + target: /app/alertad.conf |
| 111 | + read_only: true |
| 112 | + environment: |
| 113 | + - DATABASE_URL=postgres://postgres:postgres@alerta_db:5432/monitoring |
| 114 | + - PLUGINS=reject,blackout |
| 115 | + hostname: 'alerta' |
| 116 | + restart: always |
| 117 | + |
| 118 | + alertmanager-bot: |
| 119 | + profiles: ["alert"] |
| 120 | + command: |
| 121 | + - '--alertmanager.url=http://alertmanager:9093' |
| 122 | + - '--log.level=info' |
| 123 | + - '--store=bolt' |
| 124 | + - '--bolt.path=/data/bot.db' |
| 125 | + environment: |
| 126 | + TELEGRAM_ADMIN: ${TELEGRAM_ADMIN} |
| 127 | + TELEGRAM_TOKEN: ${TELEGRAM_TOKEN} |
| 128 | + image: metalmatze/alertmanager-bot:0.4.3 |
| 129 | + networks: |
| 130 | + - cosmos-monitoring |
| 131 | + ports: |
| 132 | + - 8080:8080 |
| 133 | + hostname: 'alertmanager-bot' |
| 134 | + restart: always |
| 135 | + volumes: |
| 136 | + - ./data:/data |
0 commit comments