Browse Source

Reduce hardware alerting thresholds

pull/437/head
Gabe Kangas 5 years ago
parent
commit
814fcceaac
  1. 6
      metrics/alerting.go

6
metrics/alerting.go

@ -4,9 +4,9 @@ import ( @@ -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."

Loading…
Cancel
Save