-
Notifications
You must be signed in to change notification settings - Fork 0
/
jarvis.go
68 lines (57 loc) · 951 Bytes
/
jarvis.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package jarvis
const (
DIR_PUBLIC = "/public/"
)
const (
URL_INDEX = "/"
URL_DETECTOR = "/detector/"
URL_REPORT = "/report"
URL_LOGIN = "/login"
URL_PING = "/ping"
)
type MetricConfig struct {
ID int64
Type string
Detector string
Params []interface{}
MD5 string
}
type NodeInfo struct {
ID int64 // not used for Login
Name string // not used for Login
Type string
Addr string
OS string
CPU string
Core string
Mem string
Disk string
Uptime string
}
type Login struct {
NodeInfo
}
type LoginRsp struct {
ID int64
Metrics map[string]MetricConfig
}
type Ping struct {
ID int64
Type string
Addr string
Uptime string
}
type PingRsp struct {
LoginRsp
}
type CommonRsp struct {
Status string
}
const (
COMMON_RSP_OK = `{"status":"ok"}`
COMMON_RSP_FAIL = `{"status":"fail"}`
)
type MetricReport struct {
ID int64
Metrics map[string]string
}