From 814fcceaacc4fb468919dcece3960a303c219ad4 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Mon, 7 Dec 2020 13:44:41 -0800 Subject: [PATCH] Reduce hardware alerting thresholds --- metrics/alerting.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/metrics/alerting.go b/metrics/alerting.go index 674dd5d18..942b125a2 100644 --- a/metrics/alerting.go +++ b/metrics/alerting.go @@ -4,9 +4,9 @@ import ( log "github.com/sirupsen/logrus" ) -const maxCPUAlertingThresholdPCT = 95 -const maxRAMAlertingThresholdPCT = 95 -const maxDiskAlertingThresholdPCT = 95 +const maxCPUAlertingThresholdPCT = 80 +const maxRAMAlertingThresholdPCT = 80 +const maxDiskAlertingThresholdPCT = 90 const alertingError = "The %s utilization of %d%% can cause issues with video generation and delivery. Please visit the documentation at http://owncast.online/docs/troubleshooting/ to help troubleshoot this issue."