Celestia Validator monitoring guide with tenderduty
TenderDuty monitoring allows you to monitor nodes, see the height of the network, validator status, uptime, signed and transmitted blocks. You can enable notifications in Telegram and Discord.
Update packages and Install dependencies
sudo apt update && sudo apt upgrade -y
sudo apt install curl build-essential git wget jq make gcc tmux htop nvme-cli pkg-config libssl-dev libleveldb-dev tar clang bsdmainutils ncdu unzip libleveldb-dev -yInstall docker
apt update && \
apt install apt-transport-https ca-certificates curl software-properties-common -y && \
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - && \
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/ubuntu focal stable" && \
apt update && \
apt-cache policy docker-ce && \
sudo apt install docker-ce -y && \
docker --versionInstall tenderduty
tmux new-session -s tenderduty
mkdir tenderduty && cd tenderduty
docker run --rm ghcr.io/blockpane/tenderduty:latest -example-config >config.ymlSet configuration


After setting up the config, run
Check the logs

Turn on firewall to protect your server and open the required port


Restart docker tenderduty
Last updated