File tree 2 files changed +12
-2
lines changed
2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 13
13
1 . 前端通过socket的emit可读取:` stats 节点信息 ` 、` latency 延迟 ` 、` node-ping ping ` 三类数据
14
14
15
15
## 使用方式
16
- 分为客户端和服务器端,客户端安装在每台需要监控的节点上,服务器端找台有ip的稳定机子部署就行
16
+ 分为客户端和服务器端,客户端安装在每台需要监控的节点上,服务器端找台有ip的稳定机子部署就行。
17
+ 需要先在根目录执行:
18
+ ``` shell
19
+ go mod tidy
20
+ ```
17
21
18
22
### client
19
23
``` shell
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ func (a *App) Start() {
58
58
defer func () {
59
59
a .close (conn , readTicker , latencyTicker )
60
60
// if not interrupt,restart the client
61
- if ! isInterrupt {
61
+ if r := recover (); r != nil || ! isInterrupt {
62
62
time .Sleep (5 * time .Second )
63
63
a .Start ()
64
64
}
@@ -112,6 +112,12 @@ func (a *App) Start() {
112
112
}
113
113
114
114
func (a * App ) readLoop (conn * connutil.ConnWrapper ) {
115
+ defer func () {
116
+ if r := recover (); r != nil {
117
+ return
118
+ }
119
+ }()
120
+
115
121
for {
116
122
blob := json.RawMessage {}
117
123
if err := conn .ReadJSON (& blob ); err != nil {
You can’t perform that action at this time.
0 commit comments