docs/Cluster-VictoriaMetrics.md: fix incorrect commands for profile collecting

This commit is contained in:
Aliaksandr Valialkin 2020-12-16 01:06:42 +02:00
parent 1b9992b42a
commit 0e082b1c76

View file

@ -387,13 +387,13 @@ All the cluster components provide the following handlers for [profiling](https:
Example command for collecting cpu profile from `vmstorage`:
```bash
curl -s http://<victoria-metrics-host>:8428/debug/pprof/profile > cpu.pprof
curl -s http://vmstorage:8482/debug/pprof/profile > cpu.pprof
```
Example command for collecting memory profile from `vminsert`:
```bash
curl -s http://<victoria-metrics-host>:8428/debug/pprof/heap > mem.pprof
curl -s http://vminsert:8480/debug/pprof/heap > mem.pprof
```