:trollface: Self-hosted, lightweight server and website monitoring and O&M tool
Go to file
2020-12-02 11:46:31 +08:00
.github/workflows 🔨 rename 2020-11-29 22:38:17 +08:00
cmd 💩 fix self update, go-update could not restart it-self 2020-11-30 17:05:36 +08:00
model 一键脚本 2020-11-29 22:17:40 +08:00
pkg/mygin 🚚 from p14yground to naiba 2020-11-11 10:07:45 +08:00
proto 🚚 add pb code 2020-10-24 21:46:07 +08:00
resource 🚚 from p14yground to naiba 2020-11-11 10:07:45 +08:00
script ♻️ register when upgrade 2020-11-30 14:24:00 +08:00
service dep::gopsutil bump version to v3 2020-11-21 22:07:34 +08:00
.gitignore 一键脚本 2020-11-29 22:17:40 +08:00
.goreleaser.yml self update 2020-11-30 00:07:27 +08:00
Dockerfile.dashboard 🚚 from p14yground to naiba 2020-11-11 10:07:45 +08:00
go.mod self update 2020-11-30 00:07:27 +08:00
go.sum self update 2020-11-30 00:07:27 +08:00
README.md 📝 update 2020-12-02 11:46:31 +08:00

哪吒面板

服务期状态监控,被动接收(非 node-exporter 那种主动拉取的方式。)

一键脚本

curl -L https://raw.githubusercontent.com/naiba/nezha/master/script/install.sh -o nezha.sh && chmod +x nezha.sh
sudo ./nezha.sh

反代配置

使用反向代理时需要针对 /ws 路径的 WebSocket 进行特别配置以支持实时更新服务器状态。

  • Nginx(宝塔):在你的 nginx 配置文件中加入以下代码

    server{
    
        #server_name blablabla...
    
        location /ws {
            proxy_pass http://ip:8008;
            proxy_http_version 1.1;
            proxy_set_header Upgrade $http_upgrade;
            proxy_set_header Connection "Upgrade";
            proxy_set_header Host $host;
        }
    
        #其他的 location blablabla...
    }
    
  • CaddyServer v1v2无需特别配置

    proxy /ws http://ip:8008 {
        websocket
    }
    

系统设计

C/S 采用 gRPC 通信,客户端通过添加主机生成的单独 Token 上报监控信息。因为不会做成多用户的,上报信息会储存到内存中,暂不提供历史数据统计。

  • 首次连接上报基本信息系统、CPU基本信息后面管理员可从客户端主动拉取更新。
  • 监控上报:每隔 3s 向服务器上报系统信息

社区文章