• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Ron McLeod
  • Jeanne Boyarsky
Sheriffs:
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Roland Mueller
Bartenders:

Performance testing

 
Ranch Hand
Posts: 58
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I read that the book covers performance testing. Does it cover any specific tools for performance testing like JMeter?
 
Ranch Hand
Posts: 209
1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Just want to add similar question:

Any notable performance stats?
With the new release, what type of usage will you now recommend Tomcat as the primary server? What type of web server usage will you not recommend Tomcat?
 
Ranch Hand
Posts: 862
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
<<Does it cover any specific tools for performance testing like JMeter?>>
JAMon allows you to monitor many things about the response, and request and requires no changes to your application. For example you can have performance metrics for all pages (i.e. hits/avg/max) as well as which pages are currently executing. You can also see stats for http status codes (i.e. how many http status codes of 200/404/... have been invoked). And also how many bytes are returned for each page. You can also view exception stack traces and more.

Enabling jamon just takes a minute. Make a modification to server.xml, and install jamon-2.7.jar and jamon.war in tomcat.

JAMon does more than performance monitoring. It is a window into what is currently happening inside your program. It also monitors jdbc/sql, log4j (also allows you to 'tail' the log in real time via a web page), and ejb's (via an ejb interceptor).

This link has more info on monitoring tomcat. http://jamonapi.sourceforge.net/http_monitoring.html
[ October 02, 2007: Message edited by: steve souza ]
 
No one can make you feel inferior without your consent - Eleanor Roosevelt. tiny ad:
Clean our rivers and oceans from home
https://www.kickstarter.com/projects/paulwheaton/willow-feeders
reply
    Bookmark Topic Watch Topic
  • New Topic