mirror of
https://github.com/owncast/owncast.git
synced 2024-11-22 21:03:19 +03:00
84 lines
1.9 KiB
Go
84 lines
1.9 KiB
Go
package metrics
|
|
|
|
import (
|
|
"time"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
)
|
|
|
|
const maxCPUAlertingThresholdPCT = 85
|
|
const maxRAMAlertingThresholdPCT = 85
|
|
const maxDiskAlertingThresholdPCT = 90
|
|
|
|
var inCpuAlertingState = false
|
|
var inRamAlertingState = false
|
|
var inDiskAlertingState = false
|
|
|
|
var errorResetDuration = time.Minute * 5
|
|
|
|
const alertingError = "The %s utilization of %d%% could cause problems with video generation and delivery. Visit the documentation at http://owncast.online/docs/troubleshooting/ if you are experiencing issues."
|
|
|
|
func handleAlerting() {
|
|
handleCPUAlerting()
|
|
handleRAMAlerting()
|
|
handleDiskAlerting()
|
|
}
|
|
|
|
func handleCPUAlerting() {
|
|
if len(Metrics.CPUUtilizations) < 2 {
|
|
return
|
|
}
|
|
|
|
avg := recentAverage(Metrics.CPUUtilizations)
|
|
if avg > maxCPUAlertingThresholdPCT && !inCpuAlertingState {
|
|
log.Warnf(alertingError, "CPU", avg)
|
|
inCpuAlertingState = true
|
|
|
|
resetTimer := time.NewTimer(errorResetDuration)
|
|
go func() {
|
|
<-resetTimer.C
|
|
inCpuAlertingState = false
|
|
}()
|
|
}
|
|
}
|
|
|
|
func handleRAMAlerting() {
|
|
if len(Metrics.RAMUtilizations) < 2 {
|
|
return
|
|
}
|
|
|
|
avg := recentAverage(Metrics.RAMUtilizations)
|
|
if avg > maxRAMAlertingThresholdPCT && !inRamAlertingState {
|
|
log.Warnf(alertingError, "memory", avg)
|
|
inRamAlertingState = true
|
|
|
|
resetTimer := time.NewTimer(errorResetDuration)
|
|
go func() {
|
|
<-resetTimer.C
|
|
inRamAlertingState = false
|
|
}()
|
|
}
|
|
}
|
|
|
|
func handleDiskAlerting() {
|
|
if len(Metrics.DiskUtilizations) < 2 {
|
|
return
|
|
}
|
|
|
|
avg := recentAverage(Metrics.DiskUtilizations)
|
|
|
|
if avg > maxDiskAlertingThresholdPCT && !inDiskAlertingState {
|
|
log.Warnf(alertingError, "disk", avg)
|
|
inDiskAlertingState = true
|
|
|
|
resetTimer := time.NewTimer(errorResetDuration)
|
|
go func() {
|
|
<-resetTimer.C
|
|
inDiskAlertingState = false
|
|
}()
|
|
}
|
|
}
|
|
|
|
func recentAverage(values []timestampedValue) int {
|
|
return (values[len(values)-1].Value + values[len(values)-2].Value) / 2
|
|
}
|