Tagged Questions
12
votes
4answers
489 views
9
votes
2answers
245 views
notifyAll() number of invocations difference while profiling
I have implemented a simple profiler with JVMTI to display the invocation on wait() and notifyAll(). As a test case I am using the. producer consumer example of Oracle. I have the following three ...
8
votes
2answers
919 views
Java: How do you really force a GC using JVMTI's ForceGargabeCollection?
I'm not looking for the usual "you can only hint the GC in Java using System.gc()" answers, this is not at all what this question is about.
My questions is not subjective and is based on a reality: ...
6
votes
1answer
568 views
AttachNotSupportedException due to missing java_pid file in Attach API
Building a profiler of my own, I use the JVMTI API to build a native library agent. This agent can be started together with the JVM by using the addition parameter -agentlib. In addition there is the ...
6
votes
1answer
161 views
Can I programmatically find out in which GC generation an instance lives?
This question is limited in scope to HotSpot generations. Is there any way to programmatically find out in which generation a particular instance lives. Data such as:
Young or old generation?
If ...
5
votes
2answers
73 views
JDI: How to pause a Java application (JVM) like in the debugger
I am looking for potentially a JDI API to pause the JVM at any arbitrary point during its execution. Looking at the BreakPointRequest createBreakpointRequest method needs a specific location. Is there ...
5
votes
2answers
250 views
lsof counterpart for a JVM?
lsof is a nice tool for Unix, showing all currently open file handles.
Does anyone know a similar tool that would show all open files inside a running JVM (via JVMTI or any similar interface)?
In ...
5
votes
2answers
340 views
Unloading a JVMTI agent at runtime?
I'm using the attach API to load a JVMTI agent at runtime. I'd like to unload the JVMTI agent when my program is done without terminating the JVM the agent is loaded in. According to this ...
4
votes
2answers
749 views
creating a JVM from within a JNI method
Is it possible to create a JVM from within a JNI method using the JNI API?
I've tried to do this using the JNI function "JNI_CreateJavaVM()", but it's not working (the function keeps returning a ...
4
votes
1answer
447 views
Using JDWP and JVMTI to obtain information of the running Java application
We are developing an application for obtaining the information of a running java application using JDWP and JVMTI. Sun Java comes with a reference implementation of JDWP so using agentlib -jdwp: will ...
4
votes
4answers
159 views
Is there such as role as a Java Runtime Administrator?
There are Database Administrators (DBA) and Unix|Windows System Administrators. There are likely soon to be Cloud Administrators.
There are hordes of "administrators" who are tasked with ...
2
votes
0answers
57 views
JVMTI - how to get the value of a method parameters from callback
I am recording all method entries from my Java app thanks to a JVMTI Agent. For now, I a able to get the name of each method, but I'd want to be able to get the value of the parameters that method ...
2
votes
3answers
311 views
Profiling vs Instrumentation - Java
Basic question: JVM provides JVMTI which native API for profiling and debugging JVM. JVM instrumentation also does the same (is that correct?). If yes, what is difference between the both?
2
votes
4answers
150 views
Features for profiling concurrent program behaviour in Java
Nowadays there are some profilers which promise to profile concurrent behavior of program execution in order to understand the threaded execution.
I am collection features which would be useful for a ...
2
votes
2answers
86 views
Link library name for JVM TI
I am trying to write a JVM TI sample agent on Mac OS X. I have Java 5 installed. I however wanted to know against which dynamic library should I link my sample agent code?
Thank you in advance.
...
2
votes
2answers
223 views
What are these threads which are spwaned when a Java application begins its execution?
I have created a simple Java application which has a JFrame and few JButtons. When I tried to inspect the java application using JVMTI I found that though I did not create any explicit threads there ...
2
votes
1answer
347 views
Starting JVM Tool Interface agents in the VM during live phase
The JVM Tool Interface(JVMTI) specification says that the JVMTI agents can be started in the VM during live phase but they havent mentioned how it can be done. Has anyone tried this before or got any ...
2
votes
2answers
3k views
Java JVMTI doesn't work alongside -Xdebug -Xrunjdwp
I spent the last 4 hours trying to set up Eclipse TPTP memory
profiling on a Tomcat instance that must be run remotely (i.e. not in
Eclipse). This should be possible according to the TPTP and Agent
...
1
vote
1answer
62 views
compiling a jvmti agent with g++ fails to work, but cc works ok
I have a very simple agent, basically just the required Agent_OnLoad method signature.
If I compile it with g++.
g++ -g -fno-strict-aliasing -fPIC -fno-omit-frame-pointer -W -Wall -Wno-unused ...
1
vote
0answers
40 views
JVMTI get name of called Class/File
I tried to read through the whole jvmti documentation and I didn't find a solution for my problem.
I want to get the name of the class/file that is used in the command line to call the program:
java ...
1
vote
2answers
87 views
How do I catch the read and writes in a java program?
I am trying to create a tool that can capture all the read and writes made by a java program. Also, I would like to know what fields of what object is access/modified.
I currently looked at:-
1) ...
1
vote
2answers
111 views
Thread-aware heap allocation tracking with JVMTI
Writing a profiling I would also implement the typical task of heap profiling. Specifically I would like to track, which thread has allocated how much data? Using JVMTI I thought it's sufficient to ...
1
vote
0answers
48 views
Why use an agent thread in JVMTI?
In the JVMTI it is possible to launch an agent thread for executing code concurrently: RunAgentThread
The documentation recommends this, for instance for communication purposes. Currently my JVMTI ...
1
vote
1answer
183 views
Measure execution time of Java with JVMTI
For the profiler which I implement using JVMTI I would like to start measuring the execution time of all Java methods. The JVMTI offers the events:
MethodEntry
MethodExit
So this would be quite ...
1
vote
0answers
77 views
JVMTI agent never returns the thread state terminated
Implementing a JVMTI agent, I read the threads state on certain events, for instance ThreadStart, ThreadEnd, VMInit, VMDeath, etc. However, I noticed, that the threads state is never new or ...
1
vote
1answer
141 views
Profiling JVMs with JVMTI, how to distinguish the different JVMs?
I am writing a profiler with the aid of the JVM TI.
In C++ I have written a simple agent, which writes the information collected to a socket. With Java Swing I have built a simple GUI which reads ...
1
vote
5answers
218 views
Identify the current JVM with Java or JVMTI
I would like to identify the current JVM which is run. In the best case with a function described in the JVMTI Documentation, but I cannot find anything.
What I meant, is something like this: ...
1
vote
2answers
190 views
Reinitializing Java Class
We are working on a JVMTI Java Agent, that is used to instrument java class files. A small part of it is (obviously) native c++ code, but the larger part is Java code, which is loaded over the network ...
1
vote
1answer
134 views
GUI on top of a JVMTI agent
I am planing to develop a profiler by using the JVMTI API provided by Oracle. For a visualization I would like to implement a GUI (Qt framework) on top of the agent code. My first jvmti agent is ...
1
vote
7answers
490 views
How to detect Java agents, JVMTI, etc
How does one secure the Java environment when running on a machine you don't control? What is to stop someone from creating a java agent or native JVMTI agent and dumping bytecode or re-writing ...
1
vote
1answer
78 views
JVMTI: FollowReferences : how to skip Soft/Weak/Phantom references?
I am writing a small code to detect number of objects left behind after certain actions in our tool. This uses FollowReferences() JVMTI-API. This counts instances reachable by all paths. How can I ...
0
votes
1answer
72 views
How to get the memory address(not the hashcode) of a java object using JVMTI
I am a beginner in C and C++ and I don't know very well how to use the JVMTI. I want to get the physical memory location (in hexadecimal) of a java object. Is it possible? I don't want to get answers ...
0
votes
1answer
30 views
JVMTI not loaded
I'm trying to use the JVMTI in order to write a little Java debugger in C++.
I read here:
http://java.sun.com/developer/technicalArticles/Programming/jvmti/
that the JVM should call an exported method ...
0
votes
1answer
33 views
How to run Jcalltracer
Hey guys I'm having trouble opening jcalltracer, an open source program on sourceforge that reverse engineers a Java program into sequence diagram. I got error when I was trying to add the following ...
0
votes
0answers
18 views
How to get the full command line in JVMTI?
Is it possible to get full command line with all arguments which was used to launch current Java process and to get that during OnLoad phase in JVMTI?
0
votes
0answers
20 views
JVMTI Agent_OnLoad handler can't create a System Property
I'm using the JVM Tool Interface. I'm trying to create a SystemProperty in the Agent_OnLoad event using the SetSystemProperty() call. If the property exists, it correctly sets a new value. However, ...
0
votes
0answers
63 views
JVMTI agent crashes
I'm working on implementation of eraser data-race detection algorithm as JVMTI agent.
When I try to run some example inputs to test my code, the JVM crashes, with dumps like the following (may show ...
0
votes
1answer
56 views
How to track locking events in JVMTI
JVMTI offers the events ContendedMonitorEnter and ContendedMonitorEntered to detect events related to the use of synchronized. synchronized is nothing else, but a ReentrantLock.
Now I would like to ...
0
votes
0answers
31 views
Retrieve jobject within MethodEntry /MethodExit in JVMTI
Is it possible to retrieve the current jobject when the method entry or method exit event is triggered? I would like to tag the jobjects which are entered on certain methods. Currently I can only ...
0
votes
0answers
51 views
Isolate the total CPU time of a method in JVMTI
In the technical report "Java Virtual Machine Profiler Interface" by D. Viswanathan and
S. Liang it is written:
The profiler may measure the amount of
CPU time consumed by a given method in
a ...
0
votes
1answer
95 views
Measuring method execution with JVMTI
Using the MethodEntry and MethodExit event hooks provided by the JVMTI how would I measure the time of a method executed in Java?
In simple means it's just: time2 - time1 but the problem I see, how ...
0
votes
1answer
81 views
Deadlock detection with JVMTI
I wonder whether it is possible to detect deadlocks dynamically in Java by using the JVMTI. There are two events indicating actions on monitors using the synchronized statement:
Monitor Contended ...
0
votes
0answers
161 views
Using JVMTI to get the amount of memory freed by the GC
I'm trying to use JVMTI to know how much memory was freed by the GC, this would be used as part of a profiler.
Using JVMTI I can get events for the GC_START and GC_END.
JVMTI also provides facilities ...
0
votes
1answer
61 views
Synchronization statistics not available in the JVMTI API?
The class java.lang.ThreadInfo provides some very useful methods which provide statistic concerning synchronization in Java. For instance:
getBlockedTime() Returns the approximate accumulated ...
0
votes
1answer
45 views
Does class ThreadInfo provide more information than reachable from JVMTI?
This is confusing. The ThreadInfo class provides alot of information, especially statistic of a Thread. However I cannot find such functions in the JVMTI. Is this norma? Do I have to gather the data ...
0
votes
1answer
230 views
Java agent, instrumentation and array creation
I need to write an agent for my java application, that does some specific stuff on every array creation. So far I was unable to find any way to run my code on this event.
...
0
votes
2answers
117 views
JVMTI _jclass toString
How to get the name of the JVM TI _jclass?
I want to display names of classes loaded in the JVMTI agent, however it is not obvious to me how to get the name of a class from a _jclass instance.
0
votes
5answers
301 views
How to monitor exceptions or errors generated by other Java applications?
I want to find or develop an application that can run as a daemon, notify the administrator by email or sms when the Java applications running on a host get any exceptions or errors. I know JVMTI can ...
0
votes
1answer
123 views
How to do programmatic profiling while running a testng
I'm planning to do some profiling around a set of regression test cases. My idea is to leverage AOP around the testng methods which will invoke some profiling tool api and print the profiled data at ...
0
votes
1answer
208 views
How to get parameter values in a MethodEntry callback
I have the following java code
public class Test {
public void sayHello(String msg) {
System.out.println(msg);
}
}
new Test().sayHello("Bonjour");
I have a jvmti agent attached ...