mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2026-06-28 04:57:20 +03:00
The %q formatter may result in incorrectly formatted JSON string if the original string
contains special chars such as \x1b . They must be encoded as \u001b , otherwise the resulting JSON string
cannot be parsed by JSON parsers.
This is a follow-up for c0caa69939
See https://github.com/VictoriaMetrics/victorialogs-datasource/issues/24
vmstorage performs the following tasks:
-
Accepts inserts from
vminsertand stores them to local storage. -
Performs select requests from
vmselect.