2022-08-26 19:07:59 +00:00
|
|
|
---
|
|
|
|
slug: /zh/operations/system-tables/asynchronous_metric_log
|
|
|
|
---
|
2021-06-24 12:47:02 +00:00
|
|
|
## system.asynchronous_metric_log {#system-tables-async-log}
|
2020-06-22 08:45:22 +00:00
|
|
|
|
2021-12-29 12:10:49 +00:00
|
|
|
包含每分钟记录一次的 `system.asynchronous_metrics`历史值。默认开启。
|
2021-10-22 07:04:17 +00:00
|
|
|
|
|
|
|
列:
|
2021-12-29 12:10:49 +00:00
|
|
|
- `event_date` ([Date](../../sql-reference/data-types/date.md)) — 事件日期。
|
|
|
|
- `event_time` ([DateTime](../../sql-reference/data-types/datetime.md)) — 事件时间。
|
|
|
|
- `name` ([String](../../sql-reference/data-types/string.md)) — 指标名。
|
|
|
|
- `value` ([Float64](../../sql-reference/data-types/float.md)) — 指标值。
|
2021-10-22 07:04:17 +00:00
|
|
|
|
|
|
|
**示例**
|
|
|
|
``` sql
|
|
|
|
SELECT * FROM system.asynchronous_metric_log LIMIT 10
|
|
|
|
```
|
|
|
|
``` text
|
2023-07-04 11:06:15 +00:00
|
|
|
┌─event_date─┬──────────event_time─┬─name─────────────────────────────────────┬─────value─┐
|
|
|
|
│ 2020-09-05 │ 2020-09-05 15:56:30 │ CPUFrequencyMHz_0 │ 2120.9 │
|
|
|
|
│ 2020-09-05 │ 2020-09-05 15:56:30 │ jemalloc.arenas.all.pmuzzy │ 743 │
|
|
|
|
│ 2020-09-05 │ 2020-09-05 15:56:30 │ jemalloc.arenas.all.pdirty │ 26288 │
|
|
|
|
│ 2020-09-05 │ 2020-09-05 15:56:30 │ jemalloc.background_thread.run_intervals │ 0 │
|
|
|
|
│ 2020-09-05 │ 2020-09-05 15:56:30 │ jemalloc.background_thread.num_runs │ 0 │
|
|
|
|
│ 2020-09-05 │ 2020-09-05 15:56:30 │ jemalloc.retained │ 60694528 │
|
|
|
|
│ 2020-09-05 │ 2020-09-05 15:56:30 │ jemalloc.mapped │ 303161344 │
|
|
|
|
│ 2020-09-05 │ 2020-09-05 15:56:30 │ jemalloc.resident │ 260931584 │
|
|
|
|
│ 2020-09-05 │ 2020-09-05 15:56:30 │ jemalloc.metadata │ 12079488 │
|
|
|
|
│ 2020-09-05 │ 2020-09-05 15:56:30 │ jemalloc.allocated │ 133756128 │
|
|
|
|
└────────────┴─────────────────────┴──────────────────────────────────────────┴───────────┘
|
2021-10-22 07:04:17 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
**另请参阅**
|
|
|
|
- [system.asynchronous_metrics](../../operations/system-tables/asynchronous_metrics.md#system_tables-asynchronous_metrics) — 包含在后台定期计算的指标.
|
2021-10-23 08:24:43 +00:00
|
|
|
- [system.metric_log](../../operations/system-tables/metric_log.md#system_tables-metric_log) — 包含定期刷新到磁盘表 `system.metrics` 以及 `system.events` 中的指标值历史记录.
|