mirror of
https://github.com/owncast/owncast.git
synced 2024-11-21 12:18:02 +03:00
Display the current value not the threshold
This commit is contained in:
parent
8c31b7702e
commit
1d9774e453
1 changed files with 3 additions and 3 deletions
|
@ -31,7 +31,7 @@ func handleCPUAlerting() {
|
|||
|
||||
avg := recentAverage(Metrics.CPUUtilizations)
|
||||
if avg > maxCPUAlertingThresholdPCT && !inCpuAlertingState {
|
||||
log.Warnf(alertingError, "CPU", maxCPUAlertingThresholdPCT)
|
||||
log.Warnf(alertingError, "CPU", avg)
|
||||
inCpuAlertingState = true
|
||||
|
||||
resetTimer := time.NewTimer(errorResetDuration)
|
||||
|
@ -49,7 +49,7 @@ func handleRAMAlerting() {
|
|||
|
||||
avg := recentAverage(Metrics.RAMUtilizations)
|
||||
if avg > maxRAMAlertingThresholdPCT && !inRamAlertingState {
|
||||
log.Warnf(alertingError, "memory", maxRAMAlertingThresholdPCT)
|
||||
log.Warnf(alertingError, "memory", avg)
|
||||
inRamAlertingState = true
|
||||
|
||||
resetTimer := time.NewTimer(errorResetDuration)
|
||||
|
@ -68,7 +68,7 @@ func handleDiskAlerting() {
|
|||
avg := recentAverage(Metrics.DiskUtilizations)
|
||||
|
||||
if avg > maxDiskAlertingThresholdPCT && !inDiskAlertingState {
|
||||
log.Warnf(alertingError, "disk", maxRAMAlertingThresholdPCT)
|
||||
log.Warnf(alertingError, "disk", avg)
|
||||
inDiskAlertingState = true
|
||||
|
||||
resetTimer := time.NewTimer(errorResetDuration)
|
||||
|
|
Loading…
Reference in a new issue