What are reasonable response times for these endpoints?

DavidM February 2, 2015

We do a lot of internal logging for performance monitoring. We don't have a lot of data from which to determine times that would indicate some a problem in progress, so what should we be looking for?

We have "System A," that can access arbitrary URLs and measure response time, but we also can analyze all of the access logs to see actual response time for all requests of a certain type. The ones we're measuring now (and our entirely arbitrarily chosen guesses) are:

  • /secure/RapidBoard.jspa?rapidView= (6 seconds)
  • /secure/Dashboard.jspa?selectPageId= (10 seconds)
  • /browse/[A-Z]+-[0-9]+ (10 seconds)
  • /secure/BrowseProjects.jspa (10 seconds)
  • /issues/?filter= (10 seconds)
  • /secure/StructureBoard.jspa?s= (10 seconds)

So my questions are, are those reasonable endpoints to check (for instance, I question the value of BrowseProjects.jspa) and/or are there others we should be checking? How about the times we've chosen?

 

 

3 answers

0 votes
Boris Berenberg
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 4, 2015

I think if you are capturing all request durations at the proxy level then the best thing is to run analysis based on frequency of requests * their total length. A request that takes 3 minutes to return but happens once a month is not as severe as a request that happens 100 times a day and takes 10 seconds. Rather then asking what endpoints to monitor (which will vary from system to system), this kind of an analysis will show you which endpoints matter for your system, and allow you to track their performance over time.

0 votes
DavidM February 4, 2015

We run apache as a proxy in front of tomcat, so we're presently analyzing the duration of requests. For this purpose, we're less interested in browser performance and more interested in server performance. For instance, recent log analysis show us just how hard we were getting hammered by https://jira.atlassian.com/browse/GHS-8775.

0 votes
Boris Berenberg
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 2, 2015

The biggest thing I would ask is what are you actually measuring for response time? Is this time to get a valid HTTP response? First response? Last response? When the page finishes rendering client side? Is your test system actually running the JS as well?

Suggest an answer

Log in or Sign up to answer