docs/VictoriaLogs/LogsQL.md: add missing reference to pipes docs from join pipe docs

This is needed for consistency with other pipe docs
This commit is contained in:
Aliaksandr Valialkin 2024-11-06 20:59:19 +01:00
parent a549240852
commit d1af84a49d
No known key found for this signature in database
GPG key ID: 52C003EE2BCDB9EB

View file

@ -1787,7 +1787,7 @@ _time:5m | format if (ip:* and host:*) "request from <ip>:<host>" as message
### join pipe ### join pipe
The `| join by (<fields>) (<query>)` pipe joins the current results with the `<query>` results by the given set of comma-separated `<fields>`. The `| join by (<fields>) (<query>)` [pipe](#pipes) joins the current results with the `<query>` results by the given set of comma-separated `<fields>`.
This pipe works in the following way: This pipe works in the following way:
1. It executes the `<query>` and remembers its' results. It may contain arbitrary [LogsQL query](https://docs.victoriametrics.com/victorialogs/logsql/). 1. It executes the `<query>` and remembers its' results. It may contain arbitrary [LogsQL query](https://docs.victoriametrics.com/victorialogs/logsql/).