Skip to content

Commit e05884c

Browse files
committed
Initial configuration
0 parents  commit e05884c

5 files changed

+198
-0
lines changed

.env.example

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
TELEGRAM_ADMIN="<TELEGRAM_USER_ID>"
2+
TELEGRAM_TOKEN="<TELEGRAM_BOT_TOKEN>"

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.env

README.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# Monitoring node setup
2+
3+
## prepare your monitoring node
4+
```
5+
wget -O install_monitoring.sh https://raw.githubusercontent.com/kj89/testnet_manuals/main/monitoring/install_monitoring.sh && chmod +x install_monitoring.sh && ./install_monitoring.sh
6+
```

docker-compose.yml

+136
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,136 @@
1+
version: "3.5"
2+
3+
volumes:
4+
prometheus_data: {}
5+
grafana_data: {}
6+
alerta_db: {}
7+
8+
networks:
9+
cosmos-monitoring:
10+
11+
services:
12+
prometheus:
13+
profiles: ["prometheus", "monitor"]
14+
image: prom/prometheus:latest
15+
container_name: prometheus
16+
volumes:
17+
- type: volume
18+
source: prometheus_data
19+
target: /prometheus
20+
- type: bind
21+
source: ./prometheus
22+
target: /etc/prometheus
23+
read_only: true
24+
command:
25+
- '--config.file=/etc/prometheus/prometheus.yml'
26+
- '--storage.tsdb.path=/prometheus'
27+
- '--web.enable-lifecycle'
28+
ports:
29+
- 9090:9090
30+
networks:
31+
- cosmos-monitoring
32+
restart: always
33+
34+
# default login credentials: admin/admin
35+
grafana:
36+
profiles: ["grafana","monitor"]
37+
image: grafana/grafana:latest
38+
env_file: ./grafana/grafana.conf
39+
container_name: grafana
40+
volumes:
41+
- type: volume
42+
source: grafana_data
43+
target: /var/lib/grafana
44+
- ./grafana/datasource.yml:/etc/grafana/provisioning/datasources/datasource.yml
45+
- ./grafana/dashboards:/etc/grafana/provisioning/dashboards
46+
ports:
47+
- 9999:3000
48+
networks:
49+
- cosmos-monitoring
50+
restart: always
51+
52+
node-exporter:
53+
profiles: ["node_exporter","monitor"]
54+
image: prom/node-exporter:latest
55+
ports:
56+
- 9100:9100
57+
networks:
58+
- cosmos-monitoring
59+
60+
alertmanager:
61+
profiles: ["alert"]
62+
image: prom/alertmanager:latest
63+
container_name: alertmanager
64+
networks:
65+
- cosmos-monitoring
66+
ports:
67+
- 9093:9093
68+
volumes:
69+
- type: bind
70+
source: ./prometheus/alert_manager
71+
target: /etc/alertmanager
72+
read_only: true
73+
command: [
74+
'--config.file=/etc/alertmanager/alertmanager.yml',
75+
'--log.level=debug',
76+
]
77+
hostname: 'alertmanager'
78+
restart: always
79+
80+
alerta_db:
81+
profiles: ["alert"]
82+
image: postgres:11
83+
container_name: alerta_db
84+
networks:
85+
- cosmos-monitoring
86+
volumes:
87+
- type: volume
88+
source: alerta_db
89+
target: /var/lib/postgresql/data
90+
environment:
91+
POSTGRES_DB: cosmos_monitoring
92+
POSTGRES_USER: admin
93+
POSTGRES_PASSWORD: admin
94+
hostname: 'alerta_db'
95+
restart: always
96+
97+
alerta:
98+
profiles: ["alert"]
99+
image: alerta/alerta-web:latest
100+
container_name: alerta
101+
networks:
102+
- cosmos-monitoring
103+
ports:
104+
- 8083:8083
105+
depends_on:
106+
- alerta_db
107+
volumes:
108+
- type: bind
109+
source: ./alerta/alertad.conf
110+
target: /app/alertad.conf
111+
read_only: true
112+
environment:
113+
- DATABASE_URL=postgres://postgres:postgres@alerta_db:5432/monitoring
114+
- PLUGINS=reject,blackout
115+
hostname: 'alerta'
116+
restart: always
117+
118+
alertmanager-bot:
119+
profiles: ["alert"]
120+
command:
121+
- '--alertmanager.url=http://alertmanager:9093'
122+
- '--log.level=info'
123+
- '--store=bolt'
124+
- '--bolt.path=/data/bot.db'
125+
environment:
126+
TELEGRAM_ADMIN: ${TELEGRAM_ADMIN}
127+
TELEGRAM_TOKEN: ${TELEGRAM_TOKEN}
128+
image: metalmatze/alertmanager-bot:0.4.3
129+
networks:
130+
- cosmos-monitoring
131+
ports:
132+
- 8080:8080
133+
hostname: 'alertmanager-bot'
134+
restart: always
135+
volumes:
136+
- ./data:/data

