mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
42 lines
5.4 KiB
Markdown
42 lines
5.4 KiB
Markdown
# system.metrics {#system_tables-metrics}
|
||
|
||
Содержит метрики, которые могут быть рассчитаны мгновенно или имеют текущее значение. Например, число одновременно обрабатываемых запросов или текущее значение задержки реплики. Эта таблица всегда актуальна.
|
||
|
||
Столбцы:
|
||
|
||
- `metric` ([String](../../sql-reference/data-types/string.md)) — название метрики.
|
||
- `value` ([Int64](../../sql-reference/data-types/int-uint.md)) — значение метрики.
|
||
- `description` ([String](../../sql-reference/data-types/string.md)) — описание метрики.
|
||
|
||
Список поддерживаемых метрик смотрите в файле [src/Common/CurrentMetrics.cpp](https://github.com/ClickHouse/ClickHouse/blob/master/src/Common/CurrentMetrics.cpp).
|
||
|
||
**Пример**
|
||
|
||
``` sql
|
||
SELECT * FROM system.metrics LIMIT 10
|
||
```
|
||
|
||
``` text
|
||
┌─metric─────────────────────┬─value─┬─description──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┐
|
||
│ Query │ 1 │ Number of executing queries │
|
||
│ Merge │ 0 │ Number of executing background merges │
|
||
│ PartMutation │ 0 │ Number of mutations (ALTER DELETE/UPDATE) │
|
||
│ ReplicatedFetch │ 0 │ Number of data parts being fetched from replicas │
|
||
│ ReplicatedSend │ 0 │ Number of data parts being sent to replicas │
|
||
│ ReplicatedChecks │ 0 │ Number of data parts checking for consistency │
|
||
│ BackgroundPoolTask │ 0 │ Number of active tasks in BackgroundProcessingPool (merges, mutations, fetches, or replication queue bookkeeping) │
|
||
│ BackgroundSchedulePoolTask │ 0 │ Number of active tasks in BackgroundSchedulePool. This pool is used for periodic ReplicatedMergeTree tasks, like cleaning old data parts, altering data parts, replica re-initialization, etc. │
|
||
│ DiskSpaceReservedForMerge │ 0 │ Disk space reserved for currently running background merges. It is slightly more than the total size of currently merging parts. │
|
||
│ DistributedSend │ 0 │ Number of connections to remote servers sending data that was INSERTed into Distributed tables. Both synchronous and asynchronous mode. │
|
||
└────────────────────────────┴───────┴──────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────────┘
|
||
```
|
||
|
||
**Смотрите также**
|
||
|
||
- [system.asynchronous_metrics](#system_tables-asynchronous_metrics) — таблица с периодически вычисляемыми метриками.
|
||
- [system.events](#system_tables-events) — таблица с количеством произошедших событий.
|
||
- [system.metric_log](#system_tables-metric_log) — таблица фиксирующая историю значений метрик из `system.metrics` и `system.events`.
|
||
- [Мониторинг](../../operations/monitoring.md) — основы мониторинга в ClickHouse.
|
||
|
||
[Оригинальная статья](https://clickhouse.tech/docs/ru/operations/system_tables/metrics) <!--hide-->
|