fix trace type

This commit is contained in:
chasingegg 2021-04-05 00:16:35 +08:00
parent caaa19edb8
commit 1aa2b3a4cd

View File

@ -20,10 +20,12 @@ Columns:
When connecting to the server by `clickhouse-client`, you see the string similar to `Connected to ClickHouse server version 19.18.1 revision 54429.`. This field contains the `revision`, but not the `version` of a server.
- `timer_type` ([Enum8](../../sql-reference/data-types/enum.md)) — Timer type:
- `trace_type` ([Enum8](../../sql-reference/data-types/enum.md)) — Trace type:
- `Real` represents wall-clock time.
- `CPU` represents CPU time.
- `Real` represents collecting stack traces by wall-clock time.
- `CPU` represents collecting stack traces by CPU time.
- `Memory` represents collecting allocations and deallocations
- `MemorySample` represents collecting random allocations and deallocations
- `thread_number` ([UInt32](../../sql-reference/data-types/int-uint.md)) — Thread identifier.