2022-09-21 08:48:38 +00:00
|
|
|
services:
|
2024-02-20 17:31:45 +00:00
|
|
|
# Metrics collector.
|
|
|
|
# It scrapes targets defined in --promscrape.config
|
|
|
|
# And forward them to --remoteWrite.url
|
2022-09-21 08:48:38 +00:00
|
|
|
vmagent:
|
|
|
|
container_name: vmagent
|
2024-11-18 13:56:32 +00:00
|
|
|
image: victoriametrics/vmagent:v1.106.1
|
2022-09-21 08:48:38 +00:00
|
|
|
depends_on:
|
|
|
|
- "vminsert"
|
|
|
|
ports:
|
|
|
|
- 8429:8429
|
|
|
|
volumes:
|
|
|
|
- vmagentdata:/vmagentdata
|
|
|
|
- ./prometheus-cluster.yml:/etc/prometheus/prometheus.yml
|
|
|
|
command:
|
2024-10-21 21:42:30 +00:00
|
|
|
- "--promscrape.config=/etc/prometheus/prometheus.yml"
|
|
|
|
- "--remoteWrite.url=http://vminsert:8480/insert/0/prometheus/"
|
2022-09-21 08:48:38 +00:00
|
|
|
restart: always
|
|
|
|
|
2024-02-20 17:31:45 +00:00
|
|
|
# Grafana instance configured with VictoriaMetrics as datasource
|
2022-09-21 08:48:38 +00:00
|
|
|
grafana:
|
|
|
|
container_name: grafana
|
2024-04-29 10:10:24 +00:00
|
|
|
image: grafana/grafana:10.4.2
|
2022-09-21 08:48:38 +00:00
|
|
|
depends_on:
|
2023-10-01 19:20:43 +00:00
|
|
|
- "vmauth"
|
2022-09-21 08:48:38 +00:00
|
|
|
ports:
|
|
|
|
- 3000:3000
|
|
|
|
restart: always
|
|
|
|
volumes:
|
|
|
|
- grafanadata:/var/lib/grafana
|
2024-09-27 17:08:05 +00:00
|
|
|
- ./provisioning/datasources/prometheus-datasource/cluster.yml:/etc/grafana/provisioning/datasources/cluster.yml
|
2024-01-22 14:45:31 +00:00
|
|
|
- ./provisioning/dashboards:/etc/grafana/provisioning/dashboards
|
2022-09-21 08:48:38 +00:00
|
|
|
- ./../../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
|
2024-06-25 09:15:29 +00:00
|
|
|
- ./../../dashboards/vmauth.json:/var/lib/grafana/dashboards/vmauth.json
|
2022-09-21 08:48:38 +00:00
|
|
|
|
2024-02-20 17:31:45 +00:00
|
|
|
# vmstorage shards. Each shard receives 1/N of all metrics sent to vminserts,
|
|
|
|
# where N is number of vmstorages (2 in this case).
|
2022-09-21 08:48:38 +00:00
|
|
|
vmstorage-1:
|
|
|
|
container_name: vmstorage-1
|
2024-11-18 13:56:32 +00:00
|
|
|
image: victoriametrics/vmstorage:v1.106.1-cluster
|
2022-09-21 08:48:38 +00:00
|
|
|
ports:
|
|
|
|
- 8482
|
|
|
|
- 8400
|
|
|
|
- 8401
|
|
|
|
volumes:
|
|
|
|
- strgdata-1:/storage
|
|
|
|
command:
|
2024-10-21 21:42:30 +00:00
|
|
|
- "--storageDataPath=/storage"
|
2022-09-21 08:48:38 +00:00
|
|
|
restart: always
|
|
|
|
vmstorage-2:
|
|
|
|
container_name: vmstorage-2
|
2024-11-18 13:56:32 +00:00
|
|
|
image: victoriametrics/vmstorage:v1.106.1-cluster
|
2022-09-21 08:48:38 +00:00
|
|
|
ports:
|
|
|
|
- 8482
|
|
|
|
- 8400
|
|
|
|
- 8401
|
|
|
|
volumes:
|
|
|
|
- strgdata-2:/storage
|
|
|
|
command:
|
2024-10-21 21:42:30 +00:00
|
|
|
- "--storageDataPath=/storage"
|
2022-09-21 08:48:38 +00:00
|
|
|
restart: always
|
2023-09-26 08:50:10 +00:00
|
|
|
|
2024-02-20 17:31:45 +00:00
|
|
|
# vminsert is ingestion frontend. It receives metrics pushed by vmagent,
|
|
|
|
# pre-process them and distributes across configured vmstorage shards.
|
2022-09-21 08:48:38 +00:00
|
|
|
vminsert:
|
|
|
|
container_name: vminsert
|
2024-11-18 13:56:32 +00:00
|
|
|
image: victoriametrics/vminsert:v1.106.1-cluster
|
2022-09-21 08:48:38 +00:00
|
|
|
depends_on:
|
|
|
|
- "vmstorage-1"
|
|
|
|
- "vmstorage-2"
|
|
|
|
command:
|
2024-10-21 21:42:30 +00:00
|
|
|
- "--storageNode=vmstorage-1:8400"
|
|
|
|
- "--storageNode=vmstorage-2:8400"
|
2022-09-21 08:48:38 +00:00
|
|
|
ports:
|
|
|
|
- 8480:8480
|
|
|
|
restart: always
|
2023-09-26 08:50:10 +00:00
|
|
|
|
2024-02-20 17:31:45 +00:00
|
|
|
# vmselect is a query fronted. It serves read queries in MetricsQL or PromQL.
|
|
|
|
# vmselect collects results from configured `--storageNode` shards.
|
2023-09-26 08:50:10 +00:00
|
|
|
vmselect-1:
|
|
|
|
container_name: vmselect-1
|
2024-11-18 13:56:32 +00:00
|
|
|
image: victoriametrics/vmselect:v1.106.1-cluster
|
2023-09-26 08:50:10 +00:00
|
|
|
depends_on:
|
|
|
|
- "vmstorage-1"
|
|
|
|
- "vmstorage-2"
|
|
|
|
command:
|
2024-10-21 21:42:30 +00:00
|
|
|
- "--storageNode=vmstorage-1:8401"
|
|
|
|
- "--storageNode=vmstorage-2:8401"
|
|
|
|
- "--vmalert.proxyURL=http://vmalert:8880"
|
2023-09-26 08:50:10 +00:00
|
|
|
ports:
|
|
|
|
- 8481
|
|
|
|
restart: always
|
|
|
|
vmselect-2:
|
|
|
|
container_name: vmselect-2
|
2024-11-18 13:56:32 +00:00
|
|
|
image: victoriametrics/vmselect:v1.106.1-cluster
|
2022-09-21 08:48:38 +00:00
|
|
|
depends_on:
|
|
|
|
- "vmstorage-1"
|
|
|
|
- "vmstorage-2"
|
|
|
|
command:
|
2024-10-21 21:42:30 +00:00
|
|
|
- "--storageNode=vmstorage-1:8401"
|
|
|
|
- "--storageNode=vmstorage-2:8401"
|
|
|
|
- "--vmalert.proxyURL=http://vmalert:8880"
|
2022-09-21 08:48:38 +00:00
|
|
|
ports:
|
2023-09-26 08:50:10 +00:00
|
|
|
- 8481
|
|
|
|
restart: always
|
|
|
|
|
2024-02-20 17:31:45 +00:00
|
|
|
# vmauth is a router and balancer for HTTP requests.
|
|
|
|
# It is configured via --auth.config and balances
|
|
|
|
# read requests from Grafana, vmui, vmalert among vmselects.
|
|
|
|
# It can be used as an authentication proxy.
|
2023-09-26 08:50:10 +00:00
|
|
|
vmauth:
|
|
|
|
container_name: vmauth
|
2024-11-18 13:56:32 +00:00
|
|
|
image: victoriametrics/vmauth:v1.106.1
|
2023-09-26 08:50:10 +00:00
|
|
|
depends_on:
|
|
|
|
- "vmselect-1"
|
|
|
|
- "vmselect-2"
|
|
|
|
volumes:
|
|
|
|
- ./auth-cluster.yml:/etc/auth.yml
|
|
|
|
command:
|
2024-10-21 21:42:30 +00:00
|
|
|
- "--auth.config=/etc/auth.yml"
|
2023-09-26 08:50:10 +00:00
|
|
|
ports:
|
|
|
|
- 8427:8427
|
2022-09-21 08:48:38 +00:00
|
|
|
restart: always
|
|
|
|
|
2024-02-20 17:31:45 +00:00
|
|
|
# vmalert executes alerting and recording rules
|
2022-09-21 08:48:38 +00:00
|
|
|
vmalert:
|
|
|
|
container_name: vmalert
|
2024-11-18 13:56:32 +00:00
|
|
|
image: victoriametrics/vmalert:v1.106.1
|
2022-09-21 08:48:38 +00:00
|
|
|
depends_on:
|
2023-10-01 19:20:43 +00:00
|
|
|
- "vmauth"
|
2022-09-21 08:48:38 +00:00
|
|
|
ports:
|
|
|
|
- 8880:8880
|
|
|
|
volumes:
|
2024-10-29 15:30:39 +00:00
|
|
|
- ./rules/alerts-cluster.yml:/etc/alerts/alerts.yml
|
|
|
|
- ./rules/alerts-health.yml:/etc/alerts/alerts-health.yml
|
|
|
|
- ./rules/alerts-vmagent.yml:/etc/alerts/alerts-vmagent.yml
|
|
|
|
- ./rules/alerts-vmalert.yml:/etc/alerts/alerts-vmalert.yml
|
2022-09-21 08:48:38 +00:00
|
|
|
command:
|
2024-10-21 21:42:30 +00:00
|
|
|
- "--datasource.url=http://vmauth:8427/select/0/prometheus"
|
|
|
|
- "--remoteRead.url=http://vmauth:8427/select/0/prometheus"
|
|
|
|
- "--remoteWrite.url=http://vminsert:8480/insert/0/prometheus"
|
|
|
|
- "--notifier.url=http://alertmanager:9093/"
|
|
|
|
- "--rule=/etc/alerts/*.yml"
|
2022-09-21 08:48:38 +00:00
|
|
|
# display source of alerts in grafana
|
2024-10-21 21:42:30 +00:00
|
|
|
- "-external.url=http://127.0.0.1:3000" #grafana outside container
|
2024-07-05 06:47:59 +00:00
|
|
|
- '--external.alert.source=explore?orgId=1&left={"datasource":"VictoriaMetrics","queries":[{"expr":{{.Expr|jsonEscape|queryEscape}},"refId":"A"}],"range":{"from":"{{ .ActiveAt.UnixMilli }}","to":"now"}}'
|
2022-09-21 08:48:38 +00:00
|
|
|
restart: always
|
|
|
|
|
2024-02-20 17:31:45 +00:00
|
|
|
# alertmanager receives alerting notifications from vmalert
|
|
|
|
# and distributes them according to --config.file.
|
2022-09-21 08:48:38 +00:00
|
|
|
alertmanager:
|
|
|
|
container_name: alertmanager
|
2024-02-29 12:21:02 +00:00
|
|
|
image: prom/alertmanager:v0.27.0
|
2022-09-21 08:48:38 +00:00
|
|
|
volumes:
|
|
|
|
- ./alertmanager.yml:/config/alertmanager.yml
|
|
|
|
command:
|
2024-10-21 21:42:30 +00:00
|
|
|
- "--config.file=/config/alertmanager.yml"
|
2022-09-21 08:48:38 +00:00
|
|
|
ports:
|
|
|
|
- 9093:9093
|
|
|
|
restart: always
|
|
|
|
|
|
|
|
volumes:
|
|
|
|
vmagentdata: {}
|
|
|
|
strgdata-1: {}
|
|
|
|
strgdata-2: {}
|
app/vmalert/templates: properly escape all the special chars in `quotesEscape` function
Previously the `quotesEscape` function was escaping only double quotes.
This wasn't enough, since the input string could contain other special chars,
which must be escaped when put inside JSON string. For example, carriage return and line feed chars (\n\r),
backslash char, etc. This led to the following issues, which were improperly fixed:
- https://github.com/VictoriaMetrics/VictoriaMetrics/issues/890 - this issue
was "fixed" by introducing the `crlfEscape` function, which led to unnecessary
complications in user templates, while not fixing various corner cases
such as backslash chars in the input string.
See https://github.com/VictoriaMetrics/VictoriaMetrics/commit/1de15ad490dbde84ad2a657f3b65a6311991f372
- https://github.com/VictoriaMetrics/VictoriaMetrics/issues/3139 - this issue
was "fixed" by urlencoding the whole string passed to -external.alert.source
command-line flag. This led to invalid urls, which couldn't be parsed by Grafana.
See https://github.com/VictoriaMetrics/VictoriaMetrics/commit/00c838353d1246495fd7c7546f3d71095e855eab
and https://github.com/VictoriaMetrics/VictoriaMetrics/commit/4bd024459931a0671dee4abae4bc3556795ee398
This commit properly encodes the input string passed to `quotesEscape`, so it can be safely embedded inside JSON strings.
This commit deprecates crlfEscape template function and adds the following new template functions:
- strvalue and stripDomain - these functions are supported by Prometheus, so they were added
for compatibility purposes.
- jsonEscape and htmlEscape for converting the input string to valid quoted JSON string
and for html-escaping the input string, so it could be safely embedded as a plaintext
into html.
This commit also documents all supported template functions at https://docs.victoriametrics.com/vmalert.html#template-functions
The deprecated crlfEscape function isn't documented on purpose, since its usefulness is negative in general case.
2022-10-27 20:38:19 +00:00
|
|
|
grafanadata: {}
|