2019-09-21 22:03:26 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2019-10-01 15:26:07 +00:00
|
|
|
"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"
|
2020-02-17 02:39:55 +00:00
|
|
|
"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
|
2020-02-16 21:25:11 +00:00
|
|
|
Command CommandOrShell
|
2019-10-02 16:37:29 +00:00
|
|
|
commandTemplate []*template.Template
|
2019-10-01 15:26:07 +00:00
|
|
|
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 {
|
2020-02-16 21:25:11 +00:00
|
|
|
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 {
|
2020-02-17 02:39:55 +00:00
|
|
|
// 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)
|
|
|
|
|
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{}
|
2020-02-16 21:25:11 +00:00
|
|
|
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(
|
2020-11-16 23:56:31 +00:00
|
|
|
template.New(alert.Name+fmt.Sprint(i)).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(
|
2020-02-20 01:31:04 +00:00
|
|
|
template.New(alert.Name).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)
|
2019-10-01 15:26:07 +00:00
|
|
|
if err != nil {
|
2019-10-03 23:30:49 +00:00
|
|
|
return
|
2019-10-01 15:26:07 +00:00
|
|
|
}
|
2021-05-11 04:00:58 +00:00
|
|
|
|
2019-10-02 16:37:29 +00:00
|
|
|
shellCommand := commandBuffer.String()
|
2019-10-01 15:26:07 +00:00
|
|
|
|
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 %v: %w",
|
|
|
|
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",
|
2020-06-19 16:51:42 +00:00
|
|
|
"{{.MonitorName}} {{if .IsUp}}has recovered{{else}}check has failed {{.FailureCount}} times{{end}}",
|
2020-02-18 00:47:43 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|