Tagged Questions
jvisualvm is a Java Virtual Machine Monitoring, Troubleshooting, and Profiling Tool.
8
votes
2answers
215 views
jvisualvm difference between live objects and allocated objects
As seen in the screenshot here, 0 live objects, 9 allocated objects. What's the difference between a live and an allocated object ?
6
votes
3answers
8k views
Get heap dump from a remote application in Java using JVisualVM
I run JVisualVM (Windows XP, Sun Java 1.6.0.13, 32 bit client VM) to monitor a distant application (Linux, Sun Java 1.6.0.07, 64 bit server VM). Before starting the actual remote application, I launch ...
6
votes
6answers
17k views
Does Java 6 open a default port for JMX remote connections?
My specific question has to do with JMX as used in JDK 1.6: if I am running a Java process using JRE 1.6 with
com.sun.management.jmxremote
in the command line, does Java pick a default port for ...
5
votes
3answers
233 views
Why a sawtooth shaped graph?
When i run the below mentioned code (using netbeans),the allocated heap size varies in a sawtooth shape.I am attaching the capture from jVisualVM which shows the used heap graph in a sawtooth ...
5
votes
4answers
1k views
How to do load testing using jmeter and visualVM?
I want to do load testing for 10 million users for my site. The site is a Java based web-app. My approach is to create a Jmeter test plan for all the links and then take a report for the 10 million ...
3
votes
5answers
258 views
Java Memory Usage / Thread Pool Performance Problem
These things obviously require close inspection and availability of code to thoroughly analyze and give good suggestions. Nevertheless, that is not always possible and I hope it may be possible to ...
3
votes
1answer
596 views
How do I monitor Tomcat6 with JVisualvm in Ubuntu Linux?
I'm trying to set up JVisualVm to monitor a Tomcat 6 instance (running on Ubuntu Server 10.04 LTS). I've seen other questions, but none of them directly answer my problem. I try to connect to Tomcat ...
3
votes
1answer
114 views
How do I automatically attach JVisualVM to a short-lived program?
Briefly reading tutorials and playing with JVisualVM, I can manually attach it to a long-running server or Swing application, but I'd also like to use it for short programs that run in under a second.
...
3
votes
1answer
2k views
Can visualvm connect automatically via JMX to a remote process?
I have a Java process running on a remote machine, and the process sets up some mbeans. I also have jstatd running on that machine as the same user as the Java process. (The mbeans can be set up ...
3
votes
1answer
128 views
Is there any equivalent of JVisualVM on DotNET?
I would like to know if there is an equivalent of the excellent Java JVisualVM (included with JDK, the command is "jvisualvm") on the DotNet platform ?
JVisualVM is a great tool that allows ...
3
votes
2answers
3k views
CPU and profiling not supported for remote jvisualvm session
When monitoring a remote app (using jstatd) I can neither profile nor monitor cpu consumption. Heap monitoring (provided I do not use G1) works. jvisualvm provides the message "Not supported for this ...
2
votes
2answers
71 views
jvisualvm doesn't exclude certain methods from CPU profiling
I am trying to profile an application with jvisualvm. The application consists of a loop, in which data is loaded from a database and then some complex calculations are performed on the data. When a ...
2
votes
1answer
197 views
Why can't I attach jvisualvm to an instance of tomcat started from inside osx?
I'm starting tomcat from inside netbeans. I'd like to monitor the heap usage on that instance of tomcat so I fire up jVisualVM. However the process isn't listed. Any ideas?
2
votes
2answers
173 views
Display main class name of each JVM available like VisualVM
VisualVM does it really nice, each full main class name is displayed in the left side-bar navigation. How are these names retrieved? The Attach API offers all running JVMs with a display name, ...
2
votes
2answers
297 views
Java Visual VM skewing CPU
i am trying to analyze the CPU usage for a Java UI application running on Windows. I connected it to VisualVM, but it looks like the highest percentage for CPU usage is being used by
...
2
votes
2answers
237 views
Can JVisualVM “Heap Dump” button release memory?
i have a very strange problem.
I'm working on an OSGi application, based on Eclipse Equinox; it was developed using OSGi Log Service (Equinox implementation) and now I'm testing it with the Apache ...
2
votes
2answers
322 views
jvisualvm - JMX reconnection
Is there any way to reconnect disconnected JMX connection in jvisualvm? When monitored JMX enabled application restarts I have to restart jvisualvm to reconnect it. Am I missing something?
Here are ...
2
votes
1answer
706 views
Unable to profile JBoss 5 using jvisualvm
I've been getting some java.lang.OutOfMemoryError: GC overhead limit exceeded errors while running my Java app overnight:
java.lang.OutOfMemoryError: Java heap space
Dumping heap to ...
2
votes
1answer
303 views
Does VisualVM CPU profiling work on a Mac?
I'm trying to use VisualVM to profile on a Mac,with a 64 bit VM, but am having no success.
It appears to update only at LONG intervals (I thought it wouldn't profile at all, until I walked away from ...
2
votes
1answer
515 views
JMX issue with JBoss 4.2.0 (EAP)?
I am having some issues getting remote JMX working under JBoss 4.2.0, EAP version. I am having some Java OOM errors in my application, and am attempting to set this up specifically to run VisualVM ...
2
votes
3answers
211 views
What launches a JVM thread?
(Please correct me if i am wrong)
I understand that when you run a java program by issuing the java command,
java MyProg
the program will be run onto a new JVM.
What loads the program into a ...
2
votes
1answer
148 views
How does JConsole decide what order to use JMX keys to render a tree?
When viewing JMX beans in JConsole it renders all the beans under a given domain part as a hierarchy. (JVisualVM has the same behaviour with the JConsole MBeans plugin.)
I realise that JMX object ...
2
votes
1answer
225 views
Is there a call tree view available for jvisualvm or NetBeans profiler?
JProfiler offers a live call-tree view so you can see what's using CPU in real-time and drill down for the details. Reset the counts to zero at any time, rinse, repeat.
I'm currently without that ...
2
votes
2answers
2k views
JVisualVM problem with monitoring JBoss
I want to monitor my application running inside JBoss version 3.2.5 using JVisualVM. I have installed my app to run ass windows serivce. JVisualVM sees my application but i can't see neither thread ...
1
vote
1answer
20 views
getting a list of running non-daemon threads in jvisualvm
Title pretty much says it all: I am troubleshooting a shutdown that is not as graceful as it should be, so I would like to get a list of running non-daemon threads in jvisualvm (or other) to hunt the ...
1
vote
1answer
15 views
What is the use of configuring management.properties in profiling remote JVM
It is required to configure management.properties in 'jre_home\lib\management' to enable remote monitoring. But even after configuring the required properties below
...
1
vote
2answers
86 views
Java VisualVM Enable Heap Dump on OOME
According to documentation one could automatically take a heap dump when the application encounters an OutOfMemoryException.
After OutOfMemoryException process just disappear from left menu.
How does ...
1
vote
2answers
88 views
How can I remove a “Java Frame” GC Root reference to a Runnable when I dump a heap in jvisualvm?
I'm using jvisualvm to check for memory leaks in my application. When I do a heap dump, sometimes several objects are being held open that should have been garbage collected.
When I do a "Show ...
1
vote
0answers
123 views
Connecting to Java process running as a Windows service: How does JProfiler does it?
How can I connect a trace tool like JvisualVM - not using JMX - to a Java process running as Windows service?
The JVM running as service is strted When i start JvisualVM, it does not 'see' the JVM ...
1
vote
1answer
132 views
jvisualvm is not working with eclipse
For who knows what is the jvisualvm, I downloaded a plugin to eclipse to initiate the application with the jvisualvm. But unlike the official site says, when I run any java application, the program ...
1
vote
1answer
615 views
jvisualvm doesn't list certain Java processes
I want to get a heap dump (suspected memory leak) of a certain Java process. However, when I start the jvisualvm tool, I cannot see any of the running Java processes.
I have Google'd around about ...
1
vote
1answer
468 views
How to View Web Application Data in Visualvm
I am trying to use the visualvm program that comes with the JDK to profile a webapp running in Tomcat. I have no problems connecting and everything looks nice and works properly in the GUI, except ...
1
vote
3answers
169 views
HEAPSPACE ERROR: cannot figure out what is causing the error
Would anyone mind having a look at these bits of code and see if there is a memory leak in them, it isn't going to be overly large but my program keeps crashing after a while of running and I don't ...
0
votes
1answer
21 views
visual vm history graph
Is it possible in visual vm to set memory, process/gc activity etc. graphs to shift in time without lowering x scale? When application starts that graphs look nice, but after some time they toughly ...
0
votes
0answers
15 views
How do you run jvisualvm.exe under the local system account under Windows Server 2008?
I've been looking for a comparable approach as posted here for Windows Server 2003 for starting jvisualvm under system account. But I got the error:
...\jdk1.6.0_24\bin\jvisualvm.exe exited on ... ...
0
votes
2answers
87 views
Java VisualVM memory sampler - how to get the size of a specific class
My application uses a lot more memory than I think it suppose to use, and I'm trying to understand which class is using a large amount of the memory and maybe not releasing it.
I'm using VisualVM and ...
0
votes
0answers
33 views
CPU Sampling with JVisualVM on Windows 7
I've installed a jdk7.02 bundle from oracle site.
I've noticed that I can't run the jvisualvm's CPU sampling option on Windows 7 64 bit. I can connect to the running java process, but the "CPU ...
0
votes
1answer
44 views
Export VisualVM application configuration, then importing
I am moving from VisualVM 1.3.2 to 1.3.3 and want to move all of the remote servers and applications I have setup to this new installation.
I have looked at %HOMEPATH%\Application Data.visualvm\1.3.2 ...
0
votes
0answers
17 views
VisualVM CPU graph on multicore machines
On a multicore machine, does the JVisualVM CPU usage graph show total machine CPU capacity or something else?
As an example, on a machine with 16 cores, if I see CPU usage in JVisualVM going up to 50 ...
0
votes
1answer
35 views
How to change the application name in VisualVM?
How can i change the application name in VisualVM ? I have multiple applications that where started from my IDE, but it's hard to distinguish them, there name are equal and the only difference is the ...
0
votes
1answer
76 views
Profile option does not show up in Java VisualVM for Tomcat
Using Java Visual VM I can't profile a Tomcat application. It appears correctly in the Applications section, but the "Profile" option is missing.
The Tomcat is launched from Eclipse. My JDK version ...
0
votes
2answers
73 views
Tomcat org.apache.catalina.connector.requestfacade.getsession() takes more than 44.7% CPU resources
I have built a stateless java servlet web application and the requirement is to accept at least 5000 transaction per second (with 150 concurrent thread). I am using ehcache together with SQL server ...
0
votes
1answer
213 views
JVisualVM Memory Sampling : Remote applications are not supported
I am trying to monitor remote tomcat process with JVisualVM in Red Hat Linux. CPU sampling works fine but Memory sampling tab is disabled. It says "Memory sampling: Not available. Remote applications ...
0
votes
2answers
114 views
Need help running visualvm on Windows when under VMWare
I am doing some Java development on Windows 7 x64 running inside VMWare Fusion 3.x (OSX). I have installed JDK6 (update 26), set JAVA_HOME to the path (no trailing slash), and restarted my command ...
0
votes
2answers
182 views
Does filtering classes for cpu profiling work in Java VisualVM?
I want to filter what classes are being cpu-profiled in Java VisualVm (Version 1.7.0 b110325). For this, I tried under Profiler -> Settings -> CPU-Settings to set "Profile only classes" to my package ...
0
votes
0answers
43 views
How can I get jVisualVM to display longer timeframes?
I am trying to use jVisualVM to monitor the long-term heap use of a few applications I am developing. Currently it only shows the past hour under the "Monitor" tab. Is there any way I can view a ...
0
votes
0answers
105 views
What is the “heap size” shown in the JVisualVM “Monitor” tab?
I want to find out what the "heap size" shown in JVisualVM means: I thought it was the committed heap size ‒ but the JMX bean (java.lang:Memory) shows a different value, which is always smaller. ...
0
votes
2answers
87 views
Is it possible to do CPU and memory profiling in simultaneously in jvisualvm?
I have an application which runs a rather long analysis (lots of number crunching) so running the application once takes about 3-4 hours, fully utilizing all of the cores. Now I am pretty sure my code ...
0
votes
1answer
203 views
jvisualvm do not monitor local JBoss application on Windows 7 / Windows 2008
When I start JVisualVM on Windows 7 or Windows 2008 there is no way to find JBoss instances running on the same machine
0
votes
3answers
408 views
How do I get a peak memory usage snapshot from JVisualVM?
I need a memory snapshot at the peak of my application's memory usage - is there an easy way to achieve this?
thanks