mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
122 lines
3.5 KiB
YAML
122 lines
3.5 KiB
YAML
version: '3.5'
|
|
services:
|
|
vmagent:
|
|
container_name: vmagent
|
|
image: victoriametrics/vmagent:v1.87.0
|
|
depends_on:
|
|
- "vminsert"
|
|
ports:
|
|
- 8429:8429
|
|
volumes:
|
|
- vmagentdata:/vmagentdata
|
|
- ./prometheus-cluster.yml:/etc/prometheus/prometheus.yml
|
|
command:
|
|
- '--promscrape.config=/etc/prometheus/prometheus.yml'
|
|
- '--remoteWrite.url=http://vminsert:8480/insert/0/prometheus/'
|
|
restart: always
|
|
|
|
grafana:
|
|
container_name: grafana
|
|
image: grafana/grafana:9.2.7
|
|
depends_on:
|
|
- "vmselect"
|
|
ports:
|
|
- 3000:3000
|
|
restart: always
|
|
volumes:
|
|
- grafanadata:/var/lib/grafana
|
|
- ./provisioning/:/etc/grafana/provisioning/
|
|
- ./../../dashboards/victoriametrics-cluster.json:/var/lib/grafana/dashboards/vm.json
|
|
- ./../../dashboards/vmagent.json:/var/lib/grafana/dashboards/vmagent.json
|
|
- ./../../dashboards/vmalert.json:/var/lib/grafana/dashboards/vmalert.json
|
|
|
|
vmstorage-1:
|
|
container_name: vmstorage-1
|
|
image: victoriametrics/vmstorage:v1.87.0-cluster
|
|
ports:
|
|
- 8482
|
|
- 8400
|
|
- 8401
|
|
volumes:
|
|
- strgdata-1:/storage
|
|
command:
|
|
- '--storageDataPath=/storage'
|
|
restart: always
|
|
vmstorage-2:
|
|
container_name: vmstorage-2
|
|
image: victoriametrics/vmstorage:v1.87.0-cluster
|
|
ports:
|
|
- 8482
|
|
- 8400
|
|
- 8401
|
|
volumes:
|
|
- strgdata-2:/storage
|
|
command:
|
|
- '--storageDataPath=/storage'
|
|
restart: always
|
|
vminsert:
|
|
container_name: vminsert
|
|
image: victoriametrics/vminsert:v1.87.0-cluster
|
|
depends_on:
|
|
- "vmstorage-1"
|
|
- "vmstorage-2"
|
|
command:
|
|
- '--storageNode=vmstorage-1.87.0'
|
|
- '--storageNode=vmstorage-2:8400'
|
|
ports:
|
|
- 8480:8480
|
|
restart: always
|
|
vmselect:
|
|
container_name: vmselect
|
|
image: victoriametrics/vmselect:v1.87.0-cluster
|
|
depends_on:
|
|
- "vmstorage-1"
|
|
- "vmstorage-2"
|
|
command:
|
|
- '--storageNode=vmstorage-1:8401'
|
|
- '--storageNode=vmstorage-2:8401'
|
|
- '--vmalert.proxyURL=http://vmalert:8880'
|
|
ports:
|
|
- 8481:8481
|
|
restart: always
|
|
|
|
vmalert:
|
|
container_name: vmalert
|
|
image: victoriametrics/vmalert:v1.87.0
|
|
depends_on:
|
|
- "vmselect"
|
|
ports:
|
|
- 8880:8880
|
|
volumes:
|
|
- ./alerts-cluster.yml:/etc/alerts/alerts.yml
|
|
- ./alerts-health.yml:/etc/alerts/alerts-health.yml
|
|
- ./alerts-vmagent.yml:/etc/alerts/alerts-vmagent.yml
|
|
- ./alerts-vmalert.yml:/etc/alerts/alerts-vmalert.yml
|
|
command:
|
|
- '--datasource.url=http://vmselect:8481/select/0/prometheus'
|
|
- '--remoteRead.url=http://vmselect:8481/select/0/prometheus'
|
|
- '--remoteWrite.url=http://vminsert:8480/insert/0/prometheus'
|
|
- '--notifier.url=http://alertmanager:9093/'
|
|
- '--rule=/etc/alerts/*.yml'
|
|
# display source of alerts in grafana
|
|
- '-external.url=http://127.0.0.1:3000' #grafana outside container
|
|
# when copypaste the line below be aware of '$$' for escaping in '$expr'
|
|
- '--external.alert.source=explore?orgId=1&left=["now-1h","now","VictoriaMetrics",{"expr":{{$$expr|jsonEscape|queryEscape}} },{"mode":"Metrics"},{"ui":[true,true,true,"none"]}]'
|
|
restart: always
|
|
|
|
alertmanager:
|
|
container_name: alertmanager
|
|
image: prom/alertmanager:v0.25.0
|
|
volumes:
|
|
- ./alertmanager.yml:/config/alertmanager.yml
|
|
command:
|
|
- '--config.file=/config/alertmanager.yml'
|
|
ports:
|
|
- 9093:9093
|
|
restart: always
|
|
|
|
volumes:
|
|
vmagentdata: {}
|
|
strgdata-1: {}
|
|
strgdata-2: {}
|
|
grafanadata: {}
|