docs/extract: clarify extract array examples for path/request_id#980
Open
withlin wants to merge 1 commit intoVictoriaMetrics:masterfrom
Open
docs/extract: clarify extract array examples for path/request_id#980withlin wants to merge 1 commit intoVictoriaMetrics:masterfrom
withlin wants to merge 1 commit intoVictoriaMetrics:masterfrom
Conversation
func25
reviewed
Dec 31, 2025
Comment on lines
+1881
to
+1896
| If you only need the part before `?` in `_msg`, you can skip `split` and directly extract both pieces: | ||
|
|
||
| ```logsql | ||
| ... | extract '<path>?<request_id>' from _msg | stats by (path) count() | ||
| ``` | ||
|
|
||
| If you already used [`split` pipe](https://docs.victoriametrics.com/victorialogs/logsql/#split-pipe) to turn `_msg` into an array, placeholders let you pick specific items: | ||
|
|
||
| First item: | ||
| ```logsql | ||
| ... | split "?" from _msg as parts | extract '["<path>"' from parts | ||
| ``` | ||
| Second item: | ||
| ```logsql | ||
| ... | split "?" from _msg as parts | extract '["<_>","<request_id>"' from parts | ||
| ``` |
Contributor
There was a problem hiding this comment.
This piece sounds strange and out of context. The example with split on ? is also complicated and adds unnecessary cognitive overhead for anyone want to understand extract pipe without the context from #978.
Better wording might be fine, but I'd prefer not to add a specialized example. Let's see what other contributors think
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Describe Your Changes
Fixes: #978
Checklist
The following checks are mandatory: