sentry icon indicating copy to clipboard operation
sentry copied to clipboard

fix(discover): Apdex potentially nan

Open wmak opened this issue 2 years ago • 0 comments

  • The denominator of apdex could potentially be 0 resulting in apdex being nan. Using resolve_division instead which checks that the denominator isn't 0 before dividing.
  • Adds a param to set the fallback value, this is cause otherwise apdex for that bucket will be None, and not get zerofilled.

wmak avatar Aug 05 '22 17:08 wmak