minitor-go/alert.go

193 lines
4.8 KiB
Go
Raw Permalink Normal View History

2019-09-21 22:03:26 +00:00
package main
import (
"bytes"
2021-05-11 04:00:58 +00:00
"errors"
2019-10-03 23:30:49 +00:00
"fmt"
2019-09-21 22:03:26 +00:00
"os/exec"
"strings"
2019-09-21 22:03:26 +00:00
"text/template"
"time"
2021-05-11 03:12:18 +00:00
"git.iamthefij.com/iamthefij/slog"
2019-09-21 22:03:26 +00:00
)
2021-05-11 04:00:58 +00:00
var (
errNoTemplate = errors.New("no template")
// ErrAlertFailed indicates that an alert failed to send
ErrAlertFailed = errors.New("alert failed")
)
2019-10-02 23:09:11 +00:00
// Alert is a config driven mechanism for sending a notice
2019-09-21 22:03:26 +00:00
type Alert struct {
Name string
Command CommandOrShell
2019-10-02 16:37:29 +00:00
commandTemplate []*template.Template
commandShellTemplate *template.Template
2019-09-21 22:03:26 +00:00
}
2019-10-02 23:09:11 +00:00
// AlertNotice captures the context for an alert to be sent
type AlertNotice struct {
AlertCount int16
FailureCount int16
IsUp bool
2021-05-11 04:00:58 +00:00
LastSuccess time.Time
MonitorName string
LastCheckOutput string
2019-10-02 23:09:11 +00:00
}
// IsValid returns a boolean indicating if the Alert has been correctly
// configured
2019-09-21 22:03:26 +00:00
func (alert Alert) IsValid() bool {
return !alert.Command.Empty()
2019-09-21 22:03:26 +00:00
}
2019-10-02 23:09:11 +00:00
// BuildTemplates compiles command templates for the Alert
2019-10-03 23:30:49 +00:00
func (alert *Alert) BuildTemplates() error {
// TODO: Remove legacy template support later after 1.0
legacy := strings.NewReplacer(
"{alert_count}", "{{.AlertCount}}",
"{alert_message}", "{{.MonitorName}} check has failed {{.FailureCount}} times",
"{failure_count}", "{{.FailureCount}}",
"{last_output}", "{{.LastCheckOutput}}",
"{last_success}", "{{.LastSuccess}}",
"{monitor_name}", "{{.MonitorName}}",
)
2021-05-11 03:12:18 +00:00
slog.Debugf("Building template for alert %s", alert.Name)
2023-08-10 20:22:30 +00:00
// Time format func factory
tff := func(formatString string) func(time.Time) string {
return func(t time.Time) string {
return t.Format(formatString)
}
}
// Create some functions for formatting datetimes in popular formats
timeFormatFuncs := template.FuncMap{
"ANSIC": tff(time.ANSIC),
"UnixDate": tff(time.UnixDate),
"RubyDate": tff(time.RubyDate),
"RFC822Z": tff(time.RFC822Z),
"RFC850": tff(time.RFC850),
"RFC1123": tff(time.RFC1123),
"RFC1123Z": tff(time.RFC1123Z),
"RFC3339": tff(time.RFC3339),
"RFC3339Nano": tff(time.RFC3339Nano),
"FormatTime": func(t time.Time, timeFormat string) string {
return t.Format(timeFormat)
},
"InTZ": func(t time.Time, tzName string) (time.Time, error) {
tz, err := time.LoadLocation(tzName)
if err != nil {
return t, fmt.Errorf("failed to convert time to specified tz: %w", err)
}
return t.In(tz), nil
},
}
2021-05-11 04:00:58 +00:00
switch {
case alert.commandTemplate == nil && alert.Command.Command != nil:
2019-10-02 16:37:29 +00:00
alert.commandTemplate = []*template.Template{}
for i, cmdPart := range alert.Command.Command {
2020-02-20 01:31:04 +00:00
if PyCompat {
cmdPart = legacy.Replace(cmdPart)
}
2021-05-11 04:00:58 +00:00
2019-10-02 16:37:29 +00:00
alert.commandTemplate = append(alert.commandTemplate, template.Must(
2023-08-10 20:22:30 +00:00
template.New(alert.Name+fmt.Sprint(i)).Funcs(timeFormatFuncs).Parse(cmdPart),
2019-10-02 16:37:29 +00:00
))
}
2021-05-11 04:00:58 +00:00
case alert.commandShellTemplate == nil && alert.Command.ShellCommand != "":
2020-02-20 01:31:04 +00:00
shellCmd := alert.Command.ShellCommand
2021-05-11 04:00:58 +00:00
2020-02-20 01:31:04 +00:00
if PyCompat {
shellCmd = legacy.Replace(shellCmd)
}
2021-05-11 04:00:58 +00:00
2019-09-21 22:03:26 +00:00
alert.commandShellTemplate = template.Must(
2023-08-10 20:22:30 +00:00
template.New(alert.Name).Funcs(timeFormatFuncs).Parse(shellCmd),
2019-09-21 22:03:26 +00:00
)
2021-05-11 04:00:58 +00:00
default:
return fmt.Errorf("No template provided for alert %s: %w", alert.Name, errNoTemplate)
2019-09-21 22:03:26 +00:00
}
2019-10-03 23:30:49 +00:00
return nil
2019-09-21 22:03:26 +00:00
}
2019-10-02 23:09:11 +00:00
// Send will send an alert notice by executing the command template
2020-02-18 00:46:56 +00:00
func (alert Alert) Send(notice AlertNotice) (outputStr string, err error) {
2021-05-11 03:12:18 +00:00
slog.Infof("Sending alert %s for %s", alert.Name, notice.MonitorName)
2019-09-21 22:03:26 +00:00
var cmd *exec.Cmd
2021-05-11 04:00:58 +00:00
switch {
case alert.commandTemplate != nil:
2019-10-02 16:37:29 +00:00
command := []string{}
2021-05-11 04:00:58 +00:00
2019-10-02 16:37:29 +00:00
for _, cmdTmp := range alert.commandTemplate {
var commandBuffer bytes.Buffer
2021-05-11 04:00:58 +00:00
2019-10-03 23:30:49 +00:00
err = cmdTmp.Execute(&commandBuffer, notice)
2019-10-02 16:37:29 +00:00
if err != nil {
2019-10-03 23:30:49 +00:00
return
2019-10-02 16:37:29 +00:00
}
2021-05-11 04:00:58 +00:00
2019-10-02 16:37:29 +00:00
command = append(command, commandBuffer.String())
}
2021-05-11 04:00:58 +00:00
2019-10-02 16:37:29 +00:00
cmd = exec.Command(command[0], command[1:]...)
2021-05-11 04:00:58 +00:00
case alert.commandShellTemplate != nil:
2019-09-21 22:03:26 +00:00
var commandBuffer bytes.Buffer
2021-05-11 04:00:58 +00:00
2019-10-03 23:30:49 +00:00
err = alert.commandShellTemplate.Execute(&commandBuffer, notice)
if err != nil {
2019-10-03 23:30:49 +00:00
return
}
2021-05-11 04:00:58 +00:00
2019-10-02 16:37:29 +00:00
shellCommand := commandBuffer.String()
2019-10-02 16:37:29 +00:00
cmd = ShellCommand(shellCommand)
2021-05-11 04:00:58 +00:00
default:
err = fmt.Errorf("No templates compiled for alert %s: %w", alert.Name, errNoTemplate)
2019-10-03 23:30:49 +00:00
return
2019-10-02 16:37:29 +00:00
}
2019-10-03 23:30:49 +00:00
// Exit if we're not ready to run the command
if cmd == nil || err != nil {
return
2019-09-21 22:03:26 +00:00
}
2019-10-03 23:30:49 +00:00
var output []byte
output, err = cmd.CombinedOutput()
2020-02-18 00:46:56 +00:00
outputStr = string(output)
2021-05-11 03:12:18 +00:00
slog.Debugf("Alert output for: %s\n---\n%s\n---", alert.Name, outputStr)
2019-10-03 23:30:49 +00:00
2021-05-11 04:00:58 +00:00
if err != nil {
err = fmt.Errorf(
"Alert %s failed to send. Returned %w: %w",
2021-05-11 04:00:58 +00:00
alert.Name,
err,
ErrAlertFailed,
)
}
2020-02-18 00:46:56 +00:00
return outputStr, err
2019-09-21 22:03:26 +00:00
}
2020-02-18 00:47:43 +00:00
// NewLogAlert creates an alert that does basic logging using echo
func NewLogAlert() *Alert {
return &Alert{
Name: "log",
Command: CommandOrShell{
Command: []string{
"echo",
"{{.MonitorName}} {{if .IsUp}}has recovered{{else}}check has failed {{.FailureCount}} times{{end}}",
2020-02-18 00:47:43 +00:00
},
},
}
}