I am trying to set up JBoss 4.2.2 and JConsole for remote monitoring. As per many of the how-to's I have found on the web to do this you need ... |
I'm using JMX to save some diagnostic information from a remote process. Looking at the interface in jconsole shows that the return type is CompositeData (the data actually comes ... |
If you return a double or float from your MBean jconsole seems to round it down to the nearest integer.
|
all the examples I see are for J2SE applications by passing your JAR file at the command line. Can JConsole attach to a WAR or EAR and monitor application performance?
|
I'm using a MXBean to instrument a certain feature, and I have a method that takes in 3 input arguments.
By default, on the jconsole, the arguments are displayed as p1, p2, ... |
i have configured jconsole to view jvm health. and i want to send an email to subscribers with jvm statics(which displayed by jconsole) can any one tell me how to do ... |
I am using the JConsole to access my application MBeans and i use the the password.properties file. But as per the Sun's specification this file contains passwords in clear text formats ... |
|
Does there exists any JConsole alternative which i could bundle with my app ?
|
How to create performance counters that are exposed by jmx and accessed via jconsole?
Say whenever I instantiate a particular object, I increment a counter. I want to expose the counter ... |
I'm somewhat familiar with displaying simple data via a JMX MBean using older JDKs. What I'd like to do is have one MBean link to a couple related MBeans, making it ... |
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 ... |
Can anyone please clarify what the differences are between the two?
The Javadoc is really obscure for my proper understanding.
One thing I have noticed is if I use ManagementFactory.getPlatformMBeanServer() to register my ... |
I would like to see and manage Quartz Scheduler from JConsole. I configured the quartz props.
org.quartz.scheduler.rmi.export=true
org.quartz.scheduler.rmi.registryPort=1099
org.quartz.scheduler.rmi.createRegistry=true
org.quartz.scheduler.rmi.registryHost=localhost
org.quartz.scheduler.skipUpdateCheck=true
org.quartz.jobStore.misfireThreshold=60000
org.quartz.jobStore.class=org.quartz.simpl.RAMJobStore
org.quartz.threadPool.class=org.quartz.simpl.SimpleThreadPool
org.quartz.threadPool.threadCount=10
org.quartz.threadPool.threadPriority=5
But I am not able to connect the jconsole using the url
service:jmx:rmi://localhost/jndi/rmi://localhost:1099/jmxrmi
Please help.
|
I'd like to avoid assigning specific TCP ports to processes, but still be able to make (local) connection to the JMX MBeans inside them. I keep seeing evidence that this should ... |
If you set the "com.sun.management.jmxremote" system property when you start a JVM, you can run jconsole or visualvm and connect to that local mBeanServer. I want to do the same thing ... |
How to activate JMX on my JROCKIT JVM for access with jconsole?
(somewhat a follow up question to How to activate JMX on my JVM for access with jconsole?)
The main reason ... |
Following MXBeans in Java SE 6: Bundling Values Without Special JMX Client Configurations I managed to implement a MXBean which exposes a Map<String, String> for a list of configuration ... |
I'm running a number of java processes on a windows XP professional machine. When i attempt to connect to these processes via a local JConsole the processes are grayed out. ... |
If I get a dumpheap using JConsole, will that contain jmx counters also ?
|
I use jconsole to execute methods of an mbean in a tomcat container.
When the quantity of beans is more than 100 it seems to be difficult to find a bean - ... |
My application has a specific set of keys for which I monitor values(min, max, etc..). It looks very similar to the following:
public class Data implements Serializable{
int ...
|
For monitoring my application, I set up the Mbean. To automatically update the status variable, I started a thread from the constructor of the montiored bean. The status is being updated. ... |
jconsole requires GUI which does not work under terminal. Any tools I can use in the terminal to retrieve JMX information?
|
|