0
0
mirror of https://github.com/PostHog/posthog.git synced 2024-11-28 18:26:15 +01:00
posthog/ee/clickhouse/test/test_system_status.py

15 lines
456 B
Python
Raw Normal View History

from ee.clickhouse.system_status import system_status
def test_system_status(db):
results = list(system_status())
assert [row["key"] for row in results] == [
"clickhouse_alive",
"clickhouse_disk_0_free_space",
"clickhouse_disk_0_total_space",
"clickhouse_table_sizes",
"clickhouse_system_metrics",
]
assert len(results[-2]["subrows"]["rows"]) > 0
assert len(results[-1]["subrows"]["rows"]) > 0