TOML file to allow different behaviour for different services.
check-on-startup = true
timeout = 5000
priority = "normal"
notify-on = ["failed"]
# Match in order, first wins
[[services]]
name = "postfix"
notify-on = ["success", "failed"]
priority = "urgent"
[[services]]
name = "foo*"
notify-on = [] # Ignore
[services]
name = "*" # catch all
timeout = 5000
notify-on = ["failed"]
TOML file to allow different behaviour for different services.
Example: