Pedro Carvalho
03/14/2024, 3:39 AMAnkit Nayan
Srikanth Chekuri
03/14/2024, 8:17 AMCurrently, SignozTest is receiving no Records, everything is empty.Did you also check if there are no logs and metrics?
What is it storing and could I further disable it?Please exec into clickhouse and share the output of this
SELECT
database,
table,
formatReadableSize(sum(data_compressed_bytes) AS size) AS compressed,
formatReadableSize(sum(data_uncompressed_bytes) AS usize) AS uncompressed,
round(usize / size, 2) AS compr_rate,
sum(rows) AS rows,
count() AS part_count
FROM system.parts
WHERE (active = 1) AND (database LIKE '%') AND (table LIKE '%')
GROUP BY
database,
table
ORDER BY size DESC;