install_monitoring.sh

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
#!/bin/bash
2+
echo "=================================================="
3+
echo -e "\033[0;35m"
4+
echo " ::: ::: ::::::::::: :::: ::: :::::::: ::::::::: :::::::::: :::::::: ";
5+
echo " :+: :+: :+: :+:+: :+: :+: :+: :+: :+: :+: :+: :+: ";
6+
echo " +:+ +:+ +:+ :+:+:+ +:+ +:+ +:+ +:+ +:+ +:+ +:+ ";
7+
echo " +#++:++ +#+ +#+ +:+ +#+ +#+ +:+ +#+ +:+ +#++:++# +#++:++#++ ";
8+
echo " +#+ +#+ +#+ +#+ +#+#+# +#+ +#+ +#+ +#+ +#+ +#+ ";
9+
echo " #+# #+# #+# #+# #+# #+#+# #+# #+# #+# #+# #+# #+# #+# ";
10+
echo " ### ### ##### ### #### ######## ######### ########## ######## ";
11+
echo -e "\e[0m"
12+
echo "=================================================="
13+
14+
sleep 2
15+
16+
echo -e "\e[1m\e[32m1. Updating dependencies... \e[0m" && sleep 1
17+
sudo apt-get update
18+
19+
echo "=================================================="
20+
21+
echo -e "\e[1m\e[32m2. Installing required dependencies... \e[0m" && sleep 1
22+
23+
echo "=================================================="
24+
25+
echo -e "\e[1m\e[32m3. Checking if Docker is installed... \e[0m" && sleep 1
26+
27+
if ! command -v docker &> /dev/null
28+
then
29+
30+
echo -e "\e[1m\e[32m3.1 Installing Docker... \e[0m" && sleep 1
31+
sudo apt-get install ca-certificates curl gnupg lsb-release wget -y
32+
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
33+
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
34+
sudo apt-get update
35+
sudo apt-get install docker-ce docker-ce-cli containerd.io -y
36+
fi
37+
38+
echo "=================================================="
39+
40+
echo -e "\e[1m\e[32m4. Checking if Docker Compose is installed ... \e[0m" && sleep 1
41+
42+
docker compose version
43+
if [ $? -ne 0 ]
44+
then
45+
46+
echo -e "\e[1m\e[32m4.1 Installing Docker Compose v2.3.3 ... \e[0m" && sleep 1
47+
mkdir -p ~/.docker/cli-plugins/
48+
curl -SL https://github.com/docker/compose/releases/download/v2.2.3/docker-compose-linux-x86_64 -o ~/.docker/cli-plugins/docker-compose
49+
chmod +x ~/.docker/cli-plugins/docker-compose
50+
sudo chown $USER /var/run/docker.sock
51+
fi
52+
53+
echo "=================================================="

0 commit comments

Comments
 (0)