69 lines
1.7 KiB
Go
69 lines
1.7 KiB
Go
package main
|
|
|
|
import (
|
|
"bareos-zabbix-check/config"
|
|
"bareos-zabbix-check/job"
|
|
"bareos-zabbix-check/spool"
|
|
"bareos-zabbix-check/state"
|
|
"fmt"
|
|
"os"
|
|
"time"
|
|
)
|
|
|
|
func main() {
|
|
var (
|
|
config config.Config
|
|
spool spool.Spool
|
|
state state.State
|
|
errorString string
|
|
missingString string
|
|
)
|
|
config.Init()
|
|
err := state.Parse(&config)
|
|
if err != nil {
|
|
fmt.Print(err)
|
|
os.Exit(0)
|
|
}
|
|
// We will check for errors in loading the spool file only at the end. If all jobs ran successfully without errors
|
|
// in the state file and we manage to write a new spool file without errors, then we will ignore any error here to
|
|
// avoid false positives during backup bootstrap
|
|
err = spool.Load(&config)
|
|
|
|
jobs := job.KeepOldestOnly(append(state.Jobs(), spool.Jobs()...))
|
|
spool.SetJobs(job.KeepSuccessOnly(jobs))
|
|
|
|
// we write this new spool
|
|
if err2 := spool.Save(); err2 != nil {
|
|
fmt.Printf("AVERAGE: Error saving the spool file : %s\n", err2)
|
|
os.Exit(0)
|
|
}
|
|
|
|
now := uint64(time.Now().Unix())
|
|
// We build the error strings
|
|
for _, job := range jobs {
|
|
if job.Success {
|
|
if job.Timestamp < now-24*3600 {
|
|
if missingString == "" {
|
|
missingString = fmt.Sprintf("missing: %s", job.Name)
|
|
} else {
|
|
missingString = fmt.Sprintf("%s, %s", missingString, job.Name)
|
|
}
|
|
}
|
|
} else {
|
|
if errorString == "" {
|
|
errorString = fmt.Sprintf("errors: %s", job.Name)
|
|
} else {
|
|
errorString = fmt.Sprintf("%s, %s", errorString, job.Name)
|
|
}
|
|
}
|
|
}
|
|
// Finally we output
|
|
if errorString != "" || missingString != "" {
|
|
fmt.Printf("AVERAGE: %s %s", errorString, missingString)
|
|
if err != nil {
|
|
fmt.Printf(" additionnal errors: %s", err)
|
|
}
|
|
} else {
|
|
fmt.Printf("OK")
|
|
}
|
|
}
|