add docs for #44543

This commit is contained in:
Alexander Tokmakov 2023-02-23 15:57:11 +01:00
parent 90834d4aa5
commit de04760bcd
2 changed files with 4 additions and 0 deletions

View File

@ -28,6 +28,7 @@ Columns:
- `revision` (UInt32) — ClickHouse revision.
- `source_file` (LowCardinality(String)) — Source file from which the logging was done.
- `source_line` (UInt64) — Source line from which the logging was done.
- `message_format_string` (LowCardinality(String)) — A format string that was used to format the message.
**Example**
@ -51,4 +52,5 @@ message: Update period 15 seconds
revision: 54440
source_file: /ClickHouse/src/Interpreters/DNSCacheUpdater.cpp; void DB::DNSCacheUpdater::start()
source_line: 45
message_format_string: Update period {} seconds
```

View File

@ -28,6 +28,7 @@ slug: /ru/operations/system-tables/text_log
- `revision` (UInt32) — ревизия ClickHouse.
- `source_file` (LowCardinality(String)) — исходный файл, из которого была сделана запись.
- `source_line` (UInt64) — исходная строка, из которой была сделана запись.
- `message_format_string` (LowCardinality(String)) — форматная строка, с помощью которой было отформатировано сообщение.
**Пример**
@ -51,4 +52,5 @@ message: Update period 15 seconds
revision: 54440
source_file: /ClickHouse/src/Interpreters/DNSCacheUpdater.cpp; void DB::DNSCacheUpdater::start()
source_line: 45
message_format_string: Update period {} seconds
```