Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Unintended behavior
View staffing
Description
I see
Mode.Min
andMode.Max
were recently added, would it be possible to also add a Mode for P50/P90/P95/P99, or similar? For example we may expect the first execution of a block of code to be slower due to initializations, and faster on subsequent executions. It would be great to have a metric to measure this type of situation.Mode.Average
would be convenient. This can already be figured usingMode.Sum
since it supplies the count and total duration, but condensing the result into a single line would be nice.