feat: alerting if filesystem is not found

This commit is contained in:
RouxAntoine 2021-03-23 22:14:10 +01:00
rodič dee08b808b
revize 32ce383db8
Podepsáno: antoine
ID GPG klíče: 098FB66FC0475E70
1 změnil soubory, kde provedl 9 přidání a 0 odebrání

Zobrazit soubor

@ -3,6 +3,7 @@ package check
import (
"fmt"
"go/slack-bot/pkg/notify"
"log"
"regexp"
"strconv"
"strings"
@ -83,6 +84,7 @@ func (dc *DfChecker) FileSystemUsedCheck(dfOut DfStdout, param DfParameter) noti
message := notify.Message{
ShouldNotify: false,
}
found := false
for _, line := range dfOut {
if line.Filesystem == param.FileSystemName {
if line.PourcentUsed > param.CriticalPourcent {
@ -92,6 +94,13 @@ func (dc *DfChecker) FileSystemUsedCheck(dfOut DfStdout, param DfParameter) noti
ShouldNotify: true,
}
}
found = true
}
}
if !found {
message = notify.Message{
Content: fmt.Sprintf("%s : fs '%s' not found\n", dc.alertingMessage, param.FileSystemName),
ShouldNotify: true,
}
}
return message