@cryptotaxi247 / netdata-1 / commits / 4dc76b150

docs: add metric count guidance to RAM requirements (#22058)

docs: add UNIQUE_METRICS query guidance to RAM requirements Co-authored-by: nedi-app[bot] <bot@netdata.cloud>

nedi-app[bot] committed Apr 23, 2026 at 15:03 UTC 4dc76b150d58f64d3e7eb86c8bea94e3110ac700
1 file changed +8
docs/netdata-agent/sizing-netdata-agents/ram-requirements.md
+8
@@ -53,6 +53,14 @@ memory = UNIQUE_METRICS x 16KiB + CONFIGURED_CACHES
53
54 The default `CONFIGURED_CACHES` is 32MiB.
55
56 +To determine `UNIQUE_METRICS` for your Agent, query the `/api/v3/info` endpoint:
57 +
58 +```bash
59 +curl -s http://localhost:19999/api/v3/info | jq '.agents[0].metrics.collected'
60 +```
61 +
62 +This returns the number of unique time-series currently being collected.
63 +
64 For **one million concurrently collected time-series** (independently of their data collection frequency), **the required memory is 16 GiB**. In detail:
65
66 ```text