Tagged Questions

10
votes
2answers
495 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
400 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 ...
2
votes
3answers
312 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
3answers
200 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
964 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
74 views

I'm running an algorithm entirely from memory (no IO), yet my CPU use is below 25%. What may be the possible bottlenecks?

I've been running a single-threaded brute force version of the famous Traveling Salesman Problem, and YourKit is pinpointing me the fact that the CPU is being used at 25%, at most. What's the reason ...
0
votes
0answers
32 views

YourKit is showing me that although my code makes use of 8 fixed threads, the JVM seems to be switching which 8 threads are actually being used. Why?

I'm running YourKit over a simple program I've wrote that tries to solve the Traveling Salesman Problem by brute force, running several threads at once (in the current case, 8). As the below picture ...
0
votes
1answer
181 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 ...