Hey team,
I have deployed SigNoz through helm chart. Is there a way to inspect the PV for how much space is being occupied by traces/logs/metrics ?
We are seeing a sudden increase in the volume mounted to clickhouse.
h
Herb He
10/10/2024, 2:31 PM
You can ssh into the Clickhosue pod and run
clickhouse client
to open the clickhouse query console and run this to list top storage tables
Copy code
SELECT
database,
table,
sum(bytes) AS total_bytes,
formatReadableSize(sum(bytes)) AS total_size
FROM system.parts
GROUP BY
database,
table
ORDER BY total_bytes DESC
LIMIT 100
SigNoz is an open-source APM. It helps developers monitor their applications & troubleshoot problems, an open-source alternative to DataDog, NewRelic, etc.