forked from elastic/beats
-
Notifications
You must be signed in to change notification settings - Fork 1
/
types.go
119 lines (118 loc) · 4.19 KB
/
types.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
package kubelet
type Summary struct {
Node struct {
CPU struct {
Time string `json:"time"`
UsageCoreNanoSeconds int64 `json:"usageCoreNanoSeconds"`
UsageNanoCores int64 `json:"usageNanoCores"`
} `json:"cpu"`
Fs struct {
AvailableBytes int64 `json:"availableBytes"`
CapacityBytes int64 `json:"capacityBytes"`
Inodes int64 `json:"inodes"`
InodesFree int64 `json:"inodesFree"`
InodesUsed int64 `json:"inodesUsed"`
UsedBytes int64 `json:"usedBytes"`
} `json:"fs"`
Memory struct {
AvailableBytes int64 `json:"availableBytes"`
MajorPageFaults int64 `json:"majorPageFaults"`
PageFaults int64 `json:"pageFaults"`
RssBytes int64 `json:"rssBytes"`
Time string `json:"time"`
UsageBytes int64 `json:"usageBytes"`
WorkingSetBytes int64 `json:"workingSetBytes"`
} `json:"memory"`
Network struct {
RxBytes int64 `json:"rxBytes"`
RxErrors int64 `json:"rxErrors"`
Time string `json:"time"`
TxBytes int64 `json:"txBytes"`
TxErrors int64 `json:"txErrors"`
} `json:"network"`
NodeName string `json:"nodeName"`
Runtime struct {
ImageFs struct {
AvailableBytes int64 `json:"availableBytes"`
CapacityBytes int64 `json:"capacityBytes"`
UsedBytes int64 `json:"usedBytes"`
} `json:"imageFs"`
} `json:"runtime"`
StartTime string `json:"startTime"`
SystemContainers []struct {
CPU struct {
Time string `json:"time"`
UsageCoreNanoSeconds int64 `json:"usageCoreNanoSeconds"`
UsageNanoCores int64 `json:"usageNanoCores"`
} `json:"cpu"`
Memory struct {
MajorPageFaults int64 `json:"majorPageFaults"`
PageFaults int64 `json:"pageFaults"`
RssBytes int64 `json:"rssBytes"`
Time string `json:"time"`
UsageBytes int64 `json:"usageBytes"`
WorkingSetBytes int64 `json:"workingSetBytes"`
} `json:"memory"`
Name string `json:"name"`
StartTime string `json:"startTime"`
UserDefinedMetrics interface{} `json:"userDefinedMetrics"`
} `json:"systemContainers"`
} `json:"node"`
Pods []struct {
Containers []struct {
CPU struct {
Time string `json:"time"`
UsageCoreNanoSeconds int64 `json:"usageCoreNanoSeconds"`
UsageNanoCores int64 `json:"usageNanoCores"`
} `json:"cpu"`
Logs struct {
AvailableBytes int64 `json:"availableBytes"`
CapacityBytes int64 `json:"capacityBytes"`
Inodes int64 `json:"inodes"`
InodesFree int64 `json:"inodesFree"`
InodesUsed int64 `json:"inodesUsed"`
UsedBytes int64 `json:"usedBytes"`
} `json:"logs"`
Memory struct {
AvailableBytes int64 `json:"availableBytes"`
MajorPageFaults int64 `json:"majorPageFaults"`
PageFaults int64 `json:"pageFaults"`
RssBytes int64 `json:"rssBytes"`
Time string `json:"time"`
UsageBytes int64 `json:"usageBytes"`
WorkingSetBytes int64 `json:"workingSetBytes"`
} `json:"memory"`
Name string `json:"name"`
Rootfs struct {
AvailableBytes int64 `json:"availableBytes"`
CapacityBytes int64 `json:"capacityBytes"`
InodesUsed int64 `json:"inodesUsed"`
UsedBytes int64 `json:"usedBytes"`
} `json:"rootfs"`
StartTime string `json:"startTime"`
UserDefinedMetrics interface{} `json:"userDefinedMetrics"`
} `json:"containers"`
Network struct {
RxBytes int64 `json:"rxBytes"`
RxErrors int64 `json:"rxErrors"`
Time string `json:"time"`
TxBytes int64 `json:"txBytes"`
TxErrors int64 `json:"txErrors"`
} `json:"network"`
PodRef struct {
Name string `json:"name"`
Namespace string `json:"namespace"`
UID string `json:"uid"`
} `json:"podRef"`
StartTime string `json:"startTime"`
Volume []struct {
AvailableBytes int64 `json:"availableBytes"`
CapacityBytes int64 `json:"capacityBytes"`
Inodes int64 `json:"inodes"`
InodesFree int64 `json:"inodesFree"`
InodesUsed int64 `json:"inodesUsed"`
Name string `json:"name"`
UsedBytes int64 `json:"usedBytes"`
} `json:"volume"`
} `json:"pods"`
}