This commit is contained in:
Nikita Taranov 2024-12-16 21:28:19 +01:00
parent 68b3a1494a
commit c1e3652af7

View File

@ -30,7 +30,7 @@ def get_async_metric(node, metric):
SELECT max(value)
FROM (
SELECT toStartOfInterval(event_time, toIntervalSecond(1)) AS t, avg(value) AS value
FROM system.asynchronous_metric_log
FROM system.asynchronous_metric_log
WHERE event_time >= now() - 60 AND metric = '{metric}'
GROUP BY t
)
@ -77,7 +77,7 @@ def test_system_wide_metrics(start_cluster):
if node1.is_built_with_sanitizer():
pytest.skip("Disabled for sanitizers")
run_cpu_intensive_task(node1)
run_cpu_intensive_task(node2)
# /proc/loadavg - LoadAverage1
# /proc/uptime - OSUptime
@ -90,5 +90,6 @@ def test_system_wide_metrics(start_cluster):
"OSInterrupts",
"OSMemoryTotal",
]:
node1_value = get_async_metric(node1, metric)
assert float(node1_value) > 0
node2_value = get_async_metric(node2, metric)
assert float(node2_value) > 0