Hey team, I have deployed SigNoz through helm char...
# support
p
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
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