Update victoriametrics/vmagent Docker tag to v1.129.0 #582

Merged
AverageMarcus merged 1 commits from renovate/victoriametrics into master 2025-11-04 08:45:17 +00:00
Collaborator

This PR contains the following updates:

Package Update Change
victoriametrics/vmagent minor v1.128.0 -> v1.129.0

Release Notes

VictoriaMetrics/VictoriaMetrics (victoriametrics/vmagent)

v1.129.0

Compare Source

v1.129.0

Released at 2025-10-31

  • FEATURE: vminsert and vmstorage in VictoriaMetrics cluster: introduce new RPC protocol for insert-storage communication. See this PR #​9820 for details.

  • FEATURE: vmalert: explicitly check response type for range queries during replay and return error on type mismatch. This change should reduce confusions like in #​9779.

  • FEATURE: vmctl: allow providing multiple filters for remote-read migration mode via multiple --remote-read-filter-label and --remote-read-filter-label-value flags. This is useful in order to narrow down the data being migrated by using more precise filters. See this PR #​9917 for details.

  • FEATURE: vmalert: support alert_relabel_configs per each notifier in -notifier.config file. See #​5980.

  • FEATURE: vmalert: add template function now to return the Unix timestamp in seconds at the time of the template evaluation. For example, {{ (now | toTime).Sub $activeAt }} can calculate duration the alert has been active. See this issue #​9864 for more details. Thank you @​nguu0123 for the pull request.

  • FEATURE: vmalert: start groups with group.interval > 5m faster. Before, vmalert was delaying group start for random duration up to group.interval. This could significantly delay group's evaluation if their interval was set to big values. With this change, vmalert limits the max start delay via new command-line flag --group.maxStartDelay (by default, 5m).

  • FEATURE: vmagent: add /remotewrite-relabel-config and /api/v1/status/remotewrite-relabel-config API handlers for returning content of --remoteWrite.relabelConfig cmd-line flag. Useful for inspecting and verifying the final global relabeling rules used by vmagent. Access to new handlers can be protected via --configAuthKey command-line flag. See #​9504.

  • FEATURE: vmagent: add /remotewrite-url-relabel-config and /api/v1/status/remotewrite-url-relabel-config API handlers for returning content of --remoteWrite.urlRelabelConfig cmd-line flag. Useful for inspecting and verifying the final per-remote-write relabeling rules used by vmagent. Access to new handlers can be protected via --configAuthKey command-line flag. See #​9504.

  • FEATURE: vmagent: improve performance for the stream aggregation with multiple configured rules. See this issue #​9878 for details.

  • FEATURE: stream aggregation: change the behavior when both streamAggr.dropInput and streamAggr.keepInput are set to true. Previously, all input samples were kept when both flags were true. Now, only input samples matching any aggregation are retained; all others are dropped. See #​9724.

  • FEATURE: VictoriaMetrics enterprise: slow query statistics logging is now enabled by default with -search.logSlowQueryStats=5s. This makes it easier to analyze query performance via the Query Stats dashboard. See Query execution stats for more details.

  • FEATURE: vmauth: make the load distribution more even among the backends which execute queries with various durations. See #​9712.

  • FEATURE: dashboards/all: enable column filters in Non-default flags panel. See #​9910. Thanks to @​SamarthBagga for enhancement!

  • FEATURE: add linux/s390x artifact to releases. See #​9697 for the details.

  • BUGFIX: vmbackup, vmrestore, vmbackupmanager: complete a fix of environment variables configuration parsing for connection to AWS S3. Previously, such settings were ignored starting from v1.115.0 and releases v1.128.0, v1.122.6 and v1.110.21 did not fix an issue completely. See this issue #​9858 for details.

  • BUGFIX: vmalert: fix search over group names and other attributes in vmalert's WEB UI. This functionality was broken since v1.117.0. See #​9886 for details.

  • BUGFIX: vmalert: preserve HTML formatting in rule's annotations in vmalert's WEB UI and vmui's alerting page. See #​9892 for details.

  • BUGFIX vmbackupmanager: consistently set vm_backup_last_created_at{type="latest"} to the latest backup start time.

  • BUGFIX: vmbackupmanager: prevent breaking shell formatting when using vmbackupmanager CLI mode by adding a newline after the command output. Previously, using CLI mode would not always include newline at the end of output, which could break shell formatting.


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [victoriametrics/vmagent](https://github.com/VictoriaMetrics/VictoriaMetrics) | minor | `v1.128.0` -> `v1.129.0` | --- ### Release Notes <details> <summary>VictoriaMetrics/VictoriaMetrics (victoriametrics/vmagent)</summary> ### [`v1.129.0`](https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.129.0) [Compare Source](https://github.com/VictoriaMetrics/VictoriaMetrics/compare/v1.128.0...v1.129.0) ##### [v1.129.0](https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.129.0) Released at 2025-10-31 - FEATURE: `vminsert` and `vmstorage` in [VictoriaMetrics cluster](https://docs.victoriametrics.com/victoriametrics/cluster-victoriametrics/): introduce new RPC protocol for insert-storage communication. See this PR [#&#8203;9820](https://github.com/VictoriaMetrics/VictoriaMetrics/pull/9820) for details. - FEATURE: [vmalert](https://docs.victoriametrics.com/victoriametrics/vmalert/): explicitly check response type for [range queries](https://docs.victoriametrics.com/keyConcepts.html#range-query) during [replay](https://docs.victoriametrics.com/victoriametrics/vmalert/#rules-backfilling) and return error on type mismatch. This change should reduce confusions like in [#&#8203;9779](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/9779). - FEATURE: [vmctl](https://docs.victoriametrics.com/victoriametrics/vmctl/): allow providing multiple filters for [remote-read migration mode](https://docs.victoriametrics.com/victoriametrics/vmctl/remoteread/) via multiple `--remote-read-filter-label` and `--remote-read-filter-label-value` flags. This is useful in order to narrow down the data being migrated by using more precise filters. See this PR [#&#8203;9917](https://github.com/VictoriaMetrics/VictoriaMetrics/pull/9917) for details. - FEATURE: [vmalert](https://docs.victoriametrics.com/victoriametrics/vmalert/): support `alert_relabel_configs` per each notifier in `-notifier.config` file. See [#&#8203;5980](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/5980). - FEATURE: [vmalert](https://docs.victoriametrics.com/victoriametrics/vmalert/): add template function `now` to return the Unix timestamp in seconds at the time of the template evaluation. For example, `{{ (now | toTime).Sub $activeAt }}` can calculate duration the alert has been active. See this issue [#&#8203;9864](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/9864) for more details. Thank you [@&#8203;nguu0123](https://github.com/nguu0123) for the pull request. - FEATURE: [vmalert](https://docs.victoriametrics.com/victoriametrics/vmalert/): start groups with `group.interval > 5m` faster. Before, vmalert was [delaying group start](https://github.com/VictoriaMetrics/VictoriaMetrics/pull/724) for random duration up to `group.interval`. This could significantly delay group's evaluation if their interval was set to big values. With this change, vmalert limits the max start delay via new command-line flag `--group.maxStartDelay` (by default, 5m). - FEATURE: [vmagent](https://docs.victoriametrics.com/victoriametrics/vmagent/): add `/remotewrite-relabel-config` and `/api/v1/status/remotewrite-relabel-config` API handlers for returning content of `--remoteWrite.relabelConfig` cmd-line flag. Useful for inspecting and verifying the final global relabeling rules used by vmagent. Access to new handlers can be protected via `--configAuthKey` command-line flag. See [#&#8203;9504](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/9504). - FEATURE: [vmagent](https://docs.victoriametrics.com/victoriametrics/vmagent/): add `/remotewrite-url-relabel-config` and `/api/v1/status/remotewrite-url-relabel-config` API handlers for returning content of `--remoteWrite.urlRelabelConfig` cmd-line flag. Useful for inspecting and verifying the final per-remote-write relabeling rules used by vmagent. Access to new handlers can be protected via `--configAuthKey` command-line flag. See [#&#8203;9504](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/9504). - FEATURE: [vmagent](https://docs.victoriametrics.com/victoriametrics/vmagent/): improve performance for the [stream aggregation](https://docs.victoriametrics.com/victoriametrics/stream-aggregation/) with multiple configured rules. See this issue [#&#8203;9878](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/9878) for details. - FEATURE: [stream aggregation](https://docs.victoriametrics.com/victoriametrics/stream-aggregation/): change the behavior when both `streamAggr.dropInput` and `streamAggr.keepInput` are set to true. Previously, all input samples were kept when both flags were `true`. Now, only input samples matching any aggregation are retained; all others are dropped. See [#&#8203;9724](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/9724). - FEATURE: [VictoriaMetrics enterprise](https://docs.victoriametrics.com/victoriametrics/enterprise/): slow query statistics logging is now enabled by default with `-search.logSlowQueryStats=5s`. This makes it easier to analyze query performance via the [Query Stats dashboard](https://grafana.sandbox.victoriametrics.com/d/feg3od1zt1fy8e/query-stats). See [Query execution stats](https://docs.victoriametrics.com/victoriametrics/enterprise/#query-execution-stats) for more details. - FEATURE: [vmauth](https://docs.victoriametrics.com/victoriametrics/vmauth/): make the load distribution more even among the backends which execute queries with various durations. See [#&#8203;9712](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/9712). - FEATURE: [dashboards/all](https://github.com/VictoriaMetrics/VictoriaMetrics/blob/master/dashboards): enable column filters in `Non-default flags` panel. See [#&#8203;9910](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/9910). Thanks to [@&#8203;SamarthBagga](https://github.com/SamarthBagga) for enhancement! - FEATURE: add linux/s390x artifact to releases. See [#&#8203;9697](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/9697) for the details. - BUGFIX: [vmbackup](https://docs.victoriametrics.com/victoriametrics/vmbackup/), [vmrestore](https://docs.victoriametrics.com/victoriametrics/vmrestore/), [vmbackupmanager](https://docs.victoriametrics.com/victoriametrics/vmbackupmanager/): complete a fix of environment variables configuration parsing for connection to AWS S3. Previously, such settings were ignored starting from [v1.115.0](https://docs.victoriametrics.com/victoriametrics/changelog/#v11150) and releases [v1.128.0](https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.128.0), [v1.122.6](https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.122.6) and [v1.110.21](https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.110.21) did not fix an issue completely. See this issue [#&#8203;9858](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/9858) for details. - BUGFIX: [vmalert](https://docs.victoriametrics.com/victoriametrics/vmalert/): fix search over group names and other attributes in vmalert's WEB UI. This functionality was broken since [v1.117.0](https://docs.victoriametrics.com/CHANGELOG.html#v11170). See [#&#8203;9886](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/9886) for details. - BUGFIX: [vmalert](https://docs.victoriametrics.com/victoriametrics/vmalert/): preserve HTML formatting in rule's annotations in vmalert's [WEB UI](https://docs.victoriametrics.com/vmalert.html#web) and [vmui's alerting page](https://docs.victoriametrics.com/victoriametrics/#vmui). See [#&#8203;9892](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/9892) for details. - BUGFIX [vmbackupmanager](https://docs.victoriametrics.com/victoriametrics/vmbackupmanager/): consistently set `vm_backup_last_created_at{type="latest"}` to the latest backup start time. - BUGFIX: [vmbackupmanager](https://docs.victoriametrics.com/victoriametrics/vmbackupmanager/): prevent breaking shell formatting when using `vmbackupmanager` CLI mode by adding a newline after the command output. Previously, using CLI mode would not always include newline at the end of output, which could break shell formatting. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MS4xNjkuMyIsInVwZGF0ZWRJblZlciI6IjQxLjE2OS4zIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbXX0=-->
renovate added 1 commit 2025-11-04 03:08:09 +00:00
AverageMarcus merged commit ba756c370a into master 2025-11-04 08:45:17 +00:00
AverageMarcus deleted branch renovate/victoriametrics 2025-11-04 08:45:17 +00:00
Sign in to join this conversation.
No Reviewers
No Label
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: AverageMarcus/cluster.fun#582