HTTP health checker.
Install system dependencies.
On Debian/Ubuntu:
sh
apt-get install libssl-dev pkg-config
Install hellcheck crate:
sh
cargo install hellcheck
Configuration file hellcheck.yml
may have the following format:
```yaml
checkers: example: url: https://www.example.com notifiers: [myteam] localhost8000: url: http://localhost:8000 interval: 1500ms notifiers: [myteam, soundalarm] basicauth: username: "foo" password: "bar"
notifiers:
myteam:
type: slack
token:
Create an incoming webhook in Slack.
Then define your notifier with type slack
and webhook_url
:
yaml
notifiers:
notifier_name:
type: slack
webhook_url: <WEBHOOK_URL>
For telegram notifier you have to create a bot with BotFather and obtain the bot token.
Chat ID can be found out with GetidsBot.
yaml
notifiers:
notifier_name:
type: telegram
token: <BOT-TOKEN>
chat_id: <CHAT-ID>
yaml
notifiers:
notifier_name:
type: hipchat
base_url: https://hipchat.com
token: <AUTH_TOKEN>
room_id: <ROOM_NAME_OR_ID>
Command notifier allows you to invoke any shell command or custom script as notifier.
Example:
yaml
notifiers:
custom:
type: command
command: ["/path/to/custom-notifier.sh", "arg1", "arg2"]
Within the script the following environment variables are accessible:
HELLCHECK_ID
- checker idHELLCHECK_URL
- checker URLHELLCHECK_OK
true
- when service is upfalse
- when service is downAssuming, you have ./hellcheck.yml
in your current directory, this will start monitoring of the services,
described in checkers
configuration sections:
hellcheck watch --file ./hellcheck.yml
hellcheck test
command to test notifiers