Skip to content

Commit 6b5d14d

Browse files
committed
Add option to add additional validators using command
1 parent 1d1a809 commit 6b5d14d

File tree

4 files changed

+8
-11
lines changed

4 files changed

+8
-11
lines changed

README.md

+5-7
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,6 @@ vim $HOME/cosmos_node_monitoring/config/.env
4242

4343
| KEY | VALUE |
4444
|---------------|-------------|
45-
| VALIDATOR_IP | Public ip address of you validator |
46-
| VALOPER_ADDRESS | Operator address of your validator, for example, _"agoricvaloper1zyyz4m9ytdf60fn9yaafx7uy7h463n7alv2ete"_ |
47-
| WALLET_ADDRESS | Your validator self-deligate wallet address, for example, _"agoric1zyyz4m9ytdf60fn9yaafx7uy7h463n7a05eshc"_ |
4845
| TELEGRAM_ADMIN | Your user id you can get from [@userinfobot](https://t.me/userinfobot). The bot will only reply to messages sent from the user. All other messages are dropped and logged on the bot's console |
4946
| TELEGRAM_TOKEN | Your telegram bot access token you can get from [@botfather](https://telegram.me/botfather). To generate new token just follow a few simple steps described [here](https://core.telegram.org/bots#6-botfather) |
5047

@@ -54,13 +51,14 @@ echo "export $(xargs < $HOME/cosmos_node_monitoring/config/.env)" > $HOME/.bash_
5451
source $HOME/.bash_profile
5552
```
5653

57-
### Update _prometheus_ configuration file
54+
### Add validator into _prometheus_ configuration file
55+
To add validator use command with specified `VALIDATOR_IP`, `WALLET_ADDRESS` and `VALOPER_ADDRESS`
5856
```
59-
sed -i "s/VALIDATOR_IP/$VALIDATOR_IP/g" $HOME/cosmos_node_monitoring/prometheus/prometheus.yml
60-
sed -i "s/VALOPER_ADDRESS/$VALOPER_ADDRESS/g" $HOME/cosmos_node_monitoring/prometheus/prometheus.yml
61-
sed -i "s/WALLET_ADDRESS/$WALLET_ADDRESS/g" $HOME/cosmos_node_monitoring/prometheus/prometheus.yml
57+
$HOME/cosmos_node_monitoring/add_validator.sh VALIDATOR_IP WALLET_ADDRESS VALOPER_ADDRESS
6258
```
6359

60+
> example: `$HOME/cosmos_node_monitoring/add_validator.sh 1.2.3.4 cosmosvaloper1s9rtstp8amx9vgsekhf3rk4rdr7qvg8dlxuy8v cosmos1s9rtstp8amx9vgsekhf3rk4rdr7qvg8d6jg3tl`
61+
6462
### Run docker compose
6563
Deploy the monitoring stack
6664
```

add_validator.sh

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
yq -i -y '.scrape_configs[] |= (.job_name as $name | .static_configs += if $name == "prometheus" then [] else ([{targets:["'$1'" + (if $name == "node" then ":9100" elif $name == "cosmos" then ":26660" else ":9300" end)], labels:(if $name == "validator" then {address: "'$2'"} elif $name == "wallet" then {address: "'$3'"} else {} end)}]) end)' $HOME/cosmos_node_monitoring/prometheus/prometheus.yml

config/.env.example

-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,2 @@
1-
VALIDATOR_IP="<YOUR_VALIDATOR_IP>"
2-
VALOPER_ADDRESS="<YOUR_VALOPER_ADDRESS>"
3-
WALLET_ADDRESS="<YOUR_WALLET_ADDRESS>"
41
TELEGRAM_ADMIN="<YOUR_TELEGRAM_USER_ID>"
52
TELEGRAM_TOKEN="<YOUR_TELEGRAM_BOT_TOKEN>"

install_monitoring.sh

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ sudo apt-get update
1919
echo "=================================================="
2020

2121
echo -e "\e[1m\e[32m2. Installing required dependencies... \e[0m" && sleep 1
22-
22+
sudo wget -qO /usr/local/bin/yq https://github.com/mikefarah/yq/releases/download/v4.23.1/yq_linux_amd64 && chmod +x /usr/local/bin/yq
23+
sudo apt-get install jq -y
2324
echo "=================================================="
2425

2526
echo -e "\e[1m\e[32m3. Checking if Docker is installed... \e[0m" && sleep 1

0 commit comments

Comments
 (0)