From 09f0049754cb3ee9099e94aa9c8dd3b90dcedcdb Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Wed, 22 May 2024 23:09:40 +0200 Subject: [PATCH] docs/VictoriaLogs/LogsQL.md: typo fixex --- docs/VictoriaLogs/LogsQL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/VictoriaLogs/LogsQL.md b/docs/VictoriaLogs/LogsQL.md index 848f218df..dee882f90 100644 --- a/docs/VictoriaLogs/LogsQL.md +++ b/docs/VictoriaLogs/LogsQL.md @@ -1887,7 +1887,7 @@ across logs for the last 5 minutes: _time:5m | stats fields_max(duration) as log_with_max_duration ``` -Fields from the returned values can be decoded with [`unpack_json`](#unpack_json-pipe) or [`extract`](#extract) pipes. +Fields from the returned values can be decoded with [`unpack_json`](#unpack_json-pipe) or [`extract`](#extract-pipe) pipes. If only the specific fields are needed from the returned log entry, then they can be enumerated inside `fields_max(...)`. For example, the following query returns only `_time`, `path` and `duration` fields from the log entry with the maximum `duration` over the last 5 minutes: @@ -1914,7 +1914,7 @@ across logs for the last 5 minutes: _time:5m | stats fields_min(duration) as log_with_min_duration ``` -Fields from the returned values can be decoded with [`unpack_json`](#unpack_json-pipe) or [`extract`](#extract) pipes. +Fields from the returned values can be decoded with [`unpack_json`](#unpack_json-pipe) or [`extract`](#extract-pipe) pipes. If only the specific fields are needed from the returned log entry, then they can be enumerated inside `fields_max(...)`. For example, the following query returns only `_time`, `path` and `duration` fields from the log entry with the minimum `duration` over the last 5 minutes: