You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/victorialogs/CHANGELOG.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ according to [these docs](https://docs.victoriametrics.com/victorialogs/quicksta
21
21
* FEATURE: [`extract` pipe](https://docs.victoriametrics.com/victorialogs/logsql/#extract-pipe): the `<...>` placeholder now matchs quoted strings in single quotes additionally to strings in double quotes and backticks. For example, the `<login>` placeholder at the `... | extact "login=<login>,"` now matches `foo,bar` for the log message with the text `login='foo,bar'`.
22
22
* FEATURE: [LogsQL](https://docs.victoriametrics.com/victorialogs/logsql/): add [pattern match filter](https://docs.victoriametrics.com/victorialogs/logsql/#pattern-match-filter) for searching logs by the given patterns such as `<DATETIME>: user_id=<N>, ip=<IP4>, trace_id=<UUID>`. These filters are needed for [#518](https://github.com/VictoriaMetrics/VictoriaLogs/issues/518).
23
23
* FEATURE: [Syslog data ingestion](https://docs.victoriametrics.com/victorialogs/data-ingestion/syslog/): support for receiving Syslog messages from Unix sockets of `SOCK_STREAM` and `SOCK_DGRAM` types via `-syslog.listenAddr.unix=/path/to/socket` and `-syslog.listenAddr.unix=unixgram:/path/to/socket` command-line flags. See [#570](https://github.com/VictoriaMetrics/VictoriaLogs/issues/570).
24
-
* FEATURE: proxy requests to`/select/api/v1/notifiers`, `/select/api/v1/alerts` and `/select/api/v1/rules` to VMAlert, when `-vmalert.proxyURL` flag is set. See [#8272](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/8272).
24
+
* FEATURE: proxy VMAlert requests at`/select/vmalert` path, when `-vmalert.proxyURL` flag is set. See [#8272](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/8272).
25
25
26
26
* BUGFIX: [querying](https://docs.victoriametrics.com/victorialogs/querying/): `-search.maxQueryTimeRange` command-line flag now supports day (`d`), week (`w`) and year (`y`) suffixes additionally to the supported hour (`h`), minute (`m`) and second (`s`) suffixes. See [#50](https://github.com/VictoriaMetrics/VictoriaLogs/issues/50#issuecomment-3244097676).
27
27
* BUGFIX: [querying](https://docs.victoriametrics.com/victorialogs/querying/): properly handle the `offset` HTTP parameter when it is not set. This improves querying performance in VictoriaLogs cluster. See [#620](https://github.com/VictoriaMetrics/VictoriaLogs/issues/620).
Copy file name to clipboardExpand all lines: docs/victorialogs/README.md
+3-6Lines changed: 3 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -341,13 +341,10 @@ It is also possible to use **the disk snapshot** feature provided by the operati
341
341
342
342
## vmalert
343
343
344
-
VictoriaLogs is capable of proxying requests to [vmalert](https://docs.victoriametrics.com/victoriametrics/vmalert/)
345
-
when `-vmalert.proxyURL` flag is set. Use this feature for the following cases:
346
-
* for proxying requests from [Grafana Alerting UI](https://grafana.com/docs/grafana/latest/alerting/);
347
-
* for accessing vmalerts UI through VictoriaLogs Web interface.
344
+
VictoriaLogs is capable of proxying requests to [VMAlert](https://docs.victoriametrics.com/victoriametrics/vmalert/)
345
+
when `-vmalert.proxyURL` flag is set. Use this feature for accessing VMAlert API through VictoriaLogs Web interface.
348
346
349
-
For accessing vmalerts UI through VictoriaLogs configure `-vmalert.proxyURL` flag and visit
350
-
`http://<victorialogs-addr>:9428/vmalert/` link.
347
+
For accessing VMAlert API through VictoriaLogs configure `-vmalert.proxyURL` flag. All VMAlert endpoints become available at `http://<victorialogs-addr>:9428/select/vmalert`.
0 commit comments