【例子介绍】Redis-集群监控之Redis monitor源码
NRedis-Proxy 是一个Redis中间件服务,第一个Java 版本开源Redis中间件,无须修改业务应用程序任何代码与配置,与业务解耦;以Spring为基础开发自定义标签,让它可配置化,使其更加容易上手;提供RedisServer监控以及自动、收到failover等功能;以netty 作为通信传输工具,让它具有高性能,高并发,可分布式扩展部署等特点,单机器单个RedisServer QPS在9千左右。
【相关图片】
【源码结构】
.
├── redis-monitor-master
│ ├── README.md
│ ├── pom.xml
│ ├── redis-monitor-api
│ │ ├── pom.xml
│ │ ├── src
│ │ │ └── main
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ └── opensource
│ │ │ │ └── nredis
│ │ │ │ └── proxy
│ │ │ │ └── monitor
│ │ │ │ ├── api
│ │ │ │ │ ├── AutoPageSystemQrtzTriggerInfoController.java
│ │ │ │ │ ├── AutoPageSystemQrtzTriggerLogController.java
│ │ │ │ │ ├── PsDictController.java
│ │ │ │ │ ├── PsMenuController.java
│ │ │ │ │ ├── PsUserController.java
│ │ │ │ │ ├── PsUserMenuController.java
│ │ │ │ │ ├── RedisClusterMasterController.java
│ │ │ │ │ ├── RedisClusterMonitorLogController.java
│ │ │ │ │ ├── RedisClusterSlaveController.java
│ │ │ │ │ ├── SystemApplicationController.java
│ │ │ │ │ ├── SystemApplicationMonitorController.java
│ │ │ │ │ ├── SystemComponentController.java
│ │ │ │ │ ├── SystemIndexController.java
│ │ │ │ │ ├── filter
│ │ │ │ │ │ └── LoggerFilter.java
│ │ │ │ │ └── utils
│ │ │ │ │ ├── ConfigUtils.java
│ │ │ │ │ └── IpUtil.java
│ │ │ │ └── platform
│ │ │ │ ├── DataGridObject.java
│ │ │ │ ├── EChartsObject.java
│ │ │ │ ├── Menu.java
│ │ │ │ ├── NormalAreaStyle.java
│ │ │ │ ├── RedisEChartsObject.java
│ │ │ │ ├── ResponseObject.java
│ │ │ │ ├── RestStatus.java
│ │ │ │ ├── SelectLabel.java
│ │ │ │ └── SelectObject.java
│ │ │ ├── resources
│ │ │ │ ├── log4j.properties
│ │ │ │ ├── quartz.properties
│ │ │ │ ├── spring-mvc.xml
│ │ │ │ └── sys-config.properties
│ │ │ └── webapp
│ │ │ ├── WEB-INF
│ │ │ │ └── web.xml
│ │ │ ├── html
│ │ │ │ ├── AutoPageSystemQrtzTriggerInfo
│ │ │ │ │ └── AutoPageSystemQrtzTriggerInfo.html
│ │ │ │ ├── AutoPageSystemQrtzTriggerLog
│ │ │ │ │ └── AutoPageSystemQrtzTriggerLog.html
│ │ │ │ ├── PsMenu
│ │ │ │ │ └── PsMenu.html
│ │ │ │ ├── PsUser
│ │ │ │ │ └── PsUser.html
│ │ │ │ ├── RedisClusterMaster
│ │ │ │ │ ├── RedisClusterMaster.html
│ │ │ │ │ └── RedisMasterPerformance.html
│ │ │ │ ├── RedisClusterMonitorLog
│ │ │ │ │ └── RedisClusterMonitorLog.html
│ │ │ │ ├── RedisClusterSlave
│ │ │ │ │ ├── RedisClusterSlave.html
│ │ │ │ │ └── RedisSlavePerformance.html
│ │ │ │ ├── SystemApplication
│ │ │ │ │ ├── SystemApplication.html
│ │ │ │ │ └── performance.html
│ │ │ │ ├── SystemApplicationMonitor
│ │ │ │ │ └── SystemApplicationMonitor.html
│ │ │ │ ├── SystemComponent
│ │ │ │ │ └── SystemComponent.html
│ │ │ │ ├── dict
│ │ │ │ │ └── dict.html
│ │ │ │ ├── index
│ │ │ │ │ ├── include
│ │ │ │ │ │ ├── left_nav.html
│ │ │ │ │ │ ├── main.html
│ │ │ │ │ │ └── resources.html
│ │ │ │ │ └── index.html
│ │ │ │ └── login
│ │ │ │ └── login.html
│ │ │ ├── index.jsp
│ │ │ └── js
│ │ │ ├── easyui
│ │ │ │ ├── easyloader.js
│ │ │ │ ├── jquery.easyui.min.js
│ │ │ │ ├── jquery.easyui.mobile.js
│ │ │ │ ├── jquery.min.js
│ │ │ │ ├── locale
│ │ │ │ │ ├── easyui-lang-af.js
│ │ │ │ │ ├── easyui-lang-am.js
│ │ │ │ │ ├── easyui-lang-ar.js
│ │ │ │ │ ├── easyui-lang-bg.js
│ │ │ │ │ ├── easyui-lang-ca.js
│ │ │ │ │ ├── easyui-lang-cs.js
│ │ │ │ │ ├── easyui-lang-cz.js
│ │ │ │ │ ├── easyui-lang-da.js
│ │ │ │ │ ├── easyui-lang-de.js
│ │ │ │ │ ├── easyui-lang-el.js
│ │ │ │ │ ├── easyui-lang-en.js
│ │ │ │ │ ├── easyui-lang-es.js
│ │ │ │ │ ├── easyui-lang-fr.js
│ │ │ │ │ ├── easyui-lang-it.js
│ │ │ │ │ ├── easyui-lang-jp.js
│ │ │ │ │ ├── easyui-lang-ko.js
│ │ │ │ │ ├── easyui-lang-nl.js
│ │ │ │ │ ├── easyui-lang-pl.js
│ │ │ │ │ ├── easyui-lang-pt_BR.js
│ │ │ │ │ ├── easyui-lang-ru.js
│ │ │ │ │ ├── easyui-lang-sv_SE.js
│ │ │ │ │ ├── easyui-lang-tr.js
│ │ │ │ │ ├── easyui-lang-zh_CN.js
│ │ │ │ │ └── easyui-lang-zh_TW.js
│ │ │ │ ├── plugins
│ │ │ │ │ ├── jquery.accordion.js
│ │ │ │ │ ├── jquery.calendar.js
│ │ │ │ │ ├── jquery.combo.js
│ │ │ │ │ ├── jquery.combobox.js
│ │ │ │ │ ├── jquery.combogrid.js
│ │ │ │ │ ├── jquery.combotree.js
│ │ │ │ │ ├── jquery.combotreegrid.js
│ │ │ │ │ ├── jquery.datagrid.js
│ │ │ │ │ ├── jquery.datalist.js
│ │ │ │ │ ├── jquery.datebox.js
│ │ │ │ │ ├── jquery.datetimebox.js
│ │ │ │ │ ├── jquery.datetimespinner.js
│ │ │ │ │ ├── jquery.dialog.js
│ │ │ │ │ ├── jquery.draggable.js
│ │ │ │ │ ├── jquery.droppable.js
│ │ │ │ │ ├── jquery.filebox.js
│ │ │ │ │ ├── jquery.form.js
│ │ │ │ │ ├── jquery.layout.js
│ │ │ │ │ ├── jquery.linkbutton.js
│ │ │ │ │ ├── jquery.menu.js
│ │ │ │ │ ├── jquery.menubutton.js
│ │ │ │ │ ├── jquery.messager.js
│ │ │ │ │ ├── jquery.mobile.js
│ │ │ │ │ ├── jquery.numberbox.js
│ │ │ │ │ ├── jquery.numberspinner.js
│ │ │ │ │ ├── jquery.pagination.js
│ │ │ │ │ ├── jquery.panel.js
│ │ │ │ │ ├── jquery.parser.js
│ │ │ │ │ ├── jquery.passwordbox.js
│ │ │ │ │ ├── jquery.progressbar.js
│ │ │ │ │ ├── jquery.propertygrid.js
│ │ │ │ │ ├── jquery.resizable.js
│ │ │ │ │ ├── jquery.searchbox.js
│ │ │ │ │ ├── jquery.slider.js
│ │ │ │ │ ├── jquery.spinner.js
│ │ │ │ │ ├── jquery.splitbutton.js
│ │ │ │ │ ├── jquery.switchbutton.js
│ │ │ │ │ ├── jquery.tabs.js
│ │ │ │ │ ├── jquery.textbox.js
│ │ │ │ │ ├── jquery.timespinner.js
│ │ │ │ │ ├── jquery.tooltip.js
│ │ │ │ │ ├── jquery.tree.js
│ │ │ │ │ ├── jquery.treegrid.js
│ │ │ │ │ ├── jquery.validatebox.js
│ │ │ │ │ └── jquery.window.js
│ │ │ │ └── themes
│ │ │ │ ├── black
│ │ │ │ │ ├── accordion.css
│ │ │ │ │ ├── calendar.css
│ │ │ │ │ ├── combo.css
│ │ │ │ │ ├── combobox.css
│ │ │ │ │ ├── datagrid.css
│ │ │ │ │ ├── datalist.css
│ │ │ │ │ ├── datebox.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── easyui.css
│ │ │ │ │ ├── filebox.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ │ ├── passwordbox_close.png
│ │ │ │ │ │ ├── passwordbox_open.png
│ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ ├── layout.css
│ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ ├── menu.css
│ │ │ │ │ ├── menubutton.css
│ │ │ │ │ ├── messager.css
│ │ │ │ │ ├── numberbox.css
│ │ │ │ │ ├── pagination.css
│ │ │ │ │ ├── panel.css
│ │ │ │ │ ├── passwordbox.css
│ │ │ │ │ ├── progressbar.css
│ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ ├── searchbox.css
│ │ │ │ │ ├── slider.css
│ │ │ │ │ ├── spinner.css
│ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ ├── switchbutton.css
│ │ │ │ │ ├── tabs.css
│ │ │ │ │ ├── textbox.css
│ │ │ │ │ ├── tooltip.css
│ │ │ │ │ ├── tree.css
│ │ │ │ │ ├── validatebox.css
│ │ │ │ │ └── window.css
│ │ │ │ ├── bootstrap
│ │ │ │ │ ├── accordion.css
│ │ │ │ │ ├── calendar.css
│ │ │ │ │ ├── combo.css
│ │ │ │ │ ├── combobox.css
│ │ │ │ │ ├── datagrid.css
│ │ │ │ │ ├── datalist.css
│ │ │ │ │ ├── datebox.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── easyui.css
│ │ │ │ │ ├── filebox.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ │ ├── passwordbox_close.png
│ │ │ │ │ │ ├── passwordbox_open.png
│ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ ├── layout.css
│ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ ├── menu.css
│ │ │ │ │ ├── menubutton.css
│ │ │ │ │ ├── messager.css
│ │ │ │ │ ├── numberbox.css
│ │ │ │ │ ├── pagination.css
│ │ │ │ │ ├── panel.css
│ │ │ │ │ ├── passwordbox.css
│ │ │ │ │ ├── progressbar.css
│ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ ├── searchbox.css
│ │ │ │ │ ├── slider.css
│ │ │ │ │ ├── spinner.css
│ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ ├── switchbutton.css
│ │ │ │ │ ├── tabs.css
│ │ │ │ │ ├── textbox.css
│ │ │ │ │ ├── tooltip.css
│ │ │ │ │ ├── tree.css
│ │ │ │ │ ├── validatebox.css
│ │ │ │ │ └── window.css
│ │ │ │ ├── color.css
│ │ │ │ ├── default
│ │ │ │ │ ├── accordion.css
│ │ │ │ │ ├── calendar.css
│ │ │ │ │ ├── combo.css
│ │ │ │ │ ├── combobox.css
│ │ │ │ │ ├── datagrid.css
│ │ │ │ │ ├── datalist.css
│ │ │ │ │ ├── datebox.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── easyui.css
│ │ │ │ │ ├── filebox.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ │ ├── passwordbox_close.png
│ │ │ │ │ │ ├── passwordbox_open.png
│ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ ├── layout.css
│ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ ├── menu.css
│ │ │ │ │ ├── menubutton.css
│ │ │ │ │ ├── messager.css
│ │ │ │ │ ├── numberbox.css
│ │ │ │ │ ├── pagination.css
│ │ │ │ │ ├── panel.css
│ │ │ │ │ ├── passwordbox.css
│ │ │ │ │ ├── progressbar.css
│ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ ├── searchbox.css
│ │ │ │ │ ├── slider.css
│ │ │ │ │ ├── spinner.css
│ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ ├── switchbutton.css
│ │ │ │ │ ├── tabs.css
│ │ │ │ │ ├── textbox.css
│ │ │ │ │ ├── tooltip.css
│ │ │ │ │ ├── tree.css
│ │ │ │ │ ├── validatebox.css
│ │ │ │ │ └── window.css
│ │ │ │ ├── gray
│ │ │ │ │ ├── accordion.css
│ │ │ │ │ ├── calendar.css
│ │ │ │ │ ├── combo.css
│ │ │ │ │ ├── combobox.css
│ │ │ │ │ ├── datagrid.css
│ │ │ │ │ ├── datalist.css
│ │ │ │ │ ├── datebox.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── easyui.css
│ │ │ │ │ ├── filebox.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ │ ├── passwordbox_close.png
│ │ │ │ │ │ ├── passwordbox_open.png
│ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ ├── layout.css
│ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ ├── menu.css
│ │ │ │ │ ├── menubutton.css
│ │ │ │ │ ├── messager.css
│ │ │ │ │ ├── numberbox.css
│ │ │ │ │ ├── pagination.css
│ │ │ │ │ ├── panel.css
│ │ │ │ │ ├── passwordbox.css
│ │ │ │ │ ├── progressbar.css
│ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ ├── searchbox.css
│ │ │ │ │ ├── slider.css
│ │ │ │ │ ├── spinner.css
│ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ ├── switchbutton.css
│ │ │ │ │ ├── tabs.css
│ │ │ │ │ ├── textbox.css
│ │ │ │ │ ├── tooltip.css
│ │ │ │ │ ├── tree.css
│ │ │ │ │ ├── validatebox.css
│ │ │ │ │ └── window.css
│ │ │ │ ├── icon.css
│ │ │ │ ├── icons
│ │ │ │ │ ├── back.png
│ │ │ │ │ ├── blank.gif
│ │ │ │ │ ├── cancel.png
│ │ │ │ │ ├── clear.png
│ │ │ │ │ ├── cut.png
│ │ │ │ │ ├── edit_add.png
│ │ │ │ │ ├── edit_remove.png
│ │ │ │ │ ├── filesave.png
│ │ │ │ │ ├── filter.png
│ │ │ │ │ ├── help.png
│ │ │ │ │ ├── large_chart.png
│ │ │ │ │ ├── large_clipart.png
│ │ │ │ │ ├── large_picture.png
│ │ │ │ │ ├── large_shapes.png
│ │ │ │ │ ├── large_smartart.png
│ │ │ │ │ ├── lock.png
│ │ │ │ │ ├── man.png
│ │ │ │ │ ├── mini_add.png
│ │ │ │ │ ├── mini_edit.png
│ │ │ │ │ ├── mini_refresh.png
│ │ │ │ │ ├── more.png
│ │ │ │ │ ├── no.png
│ │ │ │ │ ├── ok.png
│ │ │ │ │ ├── pencil.png
│ │ │ │ │ ├── print.png
│ │ │ │ │ ├── redo.png
│ │ │ │ │ ├── reload.png
│ │ │ │ │ ├── search.png
│ │ │ │ │ ├── sum.png
│ │ │ │ │ ├── tip.png
│ │ │ │ │ └── undo.png
│ │ │ │ ├── material
│ │ │ │ │ ├── accordion.css
│ │ │ │ │ ├── calendar.css
│ │ │ │ │ ├── combo.css
│ │ │ │ │ ├── combobox.css
│ │ │ │ │ ├── datagrid.css
│ │ │ │ │ ├── datalist.css
│ │ │ │ │ ├── datebox.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── easyui.css
│ │ │ │ │ ├── filebox.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── Thumbs.db
│ │ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ │ ├── passwordbox_close.png
│ │ │ │ │ │ ├── passwordbox_open.png
│ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ ├── layout.css
│ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ ├── menu.css
│ │ │ │ │ ├── menubutton.css
│ │ │ │ │ ├── messager.css
│ │ │ │ │ ├── numberbox.css
│ │ │ │ │ ├── pagination.css
│ │ │ │ │ ├── panel.css
│ │ │ │ │ ├── passwordbox.css
│ │ │ │ │ ├── progressbar.css
│ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ ├── searchbox.css
│ │ │ │ │ ├── slider.css
│ │ │ │ │ ├── spinner.css
│ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ ├── switchbutton.css
│ │ │ │ │ ├── tabs.css
│ │ │ │ │ ├── textbox.css
│ │ │ │ │ ├── tooltip.css
│ │ │ │ │ ├── tree.css
│ │ │ │ │ ├── validatebox.css
│ │ │ │ │ └── window.css
│ │ │ │ ├── metro
│ │ │ │ │ ├── accordion.css
│ │ │ │ │ ├── calendar.css
│ │ │ │ │ ├── combo.css
│ │ │ │ │ ├── combobox.css
│ │ │ │ │ ├── datagrid.css
│ │ │ │ │ ├── datalist.css
│ │ │ │ │ ├── datebox.css
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ ├── easyui.css
│ │ │ │ │ ├── filebox.css
│ │ │ │ │ ├── images
│ │ │ │ │ │ ├── accordion_arrows.png
│ │ │ │ │ │ ├── blank.gif
│ │ │ │ │ │ ├── calendar_arrows.png
│ │ │ │ │ │ ├── combo_arrow.png
│ │ │ │ │ │ ├── datagrid_icons.png
│ │ │ │ │ │ ├── datebox_arrow.png
│ │ │ │ │ │ ├── layout_arrows.png
│ │ │ │ │ │ ├── linkbutton_bg.png
│ │ │ │ │ │ ├── loading.gif
│ │ │ │ │ │ ├── menu_arrows.png
│ │ │ │ │ │ ├── messager_icons.png
│ │ │ │ │ │ ├── pagination_icons.png
│ │ │ │ │ │ ├── panel_tools.png
│ │ │ │ │ │ ├── passwordbox_close.png
│ │ │ │ │ │ ├── passwordbox_open.png
│ │ │ │ │ │ ├── searchbox_button.png
│ │ │ │ │ │ ├── slider_handle.png
│ │ │ │ │ │ ├── spinner_arrows.png
│ │ │ │ │ │ ├── tabs_icons.png
│ │ │ │ │ │ ├── tree_icons.png
│ │ │ │ │ │ └── validatebox_warning.png
│ │ │ │ │ ├── layout.css
│ │ │ │ │ ├── linkbutton.css
│ │ │ │ │ ├── menu.css
│ │ │ │ │ ├── menubutton.css
│ │ │ │ │ ├── messager.css
│ │ │ │ │ ├── numberbox.css
│ │ │ │ │ ├── pagination.css
│ │ │ │ │ ├── panel.css
│ │ │ │ │ ├── passwordbox.css
│ │ │ │ │ ├── progressbar.css
│ │ │ │ │ ├── propertygrid.css
│ │ │ │ │ ├── searchbox.css
│ │ │ │ │ ├── slider.css
│ │ │ │ │ ├── spinner.css
│ │ │ │ │ ├── splitbutton.css
│ │ │ │ │ ├── switchbutton.css
│ │ │ │ │ ├── tabs.css
│ │ │ │ │ ├── textbox.css
│ │ │ │ │ ├── tooltip.css
│ │ │ │ │ ├── tree.css
│ │ │ │ │ ├── validatebox.css
│ │ │ │ │ └── window.css
│ │ │ │ └── mobile.css
│ │ │ ├── layui
│ │ │ │ ├── font-awesome
│ │ │ │ │ ├── css
│ │ │ │ │ │ ├── font-awesome.css
│ │ │ │ │ │ └── font-awesome.min.css
│ │ │ │ │ └── fonts
│ │ │ │ │ ├── FontAwesome.otf
│ │ │ │ │ ├── fontawesome-webfont.eot
│ │ │ │ │ ├── fontawesome-webfont.svg
│ │ │ │ │ ├── fontawesome-webfont.ttf
│ │ │ │ │ ├── fontawesome-webfont.woff
│ │ │ │ │ └── fontawesome-webfont.woff2
│ │ │ │ └── layui
│ │ │ │ ├── css
│ │ │ │ │ ├── layui.css
│ │ │ │ │ └── modules
│ │ │ │ │ ├── code.css
│ │ │ │ │ ├── laydate
│ │ │ │ │ │ ├── icon.png
│ │ │ │ │ │ └── laydate.css
│ │ │ │ │ └── layer
│ │ │ │ │ └── default
│ │ │ │ │ ├── icon-ext.png
│ │ │ │ │ ├── icon.png
│ │ │ │ │ ├── layer.css
│ │ │ │ │ ├── loading-0.gif
│ │ │ │ │ ├── loading-1.gif
│ │ │ │ │ └── loading-2.gif
│ │ │ │ ├── font
│ │ │ │ │ ├── iconfont.eot
│ │ │ │ │ ├── iconfont.svg
│ │ │ │ │ ├── iconfont.ttf
│ │ │ │ │ └── iconfont.woff
│ │ │ │ ├── images
│ │ │ │ │ └── face
│ │ │ │ │ ├── 0.gif
│ │ │ │ │ ├── 1.gif
│ │ │ │ │ ├── 10.gif
│ │ │ │ │ ├── 11.gif
│ │ │ │ │ ├── 12.gif
│ │ │ │ │ ├── 13.gif
│ │ │ │ │ ├── 14.gif
│ │ │ │ │ ├── 15.gif
│ │ │ │ │ ├── 16.gif
│ │ │ │ │ ├── 17.gif
│ │ │ │ │ ├── 18.gif
│ │ │ │ │ ├── 19.gif
│ │ │ │ │ ├── 2.gif
│ │ │ │ │ ├── 20.gif
│ │ │ │ │ ├── 21.gif
│ │ │ │ │ ├── 22.gif
│ │ │ │ │ ├── 23.gif
│ │ │ │ │ ├── 24.gif
│ │ │ │ │ ├── 25.gif
│ │ │ │ │ ├── 26.gif
│ │ │ │ │ ├── 27.gif
│ │ │ │ │ ├── 28.gif
│ │ │ │ │ ├── 29.gif
│ │ │ │ │ ├── 3.gif
│ │ │ │ │ ├── 30.gif
│ │ │ │ │ ├── 31.gif
│ │ │ │ │ ├── 32.gif
│ │ │ │ │ ├── 33.gif
│ │ │ │ │ ├── 34.gif
│ │ │ │ │ ├── 35.gif
│ │ │ │ │ ├── 36.gif
│ │ │ │ │ ├── 37.gif
│ │ │ │ │ ├── 38.gif
│ │ │ │ │ ├── 39.gif
│ │ │ │ │ ├── 4.gif
│ │ │ │ │ ├── 40.gif
│ │ │ │ │ ├── 41.gif
│ │ │ │ │ ├── 42.gif
│ │ │ │ │ ├── 43.gif
│ │ │ │ │ ├── 44.gif
│ │ │ │ │ ├── 45.gif
│ │ │ │ │ ├── 46.gif
│ │ │ │ │ ├── 47.gif
│ │ │ │ │ ├── 48.gif
│ │ │ │ │ ├── 49.gif
│ │ │ │ │ ├── 5.gif
│ │ │ │ │ ├── 50.gif
│ │ │ │ │ ├── 51.gif
│ │ │ │ │ ├── 52.gif
│ │ │ │ │ ├── 53.gif
│ │ │ │ │ ├── 54.gif
│ │ │ │ │ ├── 55.gif
│ │ │ │ │ ├── 56.gif
│ │ │ │ │ ├── 57.gif
│ │ │ │ │ ├── 58.gif
│ │ │ │ │ ├── 59.gif
│ │ │ │ │ ├── 6.gif
│ │ │ │ │ ├── 60.gif
│ │ │ │ │ ├── 61.gif
│ │ │ │ │ ├── 62.gif
│ │ │ │ │ ├── 63.gif
│ │ │ │ │ ├── 64.gif
│ │ │ │ │ ├── 65.gif
│ │ │ │ │ ├── 66.gif
│ │ │ │ │ ├── 67.gif
│ │ │ │ │ ├── 68.gif
│ │ │ │ │ ├── 69.gif
│ │ │ │ │ ├── 7.gif
│ │ │ │ │ ├── 70.gif
│ │ │ │ │ ├── 71.gif
│ │ │ │ │ ├── 8.gif
│ │ │ │ │ └── 9.gif
│ │ │ │ ├── lay
│ │ │ │ │ ├── dest
│ │ │ │ │ │ ├── layui.all.js
│ │ │ │ │ │ └── layui.mod.js
│ │ │ │ │ ├── lib
│ │ │ │ │ │ └── jquery.js
│ │ │ │ │ └── modules
│ │ │ │ │ ├── code.js
│ │ │ │ │ ├── element.js
│ │ │ │ │ ├── flow.js
│ │ │ │ │ ├── form.js
│ │ │ │ │ ├── laydate.js
│ │ │ │ │ ├── layedit.js
│ │ │ │ │ ├── layer.js
│ │ │ │ │ ├── laypage.js
│ │ │ │ │ ├── laytpl.js
│ │ │ │ │ ├── tree.js
│ │ │ │ │ ├── upload.js
│ │ │ │ │ └── util.js
│ │ │ │ └── layui.js
│ │ │ ├── selfcss
│ │ │ │ ├── begtable.css
│ │ │ │ ├── demo.css
│ │ │ │ ├── global.css
│ │ │ │ ├── login.css
│ │ │ │ ├── main.css
│ │ │ │ └── table.css
│ │ │ ├── selfimage
│ │ │ │ ├── 0.jpg
│ │ │ │ └── logo-1.png
│ │ │ └── selfjs
│ │ │ ├── common.js
│ │ │ ├── echarts.min.js
│ │ │ ├── index.js
│ │ │ ├── jquery-1.11.1.js
│ │ │ ├── layout.js
│ │ │ ├── navbar.js
│ │ │ └── tab.js
│ │ ├── target
│ │ │ ├── classes
│ │ │ │ ├── log4j.properties
│ │ │ │ ├── quartz.properties
│ │ │ │ ├── spring-mvc.xml
│ │ │ │ └── sys-config.properties
│ │ │ └── m2e-wtp
│ │ │ └── web-resources
│ │ │ └── META-INF
│ │ │ ├── MANIFEST.MF
│ │ │ └── maven
│ │ │ └── com.opensource
│ │ │ └── redis-monitor-api
│ │ │ ├── pom.properties
│ │ │ └── pom.xml
│ │ └── test
│ │ └── main
│ │ └── java
│ │ └── com
│ │ └── jmx
│ │ └── JVMTest.java
│ ├── redis-monitor-common
│ │ ├── pom.xml
│ │ └── src
│ │ ├── main
│ │ │ └── java
│ │ │ └── com
│ │ │ └── opensource
│ │ │ ├── netty
│ │ │ │ └── redis
│ │ │ │ └── proxy
│ │ │ │ └── core
│ │ │ │ └── log
│ │ │ │ ├── ILogService.java
│ │ │ │ └── impl
│ │ │ │ ├── LogService.java
│ │ │ │ └── LoggerUtils.java
│ │ │ └── nredis
│ │ │ └── proxy
│ │ │ └── monitor
│ │ │ ├── array
│ │ │ │ └── utils
│ │ │ │ └── ArrayUtil.java
│ │ │ ├── date
│ │ │ │ └── utils
│ │ │ │ ├── DateBase.java
│ │ │ │ └── DateUtil.java
│ │ │ ├── file
│ │ │ │ └── utils
│ │ │ │ ├── EnvUtil.java
│ │ │ │ ├── FileUtil.java
│ │ │ │ ├── ObjectUtil.java
│ │ │ │ └── PropertiesUtil.java
│ │ │ ├── object
│ │ │ │ └── utils
│ │ │ │ ├── ReflectUtil.java
│ │ │ │ └── StreamUtil.java
│ │ │ ├── string
│ │ │ │ └── utils
│ │ │ │ ├── HashUtil.java
│ │ │ │ ├── NumberUtil.java
│ │ │ │ ├── StringUtil.java
│ │ │ │ └── ValidUtil.java
│ │ │ └── zip
│ │ │ └── utils
│ │ │ └── ZipUtils.java
│ │ └── test
│ │ └── java
│ │ └── org
│ │ └── redis
│ │ └── monitor
│ │ └── common
│ │ └── AppTest.java
│ ├── redis-monitor-dao
│ │ ├── pom.xml
│ │ ├── src
│ │ │ └── main
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ └── opensource
│ │ │ │ └── nredis
│ │ │ │ └── proxy
│ │ │ │ └── monitor
│ │ │ │ ├── dao
│ │ │ │ │ ├── IAutoPageSystemQrtzTriggerInfoDao.java
│ │ │ │ │ ├── IAutoPageSystemQrtzTriggerLogDao.java
│ │ │ │ │ ├── IMyBatisRepository.java
│ │ │ │ │ ├── IPaginationDao.java
│ │ │ │ │ ├── IPsDictDao.java
│ │ │ │ │ ├── IPsMenuDao.java
│ │ │ │ │ ├── IPsUserDao.java
│ │ │ │ │ ├── IPsUserMenuDao.java
│ │ │ │ │ ├── IRedisClusterMasterDao.java
│ │ │ │ │ ├── IRedisClusterMonitorLogDao.java
│ │ │ │ │ ├── IRedisClusterSlaveDao.java
│ │ │ │ │ ├── ISystemApplicationComponentDao.java
│ │ │ │ │ ├── ISystemApplicationDao.java
│ │ │ │ │ ├── ISystemApplicationMonitorDao.java
│ │ │ │ │ └── ISystemComponentDao.java
│ │ │ │ └── model
│ │ │ │ ├── AutoPageSystemQrtzTriggerInfo.java
│ │ │ │ ├── AutoPageSystemQrtzTriggerLog.java
│ │ │ │ ├── PsDict.java
│ │ │ │ ├── PsMenu.java
│ │ │ │ ├── PsUser.java
│ │ │ │ ├── PsUserMenu.java
│ │ │ │ ├── RedisClusterMaster.java
│ │ │ │ ├── RedisClusterMonitorLog.java
│ │ │ │ ├── RedisClusterSlave.java
│ │ │ │ ├── RedisConfigInfo.java
│ │ │ │ ├── SystemApplication.java
│ │ │ │ ├── SystemApplicationComponent.java
│ │ │ │ ├── SystemApplicationMonitor.java
│ │ │ │ ├── SystemComponent.java
│ │ │ │ └── pagination
│ │ │ │ ├── Page.java
│ │ │ │ ├── PageAttribute.java
│ │ │ │ ├── PageList.java
│ │ │ │ └── PaginationTemplate.java
│ │ │ └── resources
│ │ │ ├── com
│ │ │ │ └── opensource
│ │ │ │ └── nredis
│ │ │ │ └── proxy
│ │ │ │ └── monitor
│ │ │ │ └── dao
│ │ │ │ ├── AutoPageSystemQrtzTriggerInfo_sql.xml
│ │ │ │ ├── AutoPageSystemQrtzTriggerLog_sql.xml
│ │ │ │ ├── PsDict_sql.xml
│ │ │ │ ├── PsMenu_sql.xml
│ │ │ │ ├── PsUserMenu_sql.xml
│ │ │ │ ├── PsUser_sql.xml
│ │ │ │ ├── RedisClusterMaster_sql.xml
│ │ │ │ ├── RedisClusterMonitorLog_sql.xml
│ │ │ │ ├── RedisClusterSlave_sql.xml
│ │ │ │ ├── SystemApplicationComponent_sql.xml
│ │ │ │ ├── SystemApplicationMonitor_sql.xml
│ │ │ │ ├── SystemApplication_sql.xml
│ │ │ │ └── SystemComponent_sql.xml
│ │ │ ├── log4j.properties
│ │ │ └── spring-mybatis.xml
│ │ └── target
│ │ └── classes
│ │ ├── com
│ │ │ └── opensource
│ │ │ └── nredis
│ │ │ └── proxy
│ │ │ └── monitor
│ │ │ └── dao
│ │ │ ├── AutoPageSystemQrtzTriggerInfo_sql.xml
│ │ │ ├── AutoPageSystemQrtzTriggerLog_sql.xml
│ │ │ ├── PsDict_sql.xml
│ │ │ ├── PsMenu_sql.xml
│ │ │ ├── PsUserMenu_sql.xml
│ │ │ ├── PsUser_sql.xml
│ │ │ ├── RedisClusterMaster_sql.xml
│ │ │ ├── RedisClusterMonitorLog_sql.xml
│ │ │ ├── RedisClusterSlave_sql.xml
│ │ │ ├── SystemApplicationComponent_sql.xml
│ │ │ ├── SystemApplicationMonitor_sql.xml
│ │ │ ├── SystemApplication_sql.xml
│ │ │ └── SystemComponent_sql.xml
│ │ ├── log4j.properties
│ │ └── spring-mybatis.xml
│ ├── redis-monitor-doc
│ │ └── redis-monitor.sql
│ ├── redis-monitor-service
│ │ ├── pom.xml
│ │ ├── src
│ │ │ └── main
│ │ │ ├── java
│ │ │ │ └── com
│ │ │ │ └── opensource
│ │ │ │ └── nredis
│ │ │ │ └── proxy
│ │ │ │ └── monitor
│ │ │ │ ├── enums
│ │ │ │ │ ├── FinalStatusEnums.java
│ │ │ │ │ ├── JobClassEnums.java
│ │ │ │ │ ├── LeafEnums.java
│ │ │ │ │ ├── ListTypeEnums.java
│ │ │ │ │ ├── MonitorMoudleEnums.java
│ │ │ │ │ ├── OperateStatusEnums.java
│ │ │ │ │ ├── OperateTypeEnums.java
│ │ │ │ │ ├── SpreadEnums.java
│ │ │ │ │ ├── StatusEnums.java
│ │ │ │ │ ├── TESTENVEnums.java
│ │ │ │ │ ├── TomcatStatusEnums.java
│ │ │ │ │ ├── URLTypeEnums.java
│ │ │ │ │ └── YesNOEnums.java
│ │ │ │ ├── exception
│ │ │ │ │ └── DBFailException.java
│ │ │ │ ├── jvm
│ │ │ │ │ └── tools
│ │ │ │ │ ├── CPUBean.java
│ │ │ │ │ ├── HeapMemroryGarbage.java
│ │ │ │ │ ├── MemrorySpaceBean.java
│ │ │ │ │ ├── MonitorJVM.java
│ │ │ │ │ ├── QuartzRuntimeBean.java
│ │ │ │ │ ├── TomcatSessionBean.java
│ │ │ │ │ └── TomcatThreadBean.java
│ │ │ │ ├── lock
│ │ │ │ │ ├── DistributedLock.java
│ │ │ │ │ └── RedisDistributedLock.java
│ │ │ │ ├── quartz
│ │ │ │ │ ├── IFrameworkQuartz.java
│ │ │ │ │ ├── impl
│ │ │ │ │ │ ├── NRedisProxyQuartzImpl.java
│ │ │ │ │ │ ├── SystemApplicationQuartzImpl.java
│ │ │ │ │ │ └── ZookeeperQuartzImpl.java
│ │ │ │ │ └── utils
│ │ │ │ │ ├── ConcurrentExecutionJobQuartz.java
│ │ │ │ │ ├── DynamicSchedulerUtil.java
│ │ │ │ │ └── SpringContextUtil.java
│ │ │ │ └── service
│ │ │ │ ├── AbstractBaseService.java
│ │ │ │ ├── IAutoPageSystemQrtzTriggerInfoService.java
│ │ │ │ ├── IAutoPageSystemQrtzTriggerLogService.java
│ │ │ │ ├── IBaseService.java
│ │ │ │ ├── IPaginationService.java
│ │ │ │ ├── IPsDictService.java
│ │ │ │ ├── IPsMenuService.java
│ │ │ │ ├── IPsUserMenuService.java
│ │ │ │ ├── IPsUserService.java
│ │ │ │ ├── IRedisClusterMasterService.java
│ │ │ │ ├── IRedisClusterMonitorLogService.java
│ │ │ │ ├── IRedisClusterSlaveService.java
│ │ │ │ ├── IRedisService.java
│ │ │ │ ├── ISystemApplicationComponentService.java
│ │ │ │ ├── ISystemApplicationMonitorService.java
│ │ │ │ ├── ISystemApplicationService.java
│ │ │ │ ├── ISystemComponentService.java
│ │ │ │ └── impl
│ │ │ │ ├── AutoPageSystemQrtzTriggerInfoService.java
│ │ │ │ ├── AutoPageSystemQrtzTriggerLogService.java
│ │ │ │ ├── PsDictService.java
│ │ │ │ ├── PsMenuService.java
│ │ │ │ ├── PsUserMenuService.java
│ │ │ │ ├── PsUserService.java
│ │ │ │ ├── RedisClusterMasterService.java
│ │ │ │ ├── RedisClusterMonitorLogService.java
│ │ │ │ ├── RedisClusterSlaveService.java
│ │ │ │ ├── RedisServiceImpl.java
│ │ │ │ ├── SystemApplicationComponentService.java
│ │ │ │ ├── SystemApplicationMonitorService.java
│ │ │ │ ├── SystemApplicationService.java
│ │ │ │ └── SystemComponentService.java
│ │ │ └── resources
│ │ │ └── spring-service.xml
│ │ └── target
│ │ └── classes
│ │ └── spring-service.xml
│ └── redis-monitor-zookeeper
│ ├── pom.xml
│ └── src
│ ├── main
│ │ └── java
│ │ └── com
│ │ └── opensource
│ │ └── nredis
│ │ └── proxy
│ │ └── monitor
│ │ └── zookeeper
│ │ ├── NRedisProxyZookeeper.java
│ │ ├── constants
│ │ │ └── NRedisProxyConstants.java
│ │ ├── enums
│ │ │ └── ZkNodeType.java
│ │ ├── factory
│ │ │ ├── IRegistryFactory.java
│ │ │ └── RegistryFactory.java
│ │ └── utils
│ │ └── ZkUtils.java
│ └── test
│ └── java
│ └── org
│ └── redis
│ └── monitor
│ └── zookeeper
│ └── AppTest.java
└── 5t6t网_redis-monitor.zip
186 directories, 769 files
评论