3 unstable releases
0.2.1 | Jan 19, 2023 |
---|---|
0.2.0 | May 11, 2018 |
0.1.0 | May 11, 2018 |
#479 in Concurrency
303 downloads per month
11KB
171 lines
Vigil
Software watchdog library for Rust services.
Documentation
Usage
Install from crates.io by adding vigil
to your Cargo.toml
:
[dependencies]
vigil = "0.1"
Now you can create a Vigil instance which the watched code must notify every so often. If the watched code misses too many notification ticks, the pre-programmed callbacks will be fired to allow you to handle the situation (gather diagnostics, raise an alarm, cancel the stalled task, or even kill the whole process).
let vigil = Vigil::create(10_000,
Some(|| warn!("Watched code missed a watchdog check"),
Some(|| error!("Watched code missed multiple watchdog checks!"),
Some(|| { error!("Deadlock detected, exiting"); std::process::exit(101));
loop {
do_work();
vigil.notify();
}
Dependencies
~87KB