Tagged Questions
0
votes
0answers
198 views
In Jmx Client code add notification listener is not working
I have a server program which sends notifications and I have a jmx client code to consume that. In the Jmx client I will connect the bean remotely and try to consume the notifications. My Problem is I ...
0
votes
1answer
97 views
JMX: Wrapped MXBean does not send Notifications
According to the JMX API I can use classes like StandardMBean and StandardEmitterMBean to use customization hooks. SO instead of registering the MXBean itself directly I can wrap it in one of these ...
0
votes
1answer
221 views
java.io.NotSerializableException raised when JMX raises notifications
Hello recently I started working on a JMX bean implementation.
I then publish the below bean, run JConsole, connect to the bean, register for notification. However when the notification is sent i ...
1
vote
2answers
1k views
Publish JMX notifications in using Spring without NotificationPublisherAware
I'd like to publish JMX notifications using Spring 3, but would like to avoid using the NotificationPublisherAware interface, since the code is also used by an application that doesn't use Spring. The ...
0
votes
0answers
2k views
Problem with remote JMX connection and Notifications
I'm trying to follow one example from the Java API documentation (http://download.oracle.com/javase/1.5.0/docs/api/java/lang/management/MemoryPoolMXBean.html#Notification) related to the ...
9
votes
2answers
1k views
Can't make Spring JMX NotificationListener work
I have configured a ManagedBean using @ManagedResource annotation using Spring. And also mapped a JMX NotificationListener to this. But I am seeing that the Listener never gets kicked-off/executed.
...
0
votes
2answers
344 views
JMX-Spring - When is a 'JMXNotification' broadcasted?
I was going through the Spring documentation on JMX and came across the following paragraph:
By configuring NotificationListeners in place, every time a JMX Notification is broadcast
from the target ...
0
votes
1answer
144 views
Calculating Application's memory consumption using JMX
I want to write a memory monitoring and notification utility that monitors specific application in JVM. To be clear I am not interested in JVM memory consumption rather I want to monitor my ...
0
votes
2answers
1k views
JBoss MBean NotificationListener problems
I'm having some trubles with NotificationListener on JBoss.
I'm have a MBean on an JBoss, I can connet and call their methods. But when I'm trying to add Notifications y get the next exception:
...
1
vote
1answer
220 views
JMX Event Notifer - Re-register after connection is lost and back up
I have a client that registers with JMX for notifications.
Whenever that JMX Notifications Emitting application is restarted I get an exception
01/08/2010 16:28:04 ...
0
votes
5answers
796 views
What are Design patterns useful for Notification system?
Some explanation: there are several machines(hosts) that need to be notified about any changes of some data on certain resource machine. Resource machine all time checks data and if any changes were ...
1
vote
1answer
786 views
how can i generate mail alert/notification if memory consumption in jvm exceeds some thrsold, by using jmx
how to generate mail alerts for the following changes in jvm
1)memory
2) threads
3)db connections
by using jmx
any help would be useful
thanks
5
votes
5answers
5k views
Can we use JMX for Alerts/Notification
Here are the specs that I'm trying to implement in a nutshell:
1) Some Alerts have to be sent on certain events in the application.
2) These Alerts have Users subscribe to them.
3) And the Users ...