
TECH-JMX
yeziwang9
这个作者很懒,什么都没留下…
展开
-
JMX Basic
1.What is JMX architecture? First, let's get a overview of the JMX architecture, it contains three layers as below: Instrumentation Layer: This layer only contains the manageable resources whic...2009-09-29 12:05:53 · 158 阅读 · 0 评论 -
JMX M-LET Service
1.What does M-LET service can do? M-Let service provide a mechanism of dynamic loading new MBeans without restarting your agent. Sounds like the things Dynamic MBean can do,huh? But there are some...2009-09-30 08:46:05 · 212 阅读 · 0 评论 -
JMX Monitoring Service
1.Purpose of Monitoring service JMX Monitoring service provide a mechanism of monitoring your observable object with a predefined observable attribute. In the simplest case, you might want to get...2009-10-03 21:29:38 · 134 阅读 · 0 评论 -
JMX Notification Model
Since Notification Model is actually a typical observer model, I will start with the observer model, and evolve it to the Notification Model in JMX. Simply, the observer pattern allows one obj...2009-10-05 12:56:43 · 126 阅读 · 0 评论 -
MBeanRegistration and MBeanServer
If you have spring experience, you might know what MBeanRegistration interface is for.In fact, in my point of view, it acts as BeanFactoryAware interface in Spring framework. BeanFactoryAware is us...2009-10-08 22:13:12 · 195 阅读 · 0 评论 -
JMX Standard MBean
As we metioned before, JMX has three types of MBean, and the standard MBean is the simplest MBean of them, the other two are Dynamic MBean and Model MBean which we will cover in later articles. ...2009-10-09 16:48:42 · 122 阅读 · 0 评论 -
JMX Model MBean
As we know, Standard MBean is easy to use and implement, but it requires that the MBean interface has to be stable. If the manageable resoures are evolving over time, we need Dynamic MBean to help u...2009-10-14 22:08:08 · 130 阅读 · 0 评论 -
JMX Dynamic MBean
The second MBean I want to bring in is the Dynamic MBean, the main purpose of using Dynamic MBean is that your management interface varies very often, just think of a simplest case, we have a mana...2009-10-18 12:17:04 · 127 阅读 · 0 评论 -
How to write your own Model MBean
Since Model MBean is much more flexible and is easy to decouple your manageable resouce from the mbean implementation details, people like to use it as the basic MBean. After we examine the Model...2009-11-08 21:16:51 · 167 阅读 · 0 评论