VictoriaMetrics/deployment/docker
Roman Khavronenko 840ab60111
deployment: add topology visualizations (#5858)
Signed-off-by: hagen1778 <roman@victoriametrics.com>
2024-02-23 12:20:32 +01:00
..
assets deployment: add topology visualizations (#5858) 2024-02-23 12:20:32 +01:00
base all: run apk update && apk upgrade in base Alpine Docker image in order to get all the recent security fixes 2023-02-09 14:01:32 -08:00
builder CI: speedup build by 2.4x. restore nightly build (#3772) 2023-02-07 10:12:16 +08:00
provisioning deployment/docker: follow-up 38b2a5bc44 2024-01-22 16:05:44 +01:00
victorialogs deployment: update reference to VictoriaLogs from v0.4.1-victorialogs to v0.4.2-victorialogs 2023-11-15 20:46:53 +01:00
vm-datasource deployment/docker: clean up loading of victoriametrics-datasource (#5793) 2024-02-20 14:31:15 +01:00
vmanomaly/vmanomaly-integration - v1.11 doc updates (#5852) 2024-02-22 18:48:54 +01:00
alertmanager.yml deployment: sync with cluster branch 2023-01-23 22:59:00 -08:00
alerts-cluster.yml deployment/dashboards: fix Storage full ETA panels (#5747) 2024-02-08 09:43:39 +01:00
alerts-health.yml alerts: simplify aggregation of alerting rules 2023-12-11 15:17:30 +01:00
alerts-vmagent.yml docs: remove slug from Grafana dashboard URLs 2024-01-18 11:19:53 +01:00
alerts-vmalert.yml docs: remove slug from Grafana dashboard URLs 2024-01-18 11:19:53 +01:00
alerts.yml deployment/dashboards: fix Storage full ETA panels (#5747) 2024-02-08 09:43:39 +01:00
auth-cluster.yml Docker add vmauth (#5057) 2023-09-26 10:50:10 +02:00
docker-compose-cluster.yml deployment/docker: add comments to components in docker-compose manifests 2024-02-20 18:31:45 +01:00
docker-compose.yml deployment/docker: add comments to components in docker-compose manifests 2024-02-20 18:31:45 +01:00
fluent-bit.conf deployment/docker: add VictoriaLogs (#4929) 2023-09-01 10:45:43 +02:00
Makefile all: upgrade Go builder from Go1.21.7 to Go1.22.0 2024-02-12 21:59:51 +02:00
prometheus-cluster.yml Docker add vmauth (#5057) 2023-09-26 10:50:10 +02:00
prometheus.yml Update VL daashboard. Add Resource Section, add ds and job filters, a… (#4981) 2023-09-10 15:04:07 +02:00
README.md deployment: add topology visualizations (#5858) 2024-02-23 12:20:32 +01:00

Docker compose environment for VictoriaMetrics

Docker compose environment for VictoriaMetrics includes VictoriaMetrics components, Alertmanager and Grafana.

For starting the docker-compose environment ensure you have docker installed and running and access to the Internet. All commands should be executed from the root directory of the repo.

VictoriaMetrics single server

To spin-up environment with VictoriaMetrics single server run the following command:

make docker-single-up 

VictoriaMetrics will be accessible on the following ports:

  • --graphiteListenAddr=:2003
  • --opentsdbListenAddr=:4242
  • --httpListenAddr=:8428

The communication scheme between components is the following:

  • vmagent sends scraped metrics to single server VictoriaMetrics;
  • grafana is configured with datasource pointing to single server VictoriaMetrics;
  • vmalert is configured to query single server VictoriaMetrics and send alerts state and recording rules back to it;
  • alertmanager is configured to receive notifications from vmalert.
VictoriaMetrics single-server deployment

To access Grafana use link http://localhost:3000.

To access vmui use link http://localhost:8428/vmui.

To access vmalert use link http://localhost:8428/vmalert.

To shutdown environment execute the following command:

make docker-single-down

VictoriaMetrics cluster

To spin-up environment with VictoriaMetrics cluster run the following command:

make docker-cluster-up

VictoriaMetrics cluster environment consists of vminsert, vmstorage and vmselect components. vminsert has exposed port :8480, access to vmselect components goes through vmauth on port :8427, and the rest of components are available only inside the environment.

The communication scheme between components is the following:

  • vmagent sends scraped metrics to vminsert;
  • vminsert forwards data to vmstorage;
  • vmselects are connected to vmstorage for querying data;
  • vmauth balances incoming read requests among vmselects;
  • grafana is configured with datasource pointing to vmauth;
  • vmalert is configured to query vmselects via vmauth and send alerts state and recording rules to vminsert;
  • alertmanager is configured to receive notifications from vmalert.
VictoriaMetrics cluster deployment

To access Grafana use link http://localhost:3000.

To access vmui use link http://localhost:8427/select/0/prometheus/vmui/.

To access vmalert use link http://localhost:8427/select/0/prometheus/vmalert/.

To shutdown environment execute the following command:

make docker-cluster-down

vmagent

vmagent is used for scraping and pushing time series to VictoriaMetrics instance. It accepts Prometheus-compatible configuration prometheus.yml with listed targets for scraping.

Web interface link.

vmauth

vmauth acts as a balancer to spread the load across vmselect's. Grafana and vmalert use vmauth for read queries. vmauth config is available here

vmalert

vmalert evaluates alerting rules alerts.yml to track VictoriaMetrics health state. It is connected with AlertManager for firing alerts, and with VictoriaMetrics for executing queries and storing alert's state.

Web interface link.

alertmanager

AlertManager accepts notifications from vmalert and fires alerts. All notifications are blackholed according to alertmanager.yml config.

Web interface link.

Grafana

To access service open following link.

Default credential:

  • login - admin
  • password - admin

Grafana is provisioned by default with following entities:

  • VictoriaMetrics datasource
  • VictoriaMetrics - cluster datasource
  • VictoriaMetrics overview dashboard
  • VictoriaMetrics - cluster dashboard
  • VictoriaMetrics - vmagent dashboard
  • VictoriaMetrics - vmalert dashboard

Remember to pick VictoriaMetrics - cluster datasource when viewing VictoriaMetrics - cluster dashboard.

Optionally, environment with VictoriaMetrics Grafana datasource can be started with the following commands:

make docker-single-vm-datasource-up    # start single server
make docker-single-vm-datasource-down  # shut down single server

make docker-cluster-vm-datasource-up   # start cluster
make docker-cluster-vm-datasource-down # shutdown cluster

Alerts

See below a list of recommended alerting rules for various VictoriaMetrics components for running in production. Some of the alerting rules thresholds are just recommendations and could require an adjustment. The list of alerting rules is the following:

Please, also see how to monitor VictoriaMetrics installations.

VictoriaLogs server

VictoriaLogs will be accessible on the following port: --httpListenAddr=:9428

Fluent Bit is used to send logs to VictoriaLogs instance. Fluent Bit is configured to send logs from running containers to VictoriaLogs instance. Additionally, it is configured to listen for syslog logs on port 5140 and send them to VictoriaLogs instance.

To access VictoriaLogs UI use link http://localhost:9428/select/vmui/.

Please, also see how to monitor VictoriaLogs installations.