mirror of https://github.com/dcarrillo/pdcheck.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
3 years ago | |
---|---|---|
.github/workflows | 3 years ago | |
PagerDutyChecker | 3 years ago | |
resources | 3 years ago | |
.gitignore | 3 years ago | |
README.md | 3 years ago | |
noxfile.py | 3 years ago | |
pdcheck.py | 3 years ago | |
requirements.txt | 3 years ago |
README.md
Pager Duty check
A POC for a multi os (QT5) system tray app for checking pager duty incident status. Currently when an incident is triggered or marked as acknowledge an icon is shown accordingly at your system tray, when clicking, a menu with links to the Pager Duty incident page is shown.
Configuration
Auth
An API Token from your Pager Duty settings is needed.
Configuration file
Create a file named pdcheck.yml
at the same level of pdcheck.py
, example:
---
interval: 30 # Interval between checks, 30 seconds by default
pd_api_key: xxxxxx # Pager Duty API key
pd_teams: # Array of team identifiers to filtering by. Empty by default.
- XXXXXX
pd_users: # Array of user identifiers to filtering by. Empty by default.
- XXXXXXX
The system environment variable PD_API_KEY
can be used instead of setting pd_api_key
.