Compare commits

..

No commits in common. "6638f2817920932f9cc4cfa411716562ee63753e" and "0569dd62da2136c81e49c59f8e4c1b0e73c02d41" have entirely different histories.

2 changed files with 6 additions and 4 deletions

View file

@ -112,6 +112,7 @@ ports:
syncthing_udp: 22000
uptime_kuma: 3001
vaultwarden: 8081
wireguard: 51820
# UID in containers
@ -133,6 +134,7 @@ users:
syncthing_relaysrv: 1003
uptime_kuma: 1006
vaultwarden: 1010
wireguard: 1009
volumes:

View file

@ -9,12 +9,12 @@ import time
# CPU usage threshold in percent
CPU_THRESHOLD = 35
CPU_THRESHOLD = 30
# Memory usage threshold in GB
MEMORY_THRESHOLD = 2.75
MEMORY_THRESHOLD = 3
# Disk usage threshold in GB
DISK_LOCAL_THRESHOLD = 25
DISK_SMB_THRESHOLD = 120
DISK_LOCAL_THRESHOLD = 30
DISK_SMB_THRESHOLD = 200
# Time in seconds between each check
MONITORING_INTERVAL = 30