Generate a report for the oncall rotation using PagerDuty API
Using homebrew
brew tap form3tech-oss/tap
brew install pd-report
Generate on-call rotation reports automatically
from your PagerDuty account.
Usage:
pd-report [command]
Available Commands:
help Help about any command
report generates the report(s) for the given schedule(s) id(s)
schedules list schedules on PagerDuty
services list services on PagerDuty
teams list teams on PagerDuty
users list users on PagerDuty
Flags:
--config string configuration file (default is ~/.pd-report-config.yml)
-h, --help help for pd-report
Use "pd-report [command] --help" for more information about a command.
-
And
report
specific flags:Usage: pd-report report [flags] Flags: -h, --help help for report -o, --output-format string pdf, console, csv (default "console") -d --output string filepath output path (default is $HOME) -s, --schedules strings schedule ids to report (comma-separated with no spaces), or 'all' (default [all]) Global Flags: --config string configuration file (default is ~/.pd-report-config.yml)
The configuration must be a .yml
file (specified by the --config
flag) with the following content:
# PagerDuty auth token
pdAuthToken: 12345
# Explicitly set report time range (RFC822)
reportTimeRange:
start: 01 Jan 20 00:00 UTC
end: 01 Feb 20 00:00 UTC
# Rotation general information
rotationInfo:
dailyRotationStartsAt: 8
checkRotationChangeEvery: 30 # minutes
defaultHolidayCalendar: uk # default calendar to use for users not specified in config, allows you to only define users with different calendars. If value not specified then fall back to old behaviour
# Rotation excluded hours by day type
rotationExcludedHours:
- day: weekday
excludedStartsAt: 9
excludedEndsAt: 17
# Rotation prices by day type
rotationPrices:
currency: £
daysInfo:
- day: weekday
price: 1
- day: weekend
price: 2
- day: bankholiday
price: 2
# List of users to be considered for the rotation
# Each one should be specifying a calendar for the bank holidays
# and the ID defined in PagerDuty
rotationUsers:
- name: "User 1"
holidaysCalendar: uk
userId: P11A11B
- name: "User 2"
holidaysCalendar: uk
userId: P22A22B
- name: "Roger Solé"
holidaysCalendar: sp_premia
userId: P33A33B
# Time range overrides on a per-schedule basis (RFC 822)
scheduleTimeRangeOverrides:
- id: ABCDEFG
start: 01 Jan 20 00:00 UTC
end: 21 Jan 20 00:00 UTC
# List of schedule IDs that can be ignored when generating the report
schedulesToIgnore:
- SCHED_1
- SCHED_2
The default configuration file is
~/pd-report-config.yml
. To specify the path and the filename, the flag--config
can be used on commands execution.
list-people
command: the pagination is not implemented (yet)report
command: no way to specify the output folder/filename for the pdf reportcalendars
:- there are only 2018 and 2019 uk bank holiday calendars defined
- there is no possibility to load external calendars (yet)
- Add support for calendars loaded from outside the application
- Enable input to select month (concrete dates) to generate the report for