Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/qinxuewu/boot-actuator

基于SpringBoot2.0 实现的jvm远程监工图形化工具,可以同时监控多个web应用,支持远程监控
https://github.com/qinxuewu/boot-actuator

boot-actuator java jee jvm springboot websocket

Last synced: about 21 hours ago
JSON representation

基于SpringBoot2.0 实现的jvm远程监工图形化工具,可以同时监控多个web应用,支持远程监控

Awesome Lists containing this project

README

        

# 简介
[![QQ群](https://img.shields.io/badge/QQ%E7%BE%A4-924715723-yellowgreen.svg)](https://jq.qq.com/?_wv=1027&k=5PIRvFq)
[![码云](https://img.shields.io/badge/Gitee-%E7%A0%81%E4%BA%91-yellow.svg)](https://gitee.com/qinxuewu)
[![Github](https://img.shields.io/badge/Github-Github-red.svg)](https://github.com/a870439570)

## 项目介绍
- 基于SpringBoot2.0 实现的jvm远程监工图形化工具,可以同时监控多个web应用
- 该项目是借鉴另个一开源项目JavaMonito初始版演变而来,剔除了一些功能,增加了可远程监控模块,只需要在需要监控的项目集成监控的jar包 并设置可访问的IP(默认为空 则不拦截IP访问) 就可以实现远程监控,和用户管理模块,动态定时任务
支付windows服务器和Linux服务监控,Mac还未测试 应该也支持
- 参考项目地址:https://github.com/yueshutong/JavaMonitor

## 项目框架
- SpringBoot 2.0.3.RELEASE
- mybatis-plus 3.6
- MySql
- Jdk1.8

## 目录说明
1. actuator-service 监控端点jar包 需要引入到需要监控的项目中(已打包好上传)
1. boot-monitor 监监控图形化工程

## 安装说明

### 第一步
编译actuator-service工程 打成jar包

```
mvn install:install-file -Dfile=actuator-service-1.0.jar -DgroupId=com.github.qinxuewu -DartifactId=actuator-service -Dversion=1.0 -Dpackaging=jar
```
- Dfile: 要安装的JAR的本地路径 
- DgroupId:要安装的JAR的Group Id  (本地仓库的下一级目录到生成好的jar包的上一级目录 之间 用.分割:redis.clients)
- DartifactId: 要安装的JAR的 Artificial Id (生成好的jar包的上一级目录)
- Dversion: JAR 版本 
- Dpackaging: 打包类型,例如JAR

### 第二步
需要监控的项目中引入actuator-service-1.0.jar
```

com.github.qinxuewu
actuator-service
1.0