VisualVM is a visual tool integrating several commandline JDK tools and lightweight profiling capabilities. Designed for both production and development time use, it further enhances the capability of monitoring and performance analysis for the Java SE platform. JDK 7 Update 4 released on April ...

learn more… | top users | synonyms

0
votes
1answer
13 views

console client for jstatd/visualgc

VisualVM/VisualGC provides quite a lot of useful GC-related metrics in real-time, but I want a command-line tool that can connect to a remote application via jstatd and record in CSV or XML ideally ...
1
vote
3answers
31 views

System.gc does not clears in a single run. Uses 3 or more calls for clearing

I am testing the usage of Heap size in a java application running in JDK 1.6. I use the tool VisualVM to monitor the heap usage. I found the Maximum heap size usage of around 500 MB for a few mins. I ...
0
votes
1answer
17 views

Polling MBeans Attributes with out refresh

This is what I did: Step 1: Exposed MBeans Attributes: Step 2 Polling Options What else do I have to? Still I don't see attribute values getting updated without clicking on refresh.
0
votes
1answer
41 views

How to run VisualVM Eclipse Plugin

I am trying to run Visual Plugin in Eclipse Juno. Visual VM usage instructions are confusing. Running my application on Tomcat server and I have no idea how to point it to Visual VM. Usage ...
0
votes
1answer
30 views

jvisualvm: Stuck on “Loading Heap Dump” screen

I created a heap dump file with hprof using this command: java -agentlib:hprof -cp "..\..\jars\trove.jar;.\bin" com.mysite.MyApp This successfully created the file "java.hprof.txt" which was about ...
0
votes
0answers
22 views

Java: Profile A Short Running Application? [duplicate]

I have a fairly simple, command line app that does some scientific calculations, and I want to optimize it. Depending on the input, the app will return its result in 1 to 10 seconds. I want to see a ...
0
votes
3answers
34 views

How to use VisualVM to get the time each function costs

VisualVM is a nice but a little complicated tool for me. I wrote a class with many functions (in Eclipse). How can I get the information of how many time each function calls and the time they cost ...
0
votes
1answer
39 views

VisualVM Profiling tab missing for Tomcat server

I am Running Tomcat 6.0.29 Java Visual Machine use default is not checked and the location is: C:\Program Files\Java\jdk1.6.0_20\jre\bin\server\jvm.dll Running VisualVM with C:\Program ...
2
votes
1answer
103 views

jVisualVM catalog not working after updating to Java 7 update 21

I'm on OSX Mountain Lion. If I run /Library/Java/JavaVirtualMachines/jdk1.7.0_21.jdk/Contents/Home/bin/jvisualvm and attempt to goto to the plugins menu, I get the following error: Unable to ...
0
votes
1answer
59 views

Using VisualVM on JBoss application server

I am trying to debug some memory leaks in my applications on JBoss 7. So I downloaded VisualVM, connected to running JBoss instance on localhost (which already took 5 minutes which si strange). BUT, I ...
0
votes
2answers
79 views

Unable to view Visual GC in Visual VM

I am using Java VisualVM on my local windows machine to monitor my remote server(Linux). I am able to get all stats in Bisual VM except "Visual GC". It shows "Not Supported for this JVM". I have ...
0
votes
0answers
17 views

VisualVM host already monitored as [my remote server] [closed]

I was monitoring a server a few nights ago to capture data on a load test; everything worked great. Yesterday morning, I go to pull up the application snapshots I created and the "explorer" hierarchy ...
0
votes
0answers
23 views

Jconsole unable to connect to local process

Jconsole is unable to connect to a local process. I tried the same in VisualVM and I am getting the following message: 'Data not available because JMX connection to the JMX agent could not be ...
0
votes
0answers
20 views

Automatically launching a pre-set configuration in VisualVM

I am trying to profile functions in my java application using VisualVM (eclipse plug-in). Right now when I run an application, eclipse opens VisualVM and takes me to the profilers tab where I can ...
5
votes
3answers
88 views

Why is this method a hot spot?

I'm writing a (simple!) linear algebra library. In the implementation of matrix multiplication, a VisualVM performance sample is telling me that the algorithm spends 85% of its time ("self time", ...
4
votes
1answer
60 views

Why isn't VisualVM showing all the normal tabs?

