2022-08-26 19:07:59 +00:00
|
|
|
|
---
|
|
|
|
|
slug: /zh/operations/system-tables/asynchronous_metrics
|
|
|
|
|
---
|
2021-06-24 12:47:02 +00:00
|
|
|
|
# system.asynchronous_metrics {#system_tables-asynchronous_metrics}
|
2020-06-22 08:45:22 +00:00
|
|
|
|
|
|
|
|
|
包含在后台定期计算的指标。 例如,在使用的RAM量。
|
|
|
|
|
|
|
|
|
|
列:
|
|
|
|
|
|
2021-07-29 15:20:55 +00:00
|
|
|
|
- `metric` ([字符串](../../sql-reference/data-types/string.md)) — 指标名。
|
|
|
|
|
- `value` ([Float64](../../sql-reference/data-types/float.md)) — 指标值。
|
2020-06-22 08:45:22 +00:00
|
|
|
|
|
|
|
|
|
**示例**
|
|
|
|
|
|
|
|
|
|
``` sql
|
|
|
|
|
SELECT * FROM system.asynchronous_metrics LIMIT 10
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
``` text
|
|
|
|
|
┌─metric──────────────────────────────────┬──────value─┐
|
|
|
|
|
│ jemalloc.background_thread.run_interval │ 0 │
|
|
|
|
|
│ jemalloc.background_thread.num_runs │ 0 │
|
|
|
|
|
│ jemalloc.background_thread.num_threads │ 0 │
|
|
|
|
|
│ jemalloc.retained │ 422551552 │
|
|
|
|
|
│ jemalloc.mapped │ 1682989056 │
|
|
|
|
|
│ jemalloc.resident │ 1656446976 │
|
|
|
|
|
│ jemalloc.metadata_thp │ 0 │
|
|
|
|
|
│ jemalloc.metadata │ 10226856 │
|
|
|
|
|
│ UncompressedCacheCells │ 0 │
|
|
|
|
|
│ MarkCacheFiles │ 0 │
|
|
|
|
|
└─────────────────────────────────────────┴────────────┘
|
|
|
|
|
```
|
|
|
|
|
|
2021-08-02 12:25:15 +00:00
|
|
|
|
**参见**
|
|
|
|
|
- [监控](../../operations/monitoring.md) — ClickHouse监控的基本概念。
|
|
|
|
|
- [system.metrics](../../operations/system-tables/metrics.md#system_tables-metrics) — 包含即时计算的指标。
|
|
|
|
|
- [system.events](../../operations/system-tables/events.md#system_tables-events) — 包含已发生的事件数。
|
|
|
|
|
- [system.metric_log](../../operations/system-tables/metric_log.md#system_tables-metric_log) — 包含 `system.metrics` 和 `system.events` 表中的指标的历史值。
|