Skip to content

Commit

Permalink
update VictoriaLogs to the latest v0.22.2
Browse files Browse the repository at this point in the history
  • Loading branch information
denisgolius committed Jun 25, 2024
1 parent 2dd647a commit 0cf5749
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
9 changes: 8 additions & 1 deletion victoria-logs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 0.0.4

* FEATURE: allow specifying multiple `_stream_id` values in [`_stream_id` filter](https://docs.victoriametrics.com/victorialogs/logsql/#_stream_id-filter) via `_stream_id:in(id1, ..., idN)` syntax.
* FEATURE: allow specifying subquery for searching for `_stream_id` values inside [`_stream_id` filter](https://docs.victoriametrics.com/victorialogs/logsql/#_stream_id-filter). For example, `_stream_id:in(_time:5m error | fields _stream_id)` returns logs for [logs streams](https://docs.victoriametrics.com/victorialogs/keyconcepts/#stream-fields) with the `error` word across logs for the last 5 minutes.
* FEATURE: [web UI](https://docs.victoriametrics.com/victorialogs/querying/#web-ui): add a bar chart displaying the number of log entries over a time range. See [this issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/6404).
* FEATURE: expose `_stream_id` field, which uniquely identifies [log streams](https://docs.victoriametrics.com/victorialogs/keyconcepts/#stream-fields). This field can be used for quick obtaining of all the logs belonging to a particular stream via [`_stream_id` filter](https://docs.victoriametrics.com/victorialogs/logsql/#_stream_id-filter).

# 0.0.3

* FEATURE: allow configuring multiple receivers with distinct configs for syslog messages. See [these docs](https://docs.victoriametrics.com/victorialogs/data-ingestion/syslog/#multiple-configs).
Expand Down Expand Up @@ -123,6 +130,6 @@

* BUGFIX: properly register new [log streams](https://docs.victoriametrics.com/victorialogs/keyconcepts/#stream-fields) under high data ingestion rate. The issue has been introduced in [v0.5.0](https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v0.5.0-victorialogs).

## 0.0.1
# 0.0.1

* Initial VictoriaLogs setup
2 changes: 1 addition & 1 deletion victoria-logs/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ FROM $BUILD_FROM
# Copy data for add-on
COPY start-victoria-logs /
WORKDIR /share/victoria-logs-data
ARG VERSION=v0.20.2-victorialogs
ARG VERSION=v0.22.2-victorialogs

RUN /bin/bash -c 'set -ex && \
ARCH=$(uname -m) && \
Expand Down
2 changes: 1 addition & 1 deletion victoria-logs/config.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: VictoriaLogs
version: "0.0.3"
version: "0.0.4"
slug: victoria_logs
description: The Simple & Reliable Logs Solution That Scales
webui: "http://[HOST]:[PORT:9428]/"
Expand Down

0 comments on commit 0cf5749

Please sign in to comment.