See https://github.com/golang/go/issues?q=milestone%3AGo1.26.3%20label%3ACherryPickApproved
Docker compose environment for VictoriaMetrics
Docker compose environment for VictoriaMetrics includes VictoriaMetrics components, Alertmanager and Grafana.
For starting the docker-compose environment ensure that you have docker installed and running, and that you have access to the Internet. All commands should be executed from the root directory of the VictoriaMetrics repo.
- Metrics:
- Common
- Alerts
- Troubleshooting
VictoriaMetrics single server
To spin-up environment with VictoriaMetrics single server run the following command:
make docker-vm-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
VictoriaMetrics single-node; - grafana is configured with datasource pointing to
VictoriaMetrics single-node; - vmalert is configured to query
VictoriaMetrics single-node, and send alerts state and recording rules results back tovmagent; - alertmanager is configured to receive notifications from
vmalert.
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 run:
make docker-vm-single-down
See troubleshooting in case if issues.
VictoriaMetrics cluster
To spin-up environment with VictoriaMetrics cluster run the following command:
make docker-vm-cluster-up
VictoriaMetrics cluster environment consists of vminsert, vmstorage and vmselect components.
vminsert exposes port :8480 for ingestion. Access to vmselect for reads 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; vminsertshards and forwards data tovmstorage;vmselects are connected tovmstoragefor querying data;- vmauth balances incoming read requests among
vmselects; - grafana is configured with datasource pointing to
vmauth; - vmalert is configured to query
vmselects viavmauthand send alerts state and recording rules tovmagent; - alertmanager is configured to receive notifications from
vmalert.
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-vm-cluster-down
See troubleshooting in case if issues.
vmagent
vmagent is used for scraping and pushing time series to VictoriaMetrics instance. It accepts Prometheus-compatible configuration with listed targets for scraping:
- scraping VictoriaMetrics single-node services;
- scraping VictoriaMetrics cluster services;
Web interface link is http://localhost:8429/.
Common components
vmauth
vmauth acts as a load balancer
to spread the load across vmselect's or vlselect's. Grafana and vmalert use vmauth for read queries.
vmauth routes read queries to VictoriaMetrics depending on requested path.
vmauth config is available here for VictoriaMetrics.
vmalert
vmalert evaluates various alerting rules. It is connected with AlertManager for firing alerts, and with VictoriaMetrics for executing queries and storing alert's state.
Web interface link http://localhost:8880/.
alertmanager
AlertManager accepts notifications from vmalert and fires alerts.
All notifications are blackholed according to alertmanager.yml config.
Web interface link http://localhost:9093/.
Grafana
Web interface link http://localhost:3000.
Default credentials:
- login:
admin - password:
admin
Grafana is provisioned with default dashboards and datasources.
Alerts
See below a list of recommended alerting rules for various VictoriaMetrics components for running in production. Some alerting rules thresholds are just recommendations and could require an adjustment. The list of alerting rules is the following:
- alerts-health.yml: alerting rules related to all VictoriaMetrics components for tracking their "health" state;
- alerts-single-node.yml: alerting rules related to single-server VictoriaMetrics installation;
- alerts-cluster.yml: alerting rules related to cluster version of VictoriaMetrics;
- alerts-vmagent.yml: alerting rules related to vmagent component;
- alerts-vmalert.yml: alerting rules related to vmalert component;
- alerts-vmauth.yml: alerting rules related to vmauth component;
- alerts-vmanomaly.yml: alerting rules related to VictoriaMetrics Anomaly Detection;
Please, also see how to monitor VictoriaMetrics installations.
Troubleshooting
This environment has the following requirements:
- installed docker compose;
- access to the Internet for downloading docker images;
- All commands should be executed from the root directory of the VictoriaMetrics repo.
The expected output of running a command like make docker-vm-single-up is the following:
make docker-vm-single-up :(
docker compose -f deployment/docker/compose-vm-single.yml up -d
[+] Running 9/9
✔ Network docker_default Created 0.0s
✔ Volume "docker_vmagentdata" Created 0.0s
✔ Container docker-alertmanager-1 Started 0.3s
✔ Container docker-victoriametrics-1 Started 0.3s
...
Containers are started in --detach mode, meaning they run in the background. As a result, you won't see their logs or exit status directly in the terminal.
If something isn’t working as expected, try the following troubleshooting steps:
- Run from the correct directory. Make sure you're running the command from the root of the VictoriaMetrics repository.
- Check container status. Run
docker ps -ato list all containers and their status. Healthy and running containers should haveSTATUSset toUp. - View container logs. To inspect logs for a specific container, get its container ID from step p2 and run:
docker logs -f <containerID>. - Read the logs carefully and follow any suggested actions.
- Check for port conflicts. Some containers (e.g., Grafana) expose HTTP ports. If a port (like
:3000) is already in use, the container may fail to start. Stop the conflicting process or change the exposed port in the Docker Compose file. - Shut down the deployment. To tear down the environment, run:
make <environment>-down(i.e.make docker-vm-single-down). Note, this command also removes all attached volumes, so all the temporary created data will be removed too (i.e. Grafana dashboards or collected metrics).