Mar 19, 2010

Java Execution Time Measurement Library - JETM

The first part of analyzing the applications with bad performance is to identify the code fragments which are causing the issue. In order to identify them, we will need to find out the execution timings across different pieces of the application. 

To achieve this, we follow one of the following approaches

  • Profile the application using a java profiler.
  • Write log statements to determine the execution times

Profilers can give fine grained information regarding the memory allocation, execution paths and garbage collection behavior.  Profilers add overhead to the execution and often make the applications slower.  So this cannot be used in a real production environment.

The second approach of writing log statements is a time consuming and requires lot of changes to your source code.  This process can be reduced by writing aspect classes which will include log statements and apply advice on various point cuts (AOP approach)

But we always wish that it will be useful if we can have a library which will help us in measuring the execution times with little or no changes to our source code with a very less overhead. 

While exploring this, I have found out that there is a Java Execution Time Measurement Library which perfects fits in this area.

Features of this library

  • Very light weight and free library. 
  • Very low overhead
  • Can be used declaratively or programmatically
  • Can record the data in a flat or nested manner
  • No VM level instrumentation needed
  • Built in http console which can used to view the execution timings in the form of a report
  • Specify the classes (expressions allowed) to be monitored

Best part of it is that we can easily integrate this if you are already using spring framework in your application.  You can make few changes in your spring context files (in a declarative fashion of course) and add one jetm.jar.  You are on your way to collecting the execution times of various classes and methods in your application.

Go ahead and try it out yourself. 

URL: http://jetm.void.fm/

Related Posts

Related Posts:

  • Do you know Credit Card Validation Algorithm ?A Web Application commonly involves transactions which require processing of Credit Card information. Implementation of basic credit card validation ensures that the final overhead involving the actual verification of credi… Read More
  • Asynchronous mailing through Tomcat6 and Seam 2.1.2This article assumes Seam application is already configured on Tomcat. Steps to implement Asynchronous mailing Copy following mail related jars from jboss-seam-2.1.2\lib to the projects’ \WEB-INF\lib folder. J… Read More
  • How to handle Memory Leaks in Java/J2EE Applications ?In this article, I have tried to analyze the various causes which may lead to Memory Exception. Once an ‘OutOfMemoryException’ is thrown, how best can it be handled has been discussed in this artilce. OutOfMemoryException … Read More
  • Constructors in JavaWhat are Constructors in Java A constructor creates an Object of the class that it is in by initializing all the instance variables and creating a place in memory to hold the Object.  We can’t make a new object with o… Read More
  • Java Execution Time Measurement Library - JETMThe first part of analyzing the applications with bad performance is to identify the code fragments which are causing the issue. In order to identify them, we will need to find out the execution timings across different piece… Read More

0 comments:

Text Widget

Copyright © 2025 Vinay's Blog | Powered by Blogger

Design by | Blogger Theme by