πŸ””Initia Validator Monitoring

Functionality πŸ’‘

The advantage of the bot is that you can monitor the operation of the node in one of several ways that are convenient for you. Let's go through each of them.

1️⃣ RPC IP and PORT

  • RPC IP - The IP of your server on which you run yours RPC

A quick command to find out the IP:

hostname -I | awk '{print $1}'
  • PORT - the port of your RPC

A quick command to find out your port

initiad status | jq -r '.node_info.other.rpc_address' | awk -F '[:/]' '{print $5}'

Example:

2️⃣ RPC URL

If you are using a domain name as a reference to your RPC, just paste it and you will see up-to-date information about how your RPC works.

Example:

3️⃣ Validator moniker

Just enter the name of your validator and you will get details about how it works.

Example:

4️⃣ Validator address

You need to specify your valoper address.

A quick command to find out the address:

initiad keys show wallet --bech val -a

Example:

Other possibilities βœ…

If you have already entered the required data using 1 of the 4 methods, you can use the following options:

1️⃣ /start

  • use if you have never run our bot before

2️⃣ /check

  • manually review the status of your bot again (can be used at any time)

3️⃣ /reset

  • you can reset the bot to set it up again, for example

4️⃣ /toggle_alert

Notification of missed blocks by your validator

  • After adding one of the tracking methods, notifications are automatically turned on.

  • You will receive a notification if your validator has missed 50 blocks.

  • Every 5 minutes you will receive a notification if your node is missing blocks.

Example Alert

Last updated