Tagged Questions
JVMTI is the Java Virtual Machine Tool Interface, a native API by which authors can write JVM plugins to monitor or modify the execution of the Java Virtual Machine.
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
918 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
567 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
69 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
336 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
446 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
310 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
217 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
2answers
210 views
determine Java class size from JNI jclass
I'm using JNI to analyze some program. I just wonder, after get jclass reference, how it is possible to find the size of the underlying class ?
for example:
class cls = ...
1
vote
1answer
314 views
How to properly write a SIGPROF handler that invokes AsyncGetCallTrace?
I am writing a short and simple profiler (in C), which is intended to print out stack traces for threads in various Java clients at regular intervals. I have to use the undocumented function ...
1
vote
7answers
489 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
19 views
Using JNI / JVMTI - How to determine if jfieldID is static or not
If I use jvmti_env->GetClassFields(objClass, &numOfFields, &fieldIds); I still have to decide whether to call GetStatic<Type>Field or Get<Type>Field.
How do I determine which one to ...
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
35 views
JVMTI tips and tricks
take it easy on me, im a noob and need guidance.
what i want to do is to combine the power of quartz with jvmti. basically, my plan is to use jvmti to monitor memory usage and base on that i will ...
0
votes
1answer
32 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
19 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
62 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
153 views
Byte code instrumentation - implement native or java agent?
If I want to realize a profiler using byte code instrumentation, should I write a native agent using JVMTI or should I write a java agent using the java.lang.instrument package?
If I want to use ...
0
votes
1answer
33 views
JVMTI equivalent for .NET
I am looking for some Microsoft API that whould have the same capabilities for monitoring .ENT applications as JVMTI has for Java applications.
For example, I'd like to be able to see every method ...
0
votes
0answers
39 views
Why does SetEventNotificationMode fails for JVMTI_EVENT_VM_OBJECT_ALLOC?
I am creating a jvmti agent that is called on every object allocation event. However when I try to add the JVMTI_EVENT_OBJECT_ALLOC, it fails. The following is the code that I wrote:-
#include ...
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
1answer
74 views
Compile an Agent without errors and the message of “not valid Windows image”
since one week I'm trying to compile a demo Version of the JVMTI demo set. In this case I tried to compile the HeapViewer Source Code (I just renamed the file HeapViewer.c to HeapViewerByMG). I tried ...
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 ...