From aeeaf877ac93e80b2bd486f70fff115e4911f264 Mon Sep 17 00:00:00 2001 From: Yurii Kravets <30324382+YuriKravetc@users.noreply.github.com> Date: Mon, 20 Jun 2022 17:44:47 +0300 Subject: [PATCH 1/2] Changed the level type in alerts.yml for TooManyLogs alert (#2760) alerts: filter out non error log messages for `TooManyLogs` Info and Warn error levels aren't always a result of malfunctioning or faulty state. So we filter them out. --- deployment/docker/alerts.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deployment/docker/alerts.yml b/deployment/docker/alerts.yml index 2ea932ba9..fd95441ff 100644 --- a/deployment/docker/alerts.yml +++ b/deployment/docker/alerts.yml @@ -125,7 +125,7 @@ groups: When VictoriaMetrics constantly hits the limit it means that storage is overloaded and requires more CPU." - alert: TooManyLogs - expr: sum(increase(vm_log_messages_total{level!="info"}[5m])) by (job, instance) > 0 + expr: sum(increase(vm_log_messages_total{level="error"}[5m])) by (job, instance) > 0 for: 15m labels: severity: warning From 091408be62724ae4a416475b6de447d932a25e5a Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Mon, 20 Jun 2022 18:10:38 +0300 Subject: [PATCH 2/2] docs/CHANGELOG.md: cut v1.78.0 --- docs/CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index aa084dcd3..4266addda 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -15,6 +15,11 @@ The following tip changes can be tested by building VictoriaMetrics components f ## tip + +## [v1.78.0](https://github.com/VictoriaMetrics/VictoriaMetrics/releases/tag/v1.78.0) + +Released at 20-06-2022 + **Update notes:** this release introduces backwards-incompatible changes to communication protocol between `vmselect` and `vmstorage` nodes in cluster version of VictoriaMetrics because of added [query tracing](https://docs.victoriametrics.com/Single-server-VictoriaMetrics.html#query-tracing), so `vmselect` and `vmstorage` nodes may log communication errors during the upgrade. These errors should stop after all the `vmselect` and `vmstorage` nodes are updated to new release. It is safe to downgrade to previous releases. * SECURITY: add `-flagsAuthKey` command-line flag for protecting `/flags` endpoint from unauthorized access. Though this endpoint already hides values for command-line flags with `key` and `password` substrings in their names, other sensitive information could be exposed there. See [This issue](https://github.com/VictoriaMetrics/VictoriaMetrics/issues/2753).