mirror of
https://github.com/PostHog/posthog.git
synced 2024-11-28 18:26:15 +01:00
15 lines
456 B
Python
15 lines
456 B
Python
|
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
|