Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
19answers
17k views

Which Java profiler is better: JProfiler or YourKit?

Which profiler is better for general purpose profiling and heap analysis? 90% of our apps are standalone command line programs with substantial database and numeric processing. The other 10% are ...
10
votes
2answers
469 views

Profiling Java running by JNI calls

I have a C++ code that upon execution: Loads JVM (I have full control on how to load the JVM), and call Java methods (from loaded classes) using C JNI code. The Java code has no Main() and it is ...
4
votes
6answers
394 views

Profiling native methods in Java - strange results

I have been using Yourkit 8.0 to profile a mathematically-intensive application running under Mac OS X (10.5.7, Apple JDK 1.6.0_06-b06-57), and have noticed some strange behavior in the CPU profiling ...
3
votes
2answers
169 views

Does YourKit report ReentrantLocks?

I am trying to reduce the lock contention on a particular code-path in my application. To identify code with high lock contention, I connect YourKit to my application and use the "Monitor" tab and see ...
2
votes
2answers
106 views

tools similar to yourkit?

I've been using yourkit, it's a great tool. I normally use the CPU consumption level curve, and thread drill-down against time. but recently I am suspecting that yourkit is causing the random ...
2
votes
3answers
295 views

How to measure I/O time for a java application running on ubuntu?

I would like to gather amount of time my application is waiting for I/O. I am running this java application on ubuntu/linux. I am using yourkit profiler. Suggest if there any other profiling tool for ...
1
vote
5answers
165 views

Profiled app with YourKit, still can't identify the CPU hog

I've got a Java application that is consuming 100% of the CPU most of the time (as indicated by cacti and top monitoring). We fired up YourKit (which confirms the CPU resource issue) and it identifies ...
1
vote
3answers
194 views

Java Profiling Tool for CPU consumption

I have used JProfiler, JProbe, AppSight, YourKit for the finding out what code is consuming CPU. But YourKit looks better than others. Is there anything better ?
1
vote
5answers
923 views

How do I connect to a Java command-line tool with the YourKit Java Profiler?

I've build a command-line tool in Java, which I would now like to profile with YourKit. I launch the command-line tool with something like: $ java -classpath .:foo.bar.jar com.foobar.tools.TheTool ...
0
votes
2answers
133 views

YourKit Profile On Remote Grails App

I am trying to track down a memory leak that I am having with a Grails application and am using the Yourkit Profiler, but am running into a problem. I have the Grails application running in Tomcat6 ...
0
votes
2answers
106 views

Why does Yourkit 8.X is recommended to profile only java 5 applications?

When upgrading yourkit profiler I've noticed the following message at their web site: YourKit Java Profiler 8.0.30 Use version 8.0 to profile Java 5 applications only. To profile Java 6 ...
0
votes
2answers
94 views

Difficulty locating the objects in application mentioned in Java Profiler

I am using YourKit Java profiler for my web application which is hosted on Weblogic. I am investigating a memory leak currently. The profiler shows some quarter million char[] objects that are ...
0
votes
1answer
171 views

YourKit in Production

I have recently downloaded a trial version of YourKit and after playing with it for a while it looks great, but I am concerned about running it in the production environment. Previous profilers I have ...
0
votes
1answer
647 views

Tomcat ThreadWithAttributes causing Memory Leak

I have out of memory issues with following environment: Tomcat 5.1.23 Using XFire WebServices Framework JDK 1.5 Used YourKit to profile it and found out multiple instances of class ...