yosi
yosi

Reputation: 639

Monitoring Tomcat response time

I have a standard use case of monitoring the response time of the requests hitting my Tomcat server. I have enabled the access log and added to the pattern the response time (%D).

Now I would like to monitor the response time of my server. For example:

  1. What was the avarege response time in the last hour?
  2. What was the the median response time in the last hour?
  3. What was the 90% response time in the last hour?

etc.

Do I have a tool that can provide me these statistics with charts?

Yosi

Upvotes: 2

Views: 4630

Answers (3)

James Pulley
James Pulley

Reputation: 5682

Have you considered Splunk? It's ability to process logs and visualize the data is quite well known.

Upvotes: 0

Heiko Rupp
Heiko Rupp

Reputation: 30934

There are many monitoring systems out there, that can help you. Nagios is for sure one of the most well known. Others include RHQ, also allow you to monitor e.g. VM and OS statistics in addition to the response time stats.

Upvotes: 0

fab
fab

Reputation: 1859

I think JavaMelody can do what you want. It's very easy to set up and gives you some pretty nice graphs of more or less useful information. (The response time you mentioned is included)

Upvotes: 3

Related Questions