¡@

Home 

java Programming Glossary: jvisualvm

General strategy to resolve Java memory leak?

http://stackoverflow.com/questions/1473510/general-strategy-to-resolve-java-memory-leak

at least Java 6 update 10 i.e. the newest then try running jvisualvm from the JDK on the same machine as your program is running..

Profiling a Java Application in Eclipse? (plug-in) [closed]

http://stackoverflow.com/questions/1580091/profiling-a-java-application-in-eclipse-plug-in

plugins share improve this question If you can use jvisualvm in the Sun Java 6 JDK IBM too . It works out of the box and.. initial questions. Note that on Windows you need to invoke jvisualvm with the same Java binary as the program you want to investigate..

java.lang.OutOfMemoryError: Java heap space

http://stackoverflow.com/questions/1596009/java-lang-outofmemoryerror-java-heap-space

very good profiler included with it. I believe it uses the jvisualvm under the hood. With a profiler you can try to find where many..

how to choose the jvm heap size?

http://stackoverflow.com/questions/1651225/how-to-choose-the-jvm-heap-size

that said you should also use a more detailed tool such as jvisualvm to profile the memory usage of your process . It's possible..

CPU and profiling not supported for remote jvisualvm session

http://stackoverflow.com/questions/1755819/cpu-and-profiling-not-supported-for-remote-jvisualvm-session

and profiling not supported for remote jvisualvm session When monitoring a remote app using jstatd I can neither.. Heap monitoring provided I do not use G1 works. jvisualvm provides the message Not supported for this JVM. in the CPU.. mixed mode Local monitoring works as advertised. java jmx jvisualvm share improve this question Remote profiling of code and..

Does Java 6 open a default port for JMX remote connections?

http://stackoverflow.com/questions/516142/does-java-6-open-a-default-port-for-jmx-remote-connections

am aware the I could run jconsole on JDK 1.6 processes and jvisualvm on post JDK 1.6.7 processes given physical access to the console... could you determine what it might be java jmx jconsole jvisualvm share improve this question The documentation suggests that..

Apache Tomcat Request Threads

http://stackoverflow.com/questions/5622715/apache-tomcat-request-threads

a bit of memory a bit being an understatement. I am using jvisualvm to try and find what is causing the problem. I see the thread..

Remove Top-Level Container on Runtime

http://stackoverflow.com/questions/6309407/remove-top-level-container-on-runtime

is via a profiler. Running the example below with jvisualvm one can see that periodic collection never quite returns to..

Get heap dump from a remote application in Java using JVisualVM

http://stackoverflow.com/questions/726643/get-heap-dump-from-a-remote-application-in-java-using-jvisualvm

by JVisualVM. How can I do this java monitoring heap jvisualvm share improve this question There is a way to do it rmiregistry..

Java VisualVM Enable Heap Dump on OOME

http://stackoverflow.com/questions/8311371/java-visualvm-enable-heap-dump-on-oome

HeapDumpOnOutOfMemoryError jar example.jar java profiling jvisualvm share improve this question As far as I know that option..

How to find memory leaks using visualvm

http://stackoverflow.com/questions/9154785/how-to-find-memory-leaks-using-visualvm

traditional tools like jhat jmap in lieu of the new er jvisualvm . Upon launching this tool and spending a few hours reading.. a plethora of documentation out there as to how to use jvisualvm to produce snapshots but very little documentation as to how.. of them. Thanks in advance. java memory leaks profiling jvisualvm share improve this question Analysing memory leak using..

Request java heap dump (core dump) from within application

http://stackoverflow.com/questions/1818897/request-java-heap-dump-core-dump-from-within-application

way Or by some indirect means for example how does these JVisualVM things do it And one can tell the JVM to dump core on OutOfMemoryExceptions....

Performance profiler for a java application

http://stackoverflow.com/questions/3035601/performance-profiler-for-a-java-application

profiling share improve this question I can recommend JVisualVM . It's a great monitoring profiling tool that is bundled with..

Can you get basic GC stats in Java?

http://stackoverflow.com/questions/466878/can-you-get-basic-gc-stats-in-java

to connect to the JVM for as would be with JConsole or JVisualVM. Edit2 The MX bean looks like what I want does anyone have a..

Java seems to ignore -Xms and -Xmx options

http://stackoverflow.com/questions/6450132/java-seems-to-ignore-xms-and-xmx-options

Xmx1024m ... Also try using a tool such as JConsole or JVisualVM both are shipped with the Sun Oracle JDK and you'll be able..

Get heap dump from a remote application in Java using JVisualVM

http://stackoverflow.com/questions/726643/get-heap-dump-from-a-remote-application-in-java-using-jvisualvm

heap dump from a remote application in Java using JVisualVM I run JVisualVM Windows XP Sun Java 1.6.0.13 32 bit client.. 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.. a heap dump from a remotely monitored application using JVisualVM I tried using jConsole. With jConsole it is possible to make..

Java VisualVM Enable Heap Dump on OOME

http://stackoverflow.com/questions/8311371/java-visualvm-enable-heap-dump-on-oome

improve this question As far as I know that option in JVisualVM is equivalent to specifying XX HeapDumpOnOutOfMemoryError as.. an OutOfMemoryError. This file can be then loaded into JVisualVM or into a profiler and analyzed there. The directory where the..