Usually I see all these tabs in VisualVM for locally running Java programs: However, I have one local program which is currently only showing me Overview and Monitor (even though it usually shows ...
0
votes
1answer
39 views

BTrace Script to Kill Java Virtual Machine Thread

VisualVM supports executing unsafe BTrace scripts (https://kenai.com/projects/btrace/pages/UserGuide). Is it possible to use an unsafe BTrace script to kill/interrupt some Java thread? Some threads ...
1
vote
1answer
70 views

VisualVM and GlassFish

Currently, I am trying to weed out bottlenecks in my JSF/PrimeFaces web application. In order to do so, I installed VisualVM and its GlassFish plug-in. I am unable to explicitly "profile" over JMX, ...
0
votes
1answer
40 views

How can you run profiling on a Java application wrapped as an .exe?

I would like to run profiling using jstatd and visualvm against a third-party Java application which has been wrapped as an .exe. Does anybody have advice on how this can be achieved?
8
votes
1answer
94 views

Why does the Java Garbage Collector appear to do an aggressive run shortly after doing a less aggressive one?

While monitoring a java program with VisualVM, I noticed an interesting pattern in the garbage collector's behaviour. It seems like very often, right after doing a 'normal' garbage collection run, the ...
0
votes
1answer
98 views

Eclipse : Getting Error as Could not find jar file while installing Plugin in Eclipse

I was following this below website http://visualvm.java.net/eclipse-launcher.html for installing VisualVM into Eclipse Helios Version 3.6 , for this as mentioned i downloaded ...
0
votes
1answer
34 views

Visual VM collect performance data over a period of time

for Java I am using Visual VM to monitor CPU, Memory, Thread info. Is there a way from Visual VM to collect this information for a range of time so that i am able to present it in a graph. In Visual ...
0
votes
1answer
41 views

Could someone please tell me how to measure the time taken for heap dumps using either JConsole or VisualVM?

I am trying to analyze the performance impact of trying to take a heap dump for my application that uses close to 3 GB of heap memory. This is to decide and understand if I should enable the ...
0
votes
1answer
32 views

How to explain inconsistencies between visualvm cpu sample and snapshot created from it?

I've used cpu sampler of visualvm to record a behavior of my application for the purpose of finding a performance bottleneck. I can see some interesting results in live hotspots view, but when i take ...
-1
votes
1answer
68 views

Monitoring requests per minute (second) for tomcat with visualVM

I want to monitor the requests per minute (or second) processed by tomcat. I also would like to see the average, min and max processing time per request. I'm using visualVM as a debugging/monitoring ...
8
votes
1answer
141 views

Java Object Memory Footprint - Visualvm and java.sizeOf measurement

I'm trying to understand what is the memory footprint of an object in Java. I read this and other docs on object and memory in Java. However, when I'm using the sizeof Java library or visualvm, I get ...
4
votes
1answer
105 views

How to find CPU and IO time?

We have a REST based service that is calling external API and get the response back from that API. I was filing Capacity request here to make sure our boxes can handle the traffic when we host the ...
0
votes
1answer
76 views

VisualVM memory Leaks?

I am trying to detect the memory leaks in my java application using VisualVM. I am using the VisualVM 1.3.5. I followed the steps which should be said in this tutorial ...
3
votes
1answer
37 views

VisualVM results differ from manual measurements

I am using Eclipse with plugin for running VisualVM. Now the VisualVM says that the method call of a function returns always around 180ms, while if I use manual method: long start = ...
0
votes
0answers
56 views

Starting memory profiler in visual vm stops tomcat

I am trying to analyze memory leakage in my application running on tomcat using visual vm. The issue is whenever i try to start profiler, click on memory button after sometime my tomcat stops ...
1
vote
1answer
111 views

Is there a way to profile a java application without the use of an external tool?

External tools are giving me trouble. Is there a way to get simple cpu usage/time spent per function without the use of some external gui tool? I've been trying to profile my java program with ...
0
votes
1answer
81 views

What is RMI TCP Accept, Attach Listener, and Signal Dispatcher in Visual VM?

I'm profiling a program with Visual VM. My program runs for a while and finally pops up a few plots using XChart showing the results. After the charts are displayed, I noticed in Visual VM some active ...
0
votes
1answer
129 views

Thread dump showing lots of blocked processes

I am debugging a GWT web application that has been running out of permgen space after running for a while, and noticed in the thread dump in VisualVM that there are 248 processes waiting to lock the ...
0
votes
1answer
66 views

How can I run jvisualvm without admin rights [closed]

I don't have admin rights in my computer at work and when I try to run jvisualvm, it never start. I tried in the same computer with admin rights and it works! I'm using: Windows 7 (64bits), JDK ...
1
vote
1answer
302 views

maven/visualvm: how can i use visualvm to profile a running surefire process?

I can attach to the surefire process, but trying to profile it shows for sampling: CPU sampling: Not available. Failed to create JMX connection to target application. Use 'Add JMX Connection' action ...
0
votes
0answers
359 views

Jboss AS 7.1.1-Final Remote JMX call fails with status “WAITING”

I am trying to connect to remote Jboss 7.1.1-Final from Visual VM over JMX protocol supported as "remoting-jmx". Jboss is running in standalone mode with port 9999 opened for remote access. I can ...
0
votes
2answers
99 views

java memory leak using visualvm

I've started to debug my software using visualVM. I only started to get familliar with this software. I have memory leak. I found sth that is suspected, but dont know what to make of it. What is the ...
0
votes
1answer
77 views

VisualVM Reporting

I am performing load test on JMeter for webbased application, and i have to get CPU Utilization, Memory Utilization, number of Threds. For this i am using VisualVM. Is there any way we can get as ...
3
votes
1answer
380 views

VisualVM and Self Time

I've been searching all over for a consistent and clear explanation of what 'self time' actually refers to in the VisualVM context and how does it differ to 'self time (cpu)'. Also does 'self time ...
2
votes
0answers
107 views

Profile Eclipse RCP with VisualVM

I am developing an application based on Eclipse RCP. I want to profile specific methods in my application: dropping an element and refreshing sections. I successfully connected VisualVM launch plugin ...
0
votes
0answers
38 views

Memory sampling with jvisualvm

I am using memory sampling feature of Java Visual VM and I can't answer the questions: Why are there so many instances created? Why does these numbers of instances and bytes keep increasing? For ...
2
votes
1answer
105 views

VisualVM - Find all references to a class

I am attempting to debug a permgen error in an application. I am running VisualVM to profile the app and have taken a heapdump of the memory snapshot. Loading the snapshot into VisualVM for ...
0
votes
1answer
166 views

How to execute eclipse under java VisualVM

I developed couple of plugins specific for my project and I think I have some leackage because my eclipse slow down after long using time, so I want to profile it. I can run eclipse from eclipse (in ...
0
votes
1answer
114 views

Jstatd connection issues

Having a little trouble connecting jstatd with visualvm. Below is a break down of my settings: jstatd.policy grant codebase "file:/usr/java/jre1.7.0/lib/tools.jar" { permission ...
0
votes
1answer
158 views

Attaching Java VisualVM for CPU-Profiling leads to JVMTI error 66

When using VisualVM for cpu-profiling of my application, I run into the error "Profiler Agent Error: with message: Redefinition failed with error 66". Upon that, it copies all the class-files ...
2
votes
2answers
110 views

Why aren't all methods displayed in VisualVM profiler?

I am using VisualVM to see where my application is slow. But it does not show all methods, probably does not show all methods that delays the application. I have a realtime application (sound ...
0
votes
1answer
110 views

Naming a JMX connection when using --openjmx

I am using the Java Visual VM command line to open remote JMX connections. I use it like this: jvisualvm.exe --userdir "user-config" --openjmx hostname:port This works perfectly fine. But the ...
1
vote
1answer
528 views

Profiling Tomcat web application with visualvm

I am trying to profile my Web applications running on Tomcat using VisualVM. I am using Eclipse IDE by the way. There is one thing that I don't understand is, when I start my Web applications on ...
0
votes
1answer
102 views

local jmx connection using visual Vm

According to oracle documentation http://docs.oracle.com/javase/6/docs/technotes/guides/visualvm/jmx_connections.html The target application should be run on same host as Java VisualVM but was started ...
1
vote
0answers
148 views

VisualVM connect to local TomEE very slow and can not take a heap dump

I encountered a very strange problem with TomEE 1.5.1 and VisualVM 1.7.0_09 on MAC OSX mountain lion. After TomEE loaded some webapp.Use VisualVM connect local TomEE process take long time, and ...

1 2 3 4 5