Monitoring Tools to Monitor JVM and Oracle Connections and Network.
Mp Ramkumar
Greenhorn
Joined: Apr 28, 2009
Posts: 26
posted
0
Hi,
We are using Load Runner for the performance Testing of our application. We do not have java heap size monitoring tool, Oracle connections,sqls monitoring tool and also the Netword bandwidth and Latency monitoring tool when the concurrent user test execution is inprogress.
Using Load runner we are capturing the server level resources like available MBytes, Java process utilization, CPU utilization etc., we do not have license for may other counters to monitor.
Can some one please suggest us a free tool which will help us to track the JVM heap size utilization and GC etc., Network idle/usage etc., Oracle
Thanks
Ram
tim fox
Greenhorn
Joined: Oct 18, 2009
Posts: 4
posted
0
One easy thing you can do is to turn on Garbage Collection stats at the JVM. If you are using OC4J, then go in to the JVM you're dealing with and get to the Server Parameters section under Administration. Once there, you can turn on GC stats and have them written to a file. Add this to the JVM parameters:
-verbose:gc -Xloggc:c:\somedirectory\log.txt
This will output heap stats that will tell you the total heap size, memory allocated before a GC, after a GC and how long the GC took. You can then download a GC viewer that will graph this data for you if you find that necessary. For the most part, we use the log file when we think there is something wrong and we just tail it to see real-time stats.
Using this method applies only a minute additional load on the JVM, unlike using a profiler.
TGF
Mp Ramkumar
Greenhorn
Joined: Apr 28, 2009
Posts: 26
posted
0
Thanks Tim... Can this be used in our Performance Testing environment. Because if it uses resources considerably then our response times varies. So I am asking?
Thanks
Ram
Salil Vverma
Ranch Hand
Joined: Sep 06, 2009
Posts: 219
posted
0
Hi Tim,
can we do the same settings in Apache Tomcat as well? If yes then which file should I update with the line mentioned by you..
Have a look at Java-monitor. It is a free, on-line monitoring service. It will graph your JVM resources, as you can see in the live demo: http://java-monitor.com/livedemo.html
Java-monitor does not monitor your network, though. You'd have to use some other tool for that.
Thanks Kees Jan. I will publish our experiment status once we verify. We need to verify the load on the appserver during performance testing with some no. of users, due to this monitoring work.
Mp Ramkumar
Greenhorn
Joined: Apr 28, 2009
Posts: 26
posted
0
Hi Guys,
We have used Jconsole with Weblogic with our product. When 100 concurrent users accessing the application we have observered the jVM usage and response times of the transactions. (When Jconsole is not used with weblogic), and (When Jconsole is used with weblogic to collect JVM details).
The response times and the server resources consumtion seems normal. No difference. Hence planning to JConsole.
Thanks to all.
Can some one suggest a good tool for Oracle monitoring. We would like to monitor Sessions, SGA, Cursors etc., We need a opensource tool.
Thanks & Regards,
Ram
steve souza
Ranch Hand
Joined: Jun 26, 2002
Posts: 852
posted
0
With jamon you can monitor jdbc connections, exceptions, and query performance times to name a few.
Java monitoring tool – deploy in minutes to analyze and manage real-time performance for critical web apps & NoSQL DBs requiring java monitoring.
For getting more detail about this tool visit:Java monitoring tool
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: Monitoring Tools to Monitor JVM and Oracle Connections and Network.