ecg
is a cosmos validator heartbeat monitoring tool.
This tool is installable as a crate.
bash
cargo install ecg
Or available as a Docker image.
bash
docker pull ghcr.io/setten-io/ecg:$VERSION
Ecg is made to work with a heartbeat (or "cron") monitor available on services like betteruptime.
In short, it works like a dead man switch. As long as ecg is able to send a request to the monitor at a regular interval, alerting will not be triggered. The default state being alerting, you will get notified in many edge scenarios where traditional monitoring would fail.
Some example failures that might not get you notified:
Warning
Monitoring is essential, ecg and heartbeat type monitoring are complementary to other tools and methods.
They should be used together in conjuction.
Ecg will not send heartbeat if, since last checked:
```md ecg 0.1.0 Heartbeats for cosmos validators
USAGE:
ecg [OPTIONS]
ARGS:
OPTIONS:
-h, --help Print help information
-i, --interval
It is possible to change ecg logging level through the ECG_LOG
env var, or for all/any module through the RUST_LOG
env var.
Example with the binary.
```bash
ecg terravalcons1abcdef1234567890 https://phoenix-lcd.terra.dev https://your-heartbeat-monitor-url.com
ECG_LOG=debug ecg --interval 20 terravalcons1abcdef1234567890 https://phoenix-lcd.terra.dev https://your-heartbeat-monitor-url.com
export VALCONSADDR="terravalcons1abcdef1234567890" export LCDURL="https://phoenix-lcd.terra.dev" export HEARTBEAT_URL="https://your-heartbeat-monitor-url.com" ecg ```
Example via docker.
bash
docker run \
-e VALCONS_ADDR="terravalcons1abcdef1234567890" \
-e LCD_URL="https://phoenix-lcd.terra.dev" \
-e HEARTBEAT_URL="https://your-heartbeat-monitor-url.com" \
ghcr.io/setten-io/ecg:$VERSION