Compare commits

...

2 commits

Author SHA1 Message Date
6638f28179
Remove wireguard from env.yml 2024-08-01 11:09:35 +02:00
7811582d9f
[monitoring] Update thresholds 2024-08-01 10:33:09 +02:00
2 changed files with 4 additions and 6 deletions

View file

@ -112,7 +112,6 @@ ports:
syncthing_udp: 22000
uptime_kuma: 3001
vaultwarden: 8081
wireguard: 51820
# UID in containers
@ -134,7 +133,6 @@ 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 = 30
CPU_THRESHOLD = 35
# Memory usage threshold in GB
MEMORY_THRESHOLD = 3
MEMORY_THRESHOLD = 2.75
# Disk usage threshold in GB
DISK_LOCAL_THRESHOLD = 30
DISK_SMB_THRESHOLD = 200
DISK_LOCAL_THRESHOLD = 25
DISK_SMB_THRESHOLD = 120
# Time in seconds between each check
MONITORING_INTERVAL = 30