<rt id="bn8ez"></rt>
<label id="bn8ez"></label>

  • <span id="bn8ez"></span>

    <label id="bn8ez"><meter id="bn8ez"></meter></label>

    posts - 156,  comments - 601,  trackbacks - 0

    最近看到一位同事正在開發一個監控軟件,要求就是通過針對服務器現有的一些接口,通過這些接口返回的數據進行分析,如果監控的值到達預先設定的范圍則通過短信的方式發送給管理員。

    從整個開發的功能上來看是一個比較單一也很明確的功能,所開發的系統對所其所監控的軟件的依賴性也非常大,主要是監控的數據分析行為和監控信息的服務報警行為這塊。既然這兩塊很難做成一個通用的功能模塊,那就搭建一個監控平臺,可以讓這些功能模塊通過組件的方式自由的注冊和銷毀。

    所有我構思了這個監控平臺,它對外有三個接口,分別是監控接口,報警接口和監控消息監控接口。由平臺統一管理這些組件的生命周期,每個組件都過單獨的線程運行。提供一個核心組件CoreComponent調度所有監控數據的流轉。平臺本身還使用基于jmx管理服務技術提供對所有當前使用的組件運行情況的監控,也包括動態的啟動和停止組件的運行狀態。

    下載地址 
    二進制程序
    第三方類庫下載,第三方類庫下載2 放到lib目錄下。
    api-docs 
    源代碼

    下面是部分設計圖:

     

    AlertComponent設計圖



     

    SpyComponent設計圖:


    MessageAlertChannelActiveAwareComponent設計圖


    下面我利用該平臺開發一個監控ActiveMQ狀態的組件ActiveMQJmxSpyComponent,該組件實現對AMQ運行狀態的監控(監聽失敗或失敗后重新連接成功)。可以通過指定Queue名稱列表來指定要監控Queue隊列的消費者是否為0(通常表示對方可能因為網絡或服務中斷而失去監控)或是隊列消息都由0變為大于0表示消費者重新監聽上服務。

     1public class ActiveMQJmxSpyComponent extends AbstractSpyComponent {   
     2    /**  
     3     * Logger for this class  
     4     */
      
     5    private static final Logger LOGGER = Logger.getLogger(ActiveMQJmxSpyComponent.class);   
     6    //AMQ jmx serverUrl to spy    
     7    private String serverUrl;   
     8    //detect interval(unit is ms)   
     9    private int detectInterval = 5000;   
    10    //the Queue name list to spy   
    11    private Set<String> destinationNamesToWatch;   
    12    // if queue's consumer suspends after then certain time then to notify. default is 3 minutes   
    13    private int queueSuspendNotifyTime = 3*60*1000;  


    下面是一個報警組件的實現:只是簡單的把監控消息打印在屏幕上PrintScreenAlertComponent

     1public class PrintScreenAlertComponent extends AbstractAlertComponent {   
     2  
     3    /* (non-Javadoc)  
     4     * @see org.xmatthew.spy2servers.core.Component#getName()  
     5     */
      
     6    public String getName() {   
     7        return "PrintScreenAlertComponent";   
     8    }
       
     9  
    10    /* (non-Javadoc)  
    11     * @see org.xmatthew.spy2servers.core.Component#startup()  
    12     */
      
    13    public void startup() {   
    14        setStatusRun();   
    15  
    16    }
       
    17  
    18    /* (non-Javadoc)  
    19     * @see org.xmatthew.spy2servers.core.Component#stop()  
    20     */
      
    21    public void stop() {   
    22        setStatusStop();   
    23  
    24    }
       
    25  
    26    @Override  
    27    protected void onAlert(Message message) {   
    28        System.out.println(message);   
    29           
    30    }
       
    31  
    32}
      
    33


    下面該組件的注冊。${CUR_PATH}/conf/spy2servers.xml

     1<?xml version="1.0" encoding="UTF-8"?>  
     2<beans xmlns="http://www.springframework.org/schema/beans"  
     3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
     4    xmlns:aop="http://www.springframework.org/schema/aop"  
     5    xmlns:tx="http://www.springframework.org/schema/tx"  
     6    xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd   
     7           http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd   
     8           http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.0.xsd">  
     9  
    10    <bean class="org.xmatthew.spy2servers.core.CoreComponent"></bean>  
    11    <bean class="org.xmatthew.spy2servers.jmx.JmxServiceComponent"></bean>  
    12       
    13    <bean class="org.xmatthew.spy2servers.component.alert.PrintScreenAlertComponent"></bean>  
    14       
    15    <bean class="org.xmatthew.spy2servers.component.spy.jmx.ActiveMQJmxSpyComponent">  
    16        <property name="serverUrl" value="service:jmx:rmi:///jndi/rmi://localhost:1099/jmxrmi"></property>  
    17        <property name="destinationNamesToWatch">  
    18          <set>  
    19            <value>Matthew.Queue</value>  
    20            <value>Rocket.Queue</value>  
    21          </set>             
    22        </property>  
    23        <property name="queueSuspendNotifyTime" value="50000"></property>  
    24    </bean>  
    25       
    26</beans>  
    27


    ok,現在ActiveMQJmxSpyComponent監控到的消息能會被PrintScreenAlertComponent打印到屏幕上。
    現在啟動程序,我們看到ActiveMQJmxSpyComponent和PrintScreenAlertComponent組件已經啟動了。


    使用Jconsole進行監控





    如果此時需要建立一個消息報警的規則,只要實現以下接口,并注入到CoreComponent的alertRule屬性中即可。

    1public interface AlertRule {   
    2  
    3    boolean isAlertAllow(MessageAlertChannel channel);   
    4}
      

    應用這個平臺開發監控的組件就這么簡單。

     備注:因為開發時間比較緊,如果有什么Bug也希望大家反饋給我,我會改進。

    下載地址 
    二進制程序
    第三方類庫下載  第三方類庫下載2  放到lib目錄下。
    api-docs 
    源代碼

     Good luck!

    Yours Matthew!

     

    posted on 2008-03-12 13:41 x.matthew 閱讀(2198) 評論(7)  編輯  收藏

    只有注冊用戶登錄后才能發表評論。


    網站導航:
     
    主站蜘蛛池模板: 亚洲一区二区久久| 亚洲精品无码专区久久久| 免费视频专区一国产盗摄| 2021在线观看视频精品免费| 免费人成毛片动漫在线播放| 免费成人高清在线视频| 99久在线国内在线播放免费观看| 久久久久久影院久久久久免费精品国产小说| 日韩电影免费在线观看网站| a级毛片高清免费视频| 国产午夜精品久久久久免费视| 免费在线观看一级片| 真实国产乱子伦精品免费| 曰批全过程免费视频网址| 黄色网址免费观看| 国产精品成人免费视频网站京东| 成人激情免费视频| 国产精品久久免费视频| 亚洲成a人片在线观看老师| 国产成人精品日本亚洲专区61| 亚洲精品中文字幕乱码三区| 亚洲av不卡一区二区三区| 2022年亚洲午夜一区二区福利| 亚洲a级片在线观看| 亚洲第一第二第三第四第五第六| 色网站在线免费观看| 中国一级毛片视频免费看| 亚洲国产精品免费视频| 成人免费一级毛片在线播放视频 | 亚洲国产成人久久三区| 亚洲日本在线电影| 一级做性色a爰片久久毛片免费| 中文字幕日本人妻久久久免费| 狼群影院在线观看免费观看直播| 最近免费中文字幕大全视频| 亚洲?v无码国产在丝袜线观看| 亚洲成AV人片在线播放无码| 亚洲色欲色欲www| 理论秋霞在线看免费| 日本免费高清视频| 免费观看a级毛片|