Check ClickHouse Disks
Following query will show you ClickHouse Disks via reading system.disks table. SELECT name, path, formatReadableSize(sum(free_space)) as free_space, formatReadableSize(sum(total_space)) as total_space, formatReadableSize(sum(keep_free_space)) as keep_free_space, type FROM system.disks GROUP BY name, path, type FORMAT PrettyCompact Example Output: […]