hubot-pager-me
hubot-pager-me copied to clipboard
Doesn't return all on-call schedules
We have a large number of on-call schedules. "Who is on call" only lists some subset. My guess is that we are only getting the first "page" of results from the PD API and pagination is not being used. See "This action is paginated. See the pagination documentation for details." here, https://developer.pagerduty.com/documentation/rest/schedules/list
Also forgot to mention that the returned subset of results are different each time "who is on call" is used.
The default (in most places) is 100 results. This script currently uses msg.send
for each schedule found which could flood a channel/room/whatever, so that might need to be revisited as part of this.
@technicalpickles – Any chance this will be worked on? Or tips on how to fix it? Spent about two hours trying to fix this with no luck.
@technicalpickles – I eventually fixed it on my end on a heavily modified fork of this repo: https://github.com/optimizely/hubot-pager-me/blob/devel/src/scripts/pagerduty.coffee
I also eliminated most of the features since we only want the "who is on call" functionality.
The code isn't very elegant but it works (and I already spent way too long working on it :smile:)!
@danoc I took a look at your fork, and I'm not seeing anything obvious that fixes the issue you reported. I would have guessed that we needed to deal with pagination or something, but I don't see code for that. Interestingly, I've been working on some refactorings that also use the async
module.
@technicalpickles I guess my issue may be a little different. We only have around 20 schedules, but flooding Slack with that many msg.send
's would cause Hubot to crash before printing all of the schedules.
My solution uses async.map
to loop through the schedules, get an array of who is on call messages, and then join that array and only print it once: https://github.com/optimizely/hubot-pager-me/blob/798edc845e24f9e043a7f11c23ab6fb32faa981d/src/scripts/pagerduty.coffee#L35-L37
See async.map
example: https://github.com/caolan/async#quick-examples
My solution uses async.map to loop through the schedules, get an array of who is on call messages, and then join that array and only print it once: https://github.com/optimizely/hubot-pager-me/blob/798edc845e24f9e043a7f11c23ab6fb32faa981d/src/scripts/pagerduty.coffee#L35-L37
That's exactly what https://github.com/hubot-scripts/hubot-pager-me/pull/50 does too :grin:
@technicalpickles Heh, awesome. Thanks! I guess my issue is different then.
We were also having this same issue, @danoc. I eventually ended up requesting the who's on call list one person at a time, appending each result to an array as it came back, and then sending the array as the message. I put in the PR to fix this at its source and made sure to mention this issue.