mirror of
https://github.com/Cleanuparr/Cleanuparr.git
synced 2026-02-04 20:28:01 -06:00
[FEATURE] Add frequency of Cleanuparr health checks in settings #79
Loading…
x
Reference in New Issue
Block a user
No description provided.
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @nibble4bits on GitHub.
What would you like to see implemented next?
In 2.0.0 - it is doing a Cleanuparr health check once per minute and there is no way to change this in the settings. Can you add an option to customize the frequency of doing the health checks so the log is not completely filled with health checks? Thanks!
@Flaminel commented on GitHub:
While this has not been fully addressed yet,
v2.2.0improves this by:Debugdown fromInfofor successful health checks; failed health checks will show up as warnings@Flaminel commented on GitHub:
@rmcgirr83 The health check endpoint has nothing to do with how often the download client health checks are performed. What you are using is an aggregated status coming from both Cleanuparr itself and the current status of the download clients, so it return the current status and does not trigger a re-check. Checking the download client might take a long time, while the health check endpoint should be quite fast.
@rmcgirr83 commented on GitHub:
Seems docker healthcheck is being ignored? I have it set for 10 minutes in my compose but the healthcheck still triggers every minute.
healthcheck: test: ["CMD", "curl", "-f", "http://localhost:11011/health"] interval: 10m # Check every 10 Minutes timeout: 10s # Allow up to 10 seconds for response start_period: 30s # Wait 30 seconds before first check retries: 3 # Mark unhealthy after 3 consecutive failures