For web app debugging purposes, I am currently showing a single number that represents the average JSON request time.
We do a large number of JSON requests, and most of them succeed quickly. The ones that occasionally take a few seconds to complete are the real problem. Showing the average request time is nearly useless, as the average is almost always excellent.
What kind of calculation can I do to generate a quality-of-service type of number that will go up when long request times start to become more prevalent?
Something like "max request time time in the last 5 minutes" is one way, but that doesn't give any information about how many times it happened or really how bad the problem is.
Thank you.