├── images ├── yyycode_com20220121113051.png ├── yyycode_com20220121113151.png ├── yyycode_com20220121113242.png ├── yyycode_com20220121113314.png ├── yyycode_com20220121113421.png └── yyycode_com20220121113616.png ├── .gitignore ├── README.md └── LICENSE /images/yyycode_com20220121113051.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baiyuetribe/ServersMonitor/HEAD/images/yyycode_com20220121113051.png -------------------------------------------------------------------------------- /images/yyycode_com20220121113151.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baiyuetribe/ServersMonitor/HEAD/images/yyycode_com20220121113151.png -------------------------------------------------------------------------------- /images/yyycode_com20220121113242.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baiyuetribe/ServersMonitor/HEAD/images/yyycode_com20220121113242.png -------------------------------------------------------------------------------- /images/yyycode_com20220121113314.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baiyuetribe/ServersMonitor/HEAD/images/yyycode_com20220121113314.png -------------------------------------------------------------------------------- /images/yyycode_com20220121113421.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baiyuetribe/ServersMonitor/HEAD/images/yyycode_com20220121113421.png -------------------------------------------------------------------------------- /images/yyycode_com20220121113616.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Baiyuetribe/ServersMonitor/HEAD/images/yyycode_com20220121113616.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Binaries for programs and plugins 2 | *.exe 3 | *.exe~ 4 | *.dll 5 | *.so 6 | *.dylib 7 | 8 | # Test binary, built with `go test -c` 9 | *.test 10 | 11 | # Output of the go coverage tool, specifically when used with LiteIDE 12 | *.out 13 | 14 | # Dependency directories (remove the comment below to include it) 15 | # vendor/ 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # ServersMonitor 2 | 云监控、云探针,拟物态UI设计。纯Go编写,零依赖低内存低消耗、可跨终端使用。 3 | 4 | ## 在线演示 5 | http://119.29.25.39:3070 6 | 7 | ## 演示截图 8 | pc端演示 9 | 10 | ![](images/yyycode_com20220121113051.png) 11 | ![](images/yyycode_com20220121113151.png) 12 | 13 | 移动端演示: 14 | 15 | ![](images/yyycode_com20220121113242.png) 16 | 17 | ![](images/yyycode_com20220121113314.png) 18 | 19 | 支持详情 20 | ![](images/yyycode_com20220121113421.png) 21 | 22 | 后台截图(可新增、拖拽节点顺序、修改账户密码等): 23 | 24 | ![](images/yyycode_com20220121113616.png) 25 | 26 | 节点添加后自动生成一键部署节点脚本、可一键复制后执行。告别手动参数设置。 27 | 28 | ## 特点 29 | - 纯Go编写、零依赖低消耗 30 | - 支持linux、windows、macos(不局限服务器) 31 | - 自带管理界面、可新增、删除管理节点 32 | - 自带一键部署节点命令 33 | 34 | ## 安装教程 35 | 云监控面板安装一键脚本: 36 | ```sh 37 | 待写。。。 38 | ``` 39 | 40 | 节点服务器安装: 41 | 从后台管理界面列表,一键复制命令,然后在需要监控的节点上运行命令即可。 42 | 43 | ## 项目来源: 44 | 45 | - [佰阅科技](https://tech.baiyue.one) 46 | 47 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | BSD 3-Clause License 2 | 3 | Copyright (c) 2022, 佰阅 4 | All rights reserved. 5 | 6 | Redistribution and use in source and binary forms, with or without 7 | modification, are permitted provided that the following conditions are met: 8 | 9 | 1. Redistributions of source code must retain the above copyright notice, this 10 | list of conditions and the following disclaimer. 11 | 12 | 2. Redistributions in binary form must reproduce the above copyright notice, 13 | this list of conditions and the following disclaimer in the documentation 14 | and/or other materials provided with the distribution. 15 | 16 | 3. Neither the name of the copyright holder nor the names of its 17 | contributors may be used to endorse or promote products derived from 18 | this software without specific prior written permission. 19 | 20 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" 21 | AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 22 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE 23 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE 24 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 25 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR 26 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 27 | CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, 28 | OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 29 | OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 30 | --------------------------------------------------------------------------------