Products | Versions |
---|---|
TIBCO Streaming | 7.6 and later including 10.x |
Java VisualVM (jvisualvm) is a graphical utility for viewing information about Java applications running in a Java Virtual Machine (JVM). It plots memory use, CPU use, garbage collection, and other parameters in real-time. It reports on static configuration (system properties) and can generate thread and Heap dumps on demand.
These reports are often useful for performance tuning and troubleshooting.
-Dcom.sun.management.jmxremote.port=3333 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false(You may use any unused port number, but we'll use 3333 for illustration.)
<java-vm> <param name="jvm-args" value=" -Dcom.sun.management.jmxremote.port=3333 -Dcom.sun.management.jmxremote.ssl=false -Dcom.sun.management.jmxremote.authenticate=false "/> </java-vm>Add these settings in addition to any other arguments, separated by spaces.
jvmArgs = [ "-Dcom.sun.management.jmxremote.port=3333" "-Dcom.sun.management.jmxremote.ssl=false" "-Dcom.sun.management.jmxremote.authenticate=false" ]Add these settings in addition to any other arguments, separated by spaces and delimited by quotes.