mirror of
https://github.com/owncast/owncast.git
synced 2024-12-18 07:12:33 +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)
|
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)
|
||||||
|
|
Loading…
Reference in a new issue