Display the current value not the threshold

This commit is contained in:
Gabe Kangas 2021-02-24 23:48:31 -08:00
parent 8c31b7702e
commit 1d9774e453

View File

@ -31,7 +31,7 @@ func handleCPUAlerting() {
avg := recentAverage(Metrics.CPUUtilizations) avg := recentAverage(Metrics.CPUUtilizations)
if avg > maxCPUAlertingThresholdPCT && !inCpuAlertingState { if avg > maxCPUAlertingThresholdPCT && !inCpuAlertingState {
log.Warnf(alertingError, "CPU", maxCPUAlertingThresholdPCT) log.Warnf(alertingError, "CPU", avg)
inCpuAlertingState = true inCpuAlertingState = true
resetTimer := time.NewTimer(errorResetDuration) resetTimer := time.NewTimer(errorResetDuration)
@ -49,7 +49,7 @@ func handleRAMAlerting() {
avg := recentAverage(Metrics.RAMUtilizations) avg := recentAverage(Metrics.RAMUtilizations)
if avg > maxRAMAlertingThresholdPCT && !inRamAlertingState { if avg > maxRAMAlertingThresholdPCT && !inRamAlertingState {
log.Warnf(alertingError, "memory", maxRAMAlertingThresholdPCT) log.Warnf(alertingError, "memory", avg)
inRamAlertingState = true inRamAlertingState = true
resetTimer := time.NewTimer(errorResetDuration) resetTimer := time.NewTimer(errorResetDuration)
@ -68,7 +68,7 @@ func handleDiskAlerting() {
avg := recentAverage(Metrics.DiskUtilizations) avg := recentAverage(Metrics.DiskUtilizations)
if avg > maxDiskAlertingThresholdPCT && !inDiskAlertingState { if avg > maxDiskAlertingThresholdPCT && !inDiskAlertingState {
log.Warnf(alertingError, "disk", maxRAMAlertingThresholdPCT) log.Warnf(alertingError, "disk", avg)
inDiskAlertingState = true inDiskAlertingState = true
resetTimer := time.NewTimer(errorResetDuration) resetTimer := time.NewTimer(errorResetDuration)