mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-01-20 15:16:42 +00:00
Merge branch 'public-single-node' into victorialogs-wip
This commit is contained in:
commit
0aa6e34766
2 changed files with 4 additions and 4 deletions
|
@ -36,7 +36,7 @@ See also [LTS releases](https://docs.victoriametrics.com/lts-releases/).
|
||||||
|
|
||||||
**Update note 3: the `-maxLabelValueLen` command-line flag default value was changed from 16kB to 1kB. It may lead to truncating of labels with enormous values.**
|
**Update note 3: the `-maxLabelValueLen` command-line flag default value was changed from 16kB to 1kB. It may lead to truncating of labels with enormous values.**
|
||||||
|
|
||||||
* SECURITY: upgrade Go builder from Go1.22.2 to Go1.22.3. See [the list of issues addressed in Go1.22.3](https://github.com/golang/go/issues?q=milestone%3AGo1.22.3+label%3ACherryPickApproved).
|
* SECURITY: upgrade Go builder from Go1.22.2 to Go1.22.4. See the list of issues addressed in [Go1.22.3](https://github.com/golang/go/issues?q=milestone%3AGo1.22.3+label%3ACherryPickApproved) and [Go1.22.4](https://github.com/golang/go/issues?q=milestone%3AGo1.22.4+label%3ACherryPickApproved).
|
||||||
* SECURITY: upgrade base docker image (Alpine) from 3.19.1 to 3.20.0. See [alpine 3.20.0 release notes](https://www.alpinelinux.org/posts/Alpine-3.20.0-released.html).
|
* SECURITY: upgrade base docker image (Alpine) from 3.19.1 to 3.20.0. See [alpine 3.20.0 release notes](https://www.alpinelinux.org/posts/Alpine-3.20.0-released.html).
|
||||||
* SECURITY: add release images built from scratch image. Such images could be more preferable for using in environments with higher security standards. See this [pull request](https://github.com/VictoriaMetrics/VictoriaMetrics/pull/6386).
|
* SECURITY: add release images built from scratch image. Such images could be more preferable for using in environments with higher security standards. See this [pull request](https://github.com/VictoriaMetrics/VictoriaMetrics/pull/6386).
|
||||||
|
|
||||||
|
|
|
@ -590,7 +590,7 @@ and `X` is [numeric value](#numeric-values), IPv4 address or a string. For examp
|
||||||
response_size:>10KiB
|
response_size:>10KiB
|
||||||
```
|
```
|
||||||
|
|
||||||
The following query returns logs with `user` field containing string values smaller than 'John`:
|
The following query returns logs with `user` field containing string values smaller than `John`:
|
||||||
|
|
||||||
```logsql
|
```logsql
|
||||||
username:<"John"
|
username:<"John"
|
||||||
|
@ -1709,7 +1709,7 @@ See also:
|
||||||
### pack_json pipe
|
### pack_json pipe
|
||||||
|
|
||||||
`| pack_json as field_name` [pipe](#pipe) packs all [log fields](https://docs.victoriametrics.com/victorialogs/keyconcepts/#data-model) into JSON object
|
`| pack_json as field_name` [pipe](#pipe) packs all [log fields](https://docs.victoriametrics.com/victorialogs/keyconcepts/#data-model) into JSON object
|
||||||
and stores its as a string in the given `field_name`.
|
and stores it as a string in the given `field_name`.
|
||||||
|
|
||||||
For example, the following query packs all the fields into JSON object and stores it into [`_msg` field](https://docs.victoriametrics.com/victorialogs/keyconcepts/#message-field)
|
For example, the following query packs all the fields into JSON object and stores it into [`_msg` field](https://docs.victoriametrics.com/victorialogs/keyconcepts/#message-field)
|
||||||
for logs over the last 5 minutes:
|
for logs over the last 5 minutes:
|
||||||
|
@ -1748,7 +1748,7 @@ See also:
|
||||||
### pack_logfmt pipe
|
### pack_logfmt pipe
|
||||||
|
|
||||||
`| pack_logfmt as field_name` [pipe](#pipe) packs all [log fields](https://docs.victoriametrics.com/victorialogs/keyconcepts/#data-model) into [logfmt](https://brandur.org/logfmt) message
|
`| pack_logfmt as field_name` [pipe](#pipe) packs all [log fields](https://docs.victoriametrics.com/victorialogs/keyconcepts/#data-model) into [logfmt](https://brandur.org/logfmt) message
|
||||||
and stores its as a string in the given `field_name`.
|
and stores it as a string in the given `field_name`.
|
||||||
|
|
||||||
For example, the following query packs all the fields into [logfmt](https://brandur.org/logfmt) message and stores it
|
For example, the following query packs all the fields into [logfmt](https://brandur.org/logfmt) message and stores it
|
||||||
into [`_msg` field](https://docs.victoriametrics.com/victorialogs/keyconcepts/#message-field) for logs over the last 5 minutes:
|
into [`_msg` field](https://docs.victoriametrics.com/victorialogs/keyconcepts/#message-field) for logs over the last 5 minutes:
|
||||||
|
|
Loading…
Reference in a new issue