mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 20:28:15 +03:00
Reduce hardware alerting thresholds
This commit is contained in:
parent
0062896b7d
commit
814fcceaac
1 changed files with 3 additions and 3 deletions
|
@ -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…
Reference in a new issue