Skip to content
ClickHouse Docs
ClickHouse DocsClickHouse Docs

system.histogram_metric_log

Description

History of system.histogram_metrics. Snapshot taken every collect_interval_milliseconds, flushed to disk.

Columns

Example

SELECT event_time, metric, labels, histogram
FROM system.histogram_metric_log
WHERE metric = 'keeper_response_time_ms'
ORDER BY event_time DESC
LIMIT 1
FORMAT Vertical;

See Also

Navigation