-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhealth.go
58 lines (51 loc) · 2.29 KB
/
health.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
package api
import v1 "k8s.io/api/core/v1"
type HealthWorker struct {
// Data set on start
NodeName string `json:"nodeName"`
ClusterID string `json:"clusterID"`
Version string `json:"version"`
Storage *HealthWorkerStorage `json:"storage"`
Sniffer *HealthWorkerComponent `json:"sniffer"`
SnifferStats interface{} `json:"snifferStats"`
Tracer *HealthWorkerComponent `json:"tracer"`
TracerStats interface{} `json:"tracerStats"`
BPFFilter string `json:"bpfFilter"`
LicenseData HealthWorkerLicenseData `json:"licenseData"`
}
type HealthWorkerComponent struct {
Timestamp string `json:"timestamp"`
CPUUsage float64 `json:"cpuUsage"`
MemoryUsage float64 `json:"memoryUsage"`
LastRestartReason string `json:"lastRestartReason"`
LastRestartTimestamp string `json:"lastRestartTimestamp"`
Resources v1.ResourceRequirements `json:"resources"`
Restarts int `json:"restarts"`
}
type HealthWorkerStorage struct {
Requested uint64 `json:"requested"`
Usage uint64 `json:"usage"`
}
type HealthWorkerLicenseData struct {
ProcessedBytes int64 `json:"processedBytes"`
ItemsGenerated int64 `json:"itemsGenerated"`
WsWrites int64 `json:"wsWrites"`
StartTime int64 `json:"startTime"`
}
type HealthHub struct {
Workers []HealthHubWorker `json:"workers"`
NodeName string `json:"nodeName"`
ClusterID string `json:"clusterID"`
Version string `json:"version"`
Timestamp string `json:"timestamp"`
CPUUsage float64 `json:"cpuUsage"`
MemoryUsage float64 `json:"memoryUsage"`
LastRestartReason string `json:"lastRestartReason"`
LastRestartTimestamp string `json:"lastRestartTimestamp"`
Resources v1.ResourceRequirements `json:"resources"`
Restarts int `json:"restarts"`
}
type HealthHubWorker struct {
Addr string `json:"addr"`
PodName string `json:"podName"`
}