diff options
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 9 |
1 files changed, 7 insertions, 2 deletions
@@ -21,8 +21,8 @@ bind: 127.0.0.1:8000 interval: 60 # check interval in seconds mail: # the entire mail section is optional - from: status@example.org - to: [admin@example.org] + mail_from: status@example.org + mail_to: [admin@example.org] smtp_auth: !plain # can be !plain, !starttls or !tls smtp_server: 127.0.0.1 smtp_port: 8025 @@ -40,6 +40,11 @@ services: - !http { url: https://meet.metamuffin.org/ } # this checks that status code of a HTTP request for success - title: failing service + mail_to: [bob@example.org] # for this service, bob will be notified too checks: - !shell { title: "Do nothing unsuccessfully", command: "false" } # this runs a command and checks the exit code ``` + +## License + +AGPL-3.0-only; See `COPYING`. |