https://github.com/docplanner/pingdom-twilio-integration
https://github.com/docplanner/pingdom-twilio-integration
go integration pingdom sms twilio
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/docplanner/pingdom-twilio-integration
- Owner: DocPlanner
- Created: 2020-02-05T10:11:59.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-11-23T13:15:03.000Z (over 4 years ago)
- Last Synced: 2024-03-26T19:22:52.222Z (about 2 years ago)
- Topics: go, integration, pingdom, sms, twilio
- Language: Go
- Size: 19.5 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# pingdom-twilio-integration
[](https://hub.docker.com/r/docplanner/pingdom-twilio-integration)
## How it works?
pingdom-twilio-integration sends messages to contact groups defined in configuration.
## Pingdom configuration
Only thing to do is to add webhook to your check in Pingdom
### Sample webhook url
`https://your.domain.tld/?secret=SECRET&contact_group=ops`
SECRET is a value defined in config file as secret
## How to use
To use this tool run `pingdom-twilio-integration` with `-config config.yaml`
```yaml
contacts:
bob: "+48999888777"
tod: "+48888777666"
contact_groups:
ops: [bob, tod]
twilio:
phone_from: "+48444555666"
account_sid: "xxx"
auth_token: "xxx"
secret: "SECRET"
```