minitor-go/test/valid-verify-multi-line.hcl
Ian Fijolek 7cac6c94d7
Some checks failed
continuous-integration/drone/push Build is failing
Update readme and update some test files to be better examples
2024-11-15 12:05:17 -08:00

20 lines
327 B
HCL

check_interval = "1s"
monitor "Shell" {
shell_command = <<-EOF
echo 'Some string with stuff'
echo "<angle brackets>"
exit 1
EOF
alert_down = ["log_shell"]
alert_after = 1
alert_every = 0
}
alert "log_shell" {
shell_command = <<EOF
echo 'Some string with stuff'
echo '<angle brackets>'
EOF
}