天天看點

Dubbo與Zookeeper監控中心monitor搭建

前面一篇介紹如何搭建dubbo管理背景,這裡介紹是dubbo的監控系統。通過它可以看到你的服務調用的次數,并發數,調用時間等等關鍵資訊。下面看看我們如何搭建。

1在我們通過之前的我們環境搭建中有下載下傳位址https://github.com/dangdangdotcom/dubbox 下載下傳後解壓到一個目錄下,進入你的dubbox-master 目錄 執行mvn install -Dmaven.test.skip=true。編譯成功後找到dubbo-simple

Dubbo與Zookeeper監控中心monitor搭建

進入dubbo-simple/dubbo-monitor-simple/target 如圖

Dubbo與Zookeeper監控中心monitor搭建

解壓dubbo-monitor-simple-2.8.4-assembly.tar.gz 得到dubbo-monitor-simple-2.8.4 打開項目打開dubbo.properties

修改内容為:

##
# Copyright 1999-2011 Alibaba Group.
#  
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#  
#      http://www.apache.org/licenses/LICENSE-2.0
#  
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
##
dubbo.container=log4j,spring,registry,jetty
dubbo.application.name=simple-monitor
dubbo.application.owner=drj
#dubbo.registry.address=multicast://224.5.6.7:1234
dubbo.registry.address=zookeeper://127.0.0.1:2181
#dubbo.registry.address=redis://127.0.0.1:6379
#dubbo.registry.address=dubbo://127.0.0.1:9090
dubbo.protocol.port=7070 #固定的
dubbo.jetty.port=8090 #tomcat 的話  是tomcat的端口号,不要和已經有的沖突就好
dubbo.jetty.directory=${user.home}/monitor
dubbo.charts.directory=${dubbo.jetty.directory}/charts
dubbo.statistics.directory=${user.home}/monitor/statistics
dubbo.log4j.file=logs/dubbo-monitor-simple.log
dubbo.log4j.level=WARN
           

儲存後啟動服務

Dubbo與Zookeeper監控中心monitor搭建

浏覽器輸入:http://localhost:8090 出現如圖搭建成功

Dubbo與Zookeeper監控中心monitor搭建
Dubbo與Zookeeper監控中心monitor搭建
Dubbo與Zookeeper監控中心monitor搭建
Dubbo與Zookeeper監控中心monitor搭建

注意:若是出現沒有圖統計結果的,可以加我QQ 交流一下3343217807