Skip to content
Snippets Groups Projects
Verified Commit cfd37eb5 authored by Florian Pritz's avatar Florian Pritz
Browse files

zabbix/systemd-units-failed: Disable monitoring of archive-uploader.service


Due to archive.org failures, this service failes rather often. It
usually works again some minutes or hours later so we disable the
monitoring here and instead add a dedicated trigger in zabbix that waits
a bit longer before notifying us.

Signed-off-by: default avatarFlorian Pritz <bluewind@xinu.at>
parent ede4211c
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,8 @@ for unit in filter(
lambda u: u[3] == "failed"
and u[0] not in ignore
and not u[0].startswith("user@")
and not u[0].startswith("user-runtime-dir@"),
and not u[0].startswith("user-runtime-dir@")
and not u[0] == "archive-uploader.service",
units,
):
print(unit[0])
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment