This is a bot that receives messages from pingdom and sends it to matrix
Depending on your environment set:
.env based on .env_sample if you run via docker composeMATRIX_SERVER=https://matrix.example.org
MATRIX_TOKEN=matrix_token
ACCESS_TOKENS={ 'Identifier name': 'thisISaSAMPLEtoken', 'Identifier name2': 'abc',}
MATRIX_ROOMS={ 'test_room': '!room_id:example.org', 'test_room2': '!room_id2:example.org',}
LOG_LEVEL=DEBUG
debug_enabled=True
Set the webhook to your instance
Example: https://matrix.example.org/pingdom?token=thisISaSAMPLEtoken&room=test_room
Add your nginx or whatever is your termination an ACL that forwards the request to the bot
nginx example:
server {
...
location /pingdom {
proxy_pass http://127.0.0.1:8089;
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
client_body_buffer_size 1M;
client_max_body_size 1M;
}
}
Create the .env file based on .env_sample and run the composer
git clone https://github.com/daniego/matrix_pingom_bot.git
cd matrix_pingom_bot
cp .env_sample .env
vi .env
# and customize your settings
docker-compose pull && docker-compose up -d
python3 -m venv ~/.venv/matrix_pingom_bot
source ~/.venv/matrix_pingom_bot/bin/activate
git clone [email protected]:daniego/matrix_pingom_bot.git
cd matrix_pingom_bot
pip install -r requirements.txt
python matrix_pingom_bot.y
Coming soon
This is a quick and dirty way to test that all pingon dialects get processed
for payload in $(ls pindgom_sample_requests); do curl -XPOST -d "@pindgom_sample_requests/${payload}" -H "Content-Type: application/json" 127.0.0.1:8089?token=abc\&room=test_room; done
Feel free to fork, create a branch and send a PR
Content type
Image
Digest
Size
73.7 MB
Last updated
over 5 years ago
docker pull daniego/matrix_pingdom_bot