支持info指令查询PID、版本号等信息

This commit is contained in:
GoEdgeLab
2021-11-04 11:14:02 +08:00
parent 9db5b0a67c
commit 52f088337b

View File

@@ -496,6 +496,16 @@ func (this *Node) listenSock() error {
"pid": os.Getpid(),
},
})
case "info":
exePath, _ := os.Executable()
_ = cmd.Reply(&gosock.Command{
Code: "info",
Params: map[string]interface{}{
"pid": os.Getpid(),
"version": teaconst.Version,
"path": exePath,
},
})
case "stop":
_ = cmd.ReplyOk()