alert
: Notify your desktop or mobile device when a job completesWORK IN PROGRESS. This is under heavy development the week of 8 May 2017.
At Faraday, we have a lot of long-running processes, and we need an easy way to
know when they complete. The alert
command is intended to make it easy to know
when things succeed or fail:
```sh
export PUSHOVER_TOKEN=...
export PUSHOVERUSER=... alert run mylongrunningcommand ```
This will play different sounds for success and failure.
Right now, we only support Superblock, LLC's Pushover system, which provides excellent, hard-to-miss notifications for iOS, Android and web browsers. (This application has no relation to Superblock, LLC. We just use their API.)
Some features which we want to add:
```sh
alert watch -n 5 -s 'myjob.failed' -f 'myjob.success' \ --timout 10m \ pachctl list-jobs ```
We'd also list to add:
On Linux, you'll need to install the dbus-1
dev packages.
```sh
sudo apt install libdbus-1-dev ```
Once this is done, install Rust and alert
:
sh
curl https://sh.rustup.rs -sSf | sh
cargo install alert