Skip to content

Commit 201ef92

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 77f8914 + 744dcd1 commit 201ef92

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,11 @@
1313
1. 前端通过socket的emit可读取:`stats 节点信息``latency 延迟``node-ping ping`三类数据
1414

1515
## 使用方式
16-
分为客户端和服务器端,客户端安装在每台需要监控的节点上,服务器端找台有ip的稳定机子部署就行
16+
分为客户端和服务器端,客户端安装在每台需要监控的节点上,服务器端找台有ip的稳定机子部署就行。
17+
需要先在根目录执行:
18+
```shell
19+
go mod tidy
20+
```
1721

1822
### client
1923
```shell

client/app/app.go

+7-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ func (a *App) Start() {
5858
defer func() {
5959
a.close(conn, readTicker, latencyTicker)
6060
// if not interrupt,restart the client
61-
if !isInterrupt {
61+
if r := recover(); r != nil || !isInterrupt {
6262
time.Sleep(5 * time.Second)
6363
a.Start()
6464
}
@@ -112,6 +112,12 @@ func (a *App) Start() {
112112
}
113113

114114
func (a *App) readLoop(conn *connutil.ConnWrapper) {
115+
defer func() {
116+
if r := recover(); r != nil {
117+
return
118+
}
119+
}()
120+
115121
for {
116122
blob := json.RawMessage{}
117123
if err := conn.ReadJSON(&blob); err != nil {

0 commit comments

Comments
 (0)