fluent-plugin-k8s-metrics-agg 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.circleci/build_and_push.sh +10 -0
- data/.circleci/build_and_push_to_dockerhub.sh +11 -0
- data/.circleci/build_and_push_to_github_release.sh +11 -0
- data/.circleci/config.yml +105 -0
- data/.circleci/install_dep.sh +5 -0
- data/.circleci/push_gem.sh +7 -0
- data/.gitignore +5 -0
- data/CONTRIBUTING.md +11 -0
- data/CONTRIBUTORS.md +13 -0
- data/Gemfile +3 -0
- data/Gemfile.lock +101 -0
- data/LICENSE +269 -0
- data/README.md +94 -0
- data/Rakefile +29 -0
- data/VERSION +1 -0
- data/docker/CONTRIBUTING.md +20 -0
- data/docker/Dockerfile +52 -0
- data/docker/LICENSE +201 -0
- data/docker/README.md +1 -0
- data/docker/entrypoint.sh +27 -0
- data/fluent-plugin-k8s-metrics-agg.gemspec +33 -0
- data/lib/fluent/plugin/in_kubernetes_metrics_aggregator.rb +604 -0
- data/test/api.json +8 -0
- data/test/helper.rb +178 -0
- data/test/node1.json +667 -0
- data/test/node2.json +692 -0
- data/test/node3.json +629 -0
- data/test/nodes.json +814 -0
- data/test/plugin/test_in_kubernetes_metrics_aggregator.rb +218 -0
- data/test/pods.json +3502 -0
- data/test/v1.json +488 -0
- metadata +210 -0
data/test/node3.json
ADDED
@@ -0,0 +1,629 @@
|
|
1
|
+
{
|
2
|
+
"node": {
|
3
|
+
"nodeName": "generics-aws-node-three",
|
4
|
+
"systemContainers": [
|
5
|
+
{
|
6
|
+
"name": "pods",
|
7
|
+
"startTime": "2018-11-02T20:08:30Z",
|
8
|
+
"cpu": {
|
9
|
+
"time": "2018-11-29T20:30:46Z",
|
10
|
+
"usageNanoCores": 7735306,
|
11
|
+
"usageCoreNanoSeconds": 11318845093188
|
12
|
+
},
|
13
|
+
"memory": {
|
14
|
+
"time": "2018-11-29T20:30:46Z",
|
15
|
+
"availableBytes": 3976065024,
|
16
|
+
"usageBytes": 192081920,
|
17
|
+
"workingSetBytes": 170377216,
|
18
|
+
"rssBytes": 146661376,
|
19
|
+
"pageFaults": 0,
|
20
|
+
"majorPageFaults": 0
|
21
|
+
},
|
22
|
+
"userDefinedMetrics": null
|
23
|
+
}
|
24
|
+
],
|
25
|
+
"startTime": "2018-11-02T20:08:30Z",
|
26
|
+
"cpu": {
|
27
|
+
"time": "2018-11-29T20:30:46Z",
|
28
|
+
"usageNanoCores": 32400487,
|
29
|
+
"usageCoreNanoSeconds": 65999077360081
|
30
|
+
},
|
31
|
+
"memory": {
|
32
|
+
"time": "2018-11-29T20:30:46Z",
|
33
|
+
"availableBytes": 2214625280,
|
34
|
+
"usageBytes": 3294208000,
|
35
|
+
"workingSetBytes": 1931816960,
|
36
|
+
"rssBytes": 303644672,
|
37
|
+
"pageFaults": 719335331,
|
38
|
+
"majorPageFaults": 7008
|
39
|
+
},
|
40
|
+
"network": {
|
41
|
+
"time": "2018-11-29T20:30:46Z",
|
42
|
+
"name": "eth0",
|
43
|
+
"rxBytes": 12002974501,
|
44
|
+
"rxErrors": 0,
|
45
|
+
"txBytes": 4750455447,
|
46
|
+
"txErrors": 0,
|
47
|
+
"interfaces": [
|
48
|
+
{
|
49
|
+
"name": "cbr0",
|
50
|
+
"rxBytes": 3467250471,
|
51
|
+
"rxErrors": 0,
|
52
|
+
"txBytes": 2329075862,
|
53
|
+
"txErrors": 0
|
54
|
+
},
|
55
|
+
{
|
56
|
+
"name": "eth0",
|
57
|
+
"rxBytes": 12002974501,
|
58
|
+
"rxErrors": 0,
|
59
|
+
"txBytes": 4750455447,
|
60
|
+
"txErrors": 0
|
61
|
+
}
|
62
|
+
]
|
63
|
+
},
|
64
|
+
"fs": {
|
65
|
+
"time": "2018-11-29T20:30:46Z",
|
66
|
+
"availableBytes": 103278157824,
|
67
|
+
"capacityBytes": 128767627264,
|
68
|
+
"usedBytes": 19889659904,
|
69
|
+
"inodesFree": 32634949,
|
70
|
+
"inodes": 33554432,
|
71
|
+
"inodesUsed": 919483
|
72
|
+
},
|
73
|
+
"runtime": {
|
74
|
+
"imageFs": {
|
75
|
+
"time": "2018-11-29T20:30:46Z",
|
76
|
+
"availableBytes": 103278157824,
|
77
|
+
"capacityBytes": 128767627264,
|
78
|
+
"usedBytes": 15040978921,
|
79
|
+
"inodesFree": 32634949,
|
80
|
+
"inodes": 33554432,
|
81
|
+
"inodesUsed": 919483
|
82
|
+
}
|
83
|
+
},
|
84
|
+
"rlimit": {
|
85
|
+
"time": "2018-11-29T20:30:48Z",
|
86
|
+
"maxpid": 32768,
|
87
|
+
"curproc": 381
|
88
|
+
}
|
89
|
+
},
|
90
|
+
"pods": [
|
91
|
+
{
|
92
|
+
"podRef": {
|
93
|
+
"name": "new-metrics-test-final-splunk-kubernetes-metrics-5pntn",
|
94
|
+
"namespace": "default",
|
95
|
+
"uid": "451e9a00-f29b-11e8-afef-02dd29648076"
|
96
|
+
},
|
97
|
+
"startTime": "2018-11-27T23:22:13Z",
|
98
|
+
"containers": [
|
99
|
+
{
|
100
|
+
"name": "fluentd",
|
101
|
+
"startTime": "2018-11-27T23:22:14Z",
|
102
|
+
"cpu": {
|
103
|
+
"time": "2018-11-29T20:30:32Z",
|
104
|
+
"usageNanoCores": 3622609,
|
105
|
+
"usageCoreNanoSeconds": 546763176275
|
106
|
+
},
|
107
|
+
"memory": {
|
108
|
+
"time": "2018-11-29T20:30:32Z",
|
109
|
+
"availableBytes": 207093760,
|
110
|
+
"usageBytes": 116785152,
|
111
|
+
"workingSetBytes": 107479040,
|
112
|
+
"rssBytes": 97374208,
|
113
|
+
"pageFaults": 514856,
|
114
|
+
"majorPageFaults": 99
|
115
|
+
},
|
116
|
+
"rootfs": {
|
117
|
+
"time": "2018-11-29T20:30:32Z",
|
118
|
+
"availableBytes": 103278157824,
|
119
|
+
"capacityBytes": 128767627264,
|
120
|
+
"usedBytes": 417792,
|
121
|
+
"inodesFree": 32634949,
|
122
|
+
"inodes": 33554432,
|
123
|
+
"inodesUsed": 40
|
124
|
+
},
|
125
|
+
"logs": {
|
126
|
+
"time": "2018-11-29T20:30:32Z",
|
127
|
+
"availableBytes": 103278157824,
|
128
|
+
"capacityBytes": 128767627264,
|
129
|
+
"usedBytes": 2854912,
|
130
|
+
"inodesFree": 32634949,
|
131
|
+
"inodes": 33554432,
|
132
|
+
"inodesUsed": 919483
|
133
|
+
},
|
134
|
+
"userDefinedMetrics": null
|
135
|
+
}
|
136
|
+
],
|
137
|
+
"cpu": {
|
138
|
+
"time": "2018-11-29T20:30:44Z",
|
139
|
+
"usageNanoCores": 3194278,
|
140
|
+
"usageCoreNanoSeconds": 546813379638
|
141
|
+
},
|
142
|
+
"memory": {
|
143
|
+
"time": "2018-11-29T20:30:44Z",
|
144
|
+
"availableBytes": 206995456,
|
145
|
+
"usageBytes": 116883456,
|
146
|
+
"workingSetBytes": 107577344,
|
147
|
+
"rssBytes": 97411072,
|
148
|
+
"pageFaults": 0,
|
149
|
+
"majorPageFaults": 0
|
150
|
+
},
|
151
|
+
"network": {
|
152
|
+
"time": "2018-11-29T20:30:33Z",
|
153
|
+
"name": "eth0",
|
154
|
+
"rxBytes": 228536666,
|
155
|
+
"rxErrors": 0,
|
156
|
+
"txBytes": 1617545631,
|
157
|
+
"txErrors": 0,
|
158
|
+
"interfaces": [
|
159
|
+
{
|
160
|
+
"name": "eth0",
|
161
|
+
"rxBytes": 228536666,
|
162
|
+
"rxErrors": 0,
|
163
|
+
"txBytes": 1617545631,
|
164
|
+
"txErrors": 0
|
165
|
+
}
|
166
|
+
]
|
167
|
+
},
|
168
|
+
"volume": [
|
169
|
+
{
|
170
|
+
"time": "2018-11-27T23:22:37Z",
|
171
|
+
"availableBytes": 2073214976,
|
172
|
+
"capacityBytes": 2073219072,
|
173
|
+
"usedBytes": 4096,
|
174
|
+
"inodesFree": 506152,
|
175
|
+
"inodes": 506157,
|
176
|
+
"inodesUsed": 5,
|
177
|
+
"name": "secrets"
|
178
|
+
},
|
179
|
+
{
|
180
|
+
"time": "2018-11-27T23:22:37Z",
|
181
|
+
"availableBytes": 2073206784,
|
182
|
+
"capacityBytes": 2073219072,
|
183
|
+
"usedBytes": 12288,
|
184
|
+
"inodesFree": 506148,
|
185
|
+
"inodes": 506157,
|
186
|
+
"inodesUsed": 9,
|
187
|
+
"name": "new-metrics-test-final-splunk-kubernetes-metrics-token-kd6wg"
|
188
|
+
}
|
189
|
+
],
|
190
|
+
"ephemeral-storage": {
|
191
|
+
"time": "2018-11-29T20:30:46Z",
|
192
|
+
"availableBytes": 103278157824,
|
193
|
+
"capacityBytes": 128767627264,
|
194
|
+
"usedBytes": 3272704,
|
195
|
+
"inodesFree": 32634949,
|
196
|
+
"inodes": 33554432,
|
197
|
+
"inodesUsed": 40
|
198
|
+
}
|
199
|
+
},
|
200
|
+
{
|
201
|
+
"podRef": {
|
202
|
+
"name": "new-metrics-test-final-splunk-kubernetes-metrics-6c9f477b5rng2c",
|
203
|
+
"namespace": "default",
|
204
|
+
"uid": "45204450-f29b-11e8-afef-02dd29648076"
|
205
|
+
},
|
206
|
+
"startTime": "2018-11-27T23:22:13Z",
|
207
|
+
"containers": null,
|
208
|
+
"cpu": {
|
209
|
+
"time": "2018-11-29T20:30:43Z",
|
210
|
+
"usageNanoCores": 0,
|
211
|
+
"usageCoreNanoSeconds": 4968032
|
212
|
+
},
|
213
|
+
"memory": {
|
214
|
+
"time": "2018-11-29T20:30:43Z",
|
215
|
+
"availableBytes": 314535936,
|
216
|
+
"usageBytes": 36864,
|
217
|
+
"workingSetBytes": 36864,
|
218
|
+
"rssBytes": 36864,
|
219
|
+
"pageFaults": 0,
|
220
|
+
"majorPageFaults": 0
|
221
|
+
},
|
222
|
+
"network": {
|
223
|
+
"time": "2018-11-29T20:30:37Z",
|
224
|
+
"name": "eth0",
|
225
|
+
"rxBytes": 2334,
|
226
|
+
"rxErrors": 0,
|
227
|
+
"txBytes": 750,
|
228
|
+
"txErrors": 0,
|
229
|
+
"interfaces": [
|
230
|
+
{
|
231
|
+
"name": "eth0",
|
232
|
+
"rxBytes": 2334,
|
233
|
+
"rxErrors": 0,
|
234
|
+
"txBytes": 750,
|
235
|
+
"txErrors": 0
|
236
|
+
}
|
237
|
+
]
|
238
|
+
},
|
239
|
+
"volume": [
|
240
|
+
{
|
241
|
+
"time": "2018-11-27T23:22:37Z",
|
242
|
+
"availableBytes": 2073214976,
|
243
|
+
"capacityBytes": 2073219072,
|
244
|
+
"usedBytes": 4096,
|
245
|
+
"inodesFree": 506152,
|
246
|
+
"inodes": 506157,
|
247
|
+
"inodesUsed": 5,
|
248
|
+
"name": "secrets"
|
249
|
+
},
|
250
|
+
{
|
251
|
+
"time": "2018-11-27T23:22:37Z",
|
252
|
+
"availableBytes": 2073206784,
|
253
|
+
"capacityBytes": 2073219072,
|
254
|
+
"usedBytes": 12288,
|
255
|
+
"inodesFree": 506148,
|
256
|
+
"inodes": 506157,
|
257
|
+
"inodesUsed": 9,
|
258
|
+
"name": "new-metrics-test-final-splunk-kubernetes-metrics-token-kd6wg"
|
259
|
+
}
|
260
|
+
],
|
261
|
+
"ephemeral-storage": {
|
262
|
+
"time": "2018-11-29T20:30:46Z",
|
263
|
+
"availableBytes": 103278157824,
|
264
|
+
"capacityBytes": 128767627264,
|
265
|
+
"inodesFree": 32634949,
|
266
|
+
"inodes": 33554432
|
267
|
+
}
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"podRef": {
|
271
|
+
"name": "kube-proxy-generics-aws-node-three",
|
272
|
+
"namespace": "kube-system",
|
273
|
+
"uid": "9b9115f0834d6977dabb49d094fac385"
|
274
|
+
},
|
275
|
+
"startTime": "2018-11-02T20:08:35Z",
|
276
|
+
"containers": [
|
277
|
+
{
|
278
|
+
"name": "kube-proxy",
|
279
|
+
"startTime": "2018-11-02T20:08:40Z",
|
280
|
+
"cpu": {
|
281
|
+
"time": "2018-11-29T20:30:40Z",
|
282
|
+
"usageNanoCores": 3183453,
|
283
|
+
"usageCoreNanoSeconds": 6090704523966
|
284
|
+
},
|
285
|
+
"memory": {
|
286
|
+
"time": "2018-11-29T20:30:40Z",
|
287
|
+
"usageBytes": 16461824,
|
288
|
+
"workingSetBytes": 13430784,
|
289
|
+
"rssBytes": 11759616,
|
290
|
+
"pageFaults": 118754632,
|
291
|
+
"majorPageFaults": 204
|
292
|
+
},
|
293
|
+
"rootfs": {
|
294
|
+
"time": "2018-11-29T20:30:40Z",
|
295
|
+
"availableBytes": 103278157824,
|
296
|
+
"capacityBytes": 128767627264,
|
297
|
+
"usedBytes": 53248,
|
298
|
+
"inodesFree": 32634949,
|
299
|
+
"inodes": 33554432,
|
300
|
+
"inodesUsed": 23
|
301
|
+
},
|
302
|
+
"logs": {
|
303
|
+
"time": "2018-11-29T20:30:40Z",
|
304
|
+
"availableBytes": 103278157824,
|
305
|
+
"capacityBytes": 128767627264,
|
306
|
+
"usedBytes": 135168,
|
307
|
+
"inodesFree": 32634949,
|
308
|
+
"inodes": 33554432,
|
309
|
+
"inodesUsed": 919483
|
310
|
+
},
|
311
|
+
"userDefinedMetrics": null
|
312
|
+
}
|
313
|
+
],
|
314
|
+
"cpu": {
|
315
|
+
"time": "2018-11-29T20:30:36Z",
|
316
|
+
"usageNanoCores": 2808969,
|
317
|
+
"usageCoreNanoSeconds": 6090700970230
|
318
|
+
},
|
319
|
+
"memory": {
|
320
|
+
"time": "2018-11-29T20:30:36Z",
|
321
|
+
"usageBytes": 16609280,
|
322
|
+
"workingSetBytes": 13578240,
|
323
|
+
"rssBytes": 11796480,
|
324
|
+
"pageFaults": 0,
|
325
|
+
"majorPageFaults": 0
|
326
|
+
},
|
327
|
+
"network": {
|
328
|
+
"time": "2018-11-29T20:30:45Z",
|
329
|
+
"name": "eth0",
|
330
|
+
"rxBytes": 12002972936,
|
331
|
+
"rxErrors": 0,
|
332
|
+
"txBytes": 4750455162,
|
333
|
+
"txErrors": 0,
|
334
|
+
"interfaces": [
|
335
|
+
{
|
336
|
+
"name": "cbr0",
|
337
|
+
"rxBytes": 3467247660,
|
338
|
+
"rxErrors": 0,
|
339
|
+
"txBytes": 2329074944,
|
340
|
+
"txErrors": 0
|
341
|
+
},
|
342
|
+
{
|
343
|
+
"name": "eth0",
|
344
|
+
"rxBytes": 12002972936,
|
345
|
+
"rxErrors": 0,
|
346
|
+
"txBytes": 4750455162,
|
347
|
+
"txErrors": 0
|
348
|
+
}
|
349
|
+
]
|
350
|
+
},
|
351
|
+
"ephemeral-storage": {
|
352
|
+
"time": "2018-11-29T20:30:46Z",
|
353
|
+
"availableBytes": 103278157824,
|
354
|
+
"capacityBytes": 128767627264,
|
355
|
+
"usedBytes": 188416,
|
356
|
+
"inodesFree": 32634949,
|
357
|
+
"inodes": 33554432,
|
358
|
+
"inodesUsed": 23
|
359
|
+
}
|
360
|
+
},
|
361
|
+
{
|
362
|
+
"podRef": {
|
363
|
+
"name": "kube-dns-5fbcb4d67b-rdvmn",
|
364
|
+
"namespace": "kube-system",
|
365
|
+
"uid": "3cc4dd67-dedb-11e8-afef-02dd29648076"
|
366
|
+
},
|
367
|
+
"startTime": "2018-11-02T20:11:46Z",
|
368
|
+
"containers": [
|
369
|
+
{
|
370
|
+
"name": "kubedns",
|
371
|
+
"startTime": "2018-11-02T20:11:49Z",
|
372
|
+
"cpu": {
|
373
|
+
"time": "2018-11-29T20:30:34Z",
|
374
|
+
"usageNanoCores": 488245,
|
375
|
+
"usageCoreNanoSeconds": 1213998097606
|
376
|
+
},
|
377
|
+
"memory": {
|
378
|
+
"time": "2018-11-29T20:30:34Z",
|
379
|
+
"availableBytes": 169648128,
|
380
|
+
"usageBytes": 10002432,
|
381
|
+
"workingSetBytes": 8609792,
|
382
|
+
"rssBytes": 7905280,
|
383
|
+
"pageFaults": 28324,
|
384
|
+
"majorPageFaults": 85
|
385
|
+
},
|
386
|
+
"rootfs": {
|
387
|
+
"time": "2018-11-29T20:30:34Z",
|
388
|
+
"availableBytes": 103278157824,
|
389
|
+
"capacityBytes": 128767627264,
|
390
|
+
"usedBytes": 40960,
|
391
|
+
"inodesFree": 32634949,
|
392
|
+
"inodes": 33554432,
|
393
|
+
"inodesUsed": 16
|
394
|
+
},
|
395
|
+
"logs": {
|
396
|
+
"time": "2018-11-29T20:30:34Z",
|
397
|
+
"availableBytes": 103278157824,
|
398
|
+
"capacityBytes": 128767627264,
|
399
|
+
"usedBytes": 28672,
|
400
|
+
"inodesFree": 32634949,
|
401
|
+
"inodes": 33554432,
|
402
|
+
"inodesUsed": 919483
|
403
|
+
},
|
404
|
+
"userDefinedMetrics": null
|
405
|
+
},
|
406
|
+
{
|
407
|
+
"name": "sidecar",
|
408
|
+
"startTime": "2018-11-02T20:11:53Z",
|
409
|
+
"cpu": {
|
410
|
+
"time": "2018-11-29T20:30:36Z",
|
411
|
+
"usageNanoCores": 789969,
|
412
|
+
"usageCoreNanoSeconds": 1808210026364
|
413
|
+
},
|
414
|
+
"memory": {
|
415
|
+
"time": "2018-11-29T20:30:36Z",
|
416
|
+
"usageBytes": 12824576,
|
417
|
+
"workingSetBytes": 12197888,
|
418
|
+
"rssBytes": 11661312,
|
419
|
+
"pageFaults": 34922,
|
420
|
+
"majorPageFaults": 45
|
421
|
+
},
|
422
|
+
"rootfs": {
|
423
|
+
"time": "2018-11-29T20:30:36Z",
|
424
|
+
"availableBytes": 103278157824,
|
425
|
+
"capacityBytes": 128767627264,
|
426
|
+
"usedBytes": 36864,
|
427
|
+
"inodesFree": 32634949,
|
428
|
+
"inodes": 33554432,
|
429
|
+
"inodesUsed": 15
|
430
|
+
},
|
431
|
+
"logs": {
|
432
|
+
"time": "2018-11-29T20:30:36Z",
|
433
|
+
"availableBytes": 103278157824,
|
434
|
+
"capacityBytes": 128767627264,
|
435
|
+
"usedBytes": 24576,
|
436
|
+
"inodesFree": 32634949,
|
437
|
+
"inodes": 33554432,
|
438
|
+
"inodesUsed": 919483
|
439
|
+
},
|
440
|
+
"userDefinedMetrics": null
|
441
|
+
},
|
442
|
+
{
|
443
|
+
"name": "dnsmasq",
|
444
|
+
"startTime": "2018-11-02T20:11:51Z",
|
445
|
+
"cpu": {
|
446
|
+
"time": "2018-11-29T20:30:34Z",
|
447
|
+
"usageNanoCores": 209824,
|
448
|
+
"usageCoreNanoSeconds": 324209480491
|
449
|
+
},
|
450
|
+
"memory": {
|
451
|
+
"time": "2018-11-29T20:30:34Z",
|
452
|
+
"usageBytes": 6725632,
|
453
|
+
"workingSetBytes": 6074368,
|
454
|
+
"rssBytes": 5599232,
|
455
|
+
"pageFaults": 13787,
|
456
|
+
"majorPageFaults": 31
|
457
|
+
},
|
458
|
+
"rootfs": {
|
459
|
+
"time": "2018-11-29T20:30:34Z",
|
460
|
+
"availableBytes": 103278157824,
|
461
|
+
"capacityBytes": 128767627264,
|
462
|
+
"usedBytes": 45056,
|
463
|
+
"inodesFree": 32634949,
|
464
|
+
"inodes": 33554432,
|
465
|
+
"inodesUsed": 17
|
466
|
+
},
|
467
|
+
"logs": {
|
468
|
+
"time": "2018-11-29T20:30:34Z",
|
469
|
+
"availableBytes": 103278157824,
|
470
|
+
"capacityBytes": 128767627264,
|
471
|
+
"usedBytes": 24576,
|
472
|
+
"inodesFree": 32634949,
|
473
|
+
"inodes": 33554432,
|
474
|
+
"inodesUsed": 919483
|
475
|
+
},
|
476
|
+
"userDefinedMetrics": null
|
477
|
+
}
|
478
|
+
],
|
479
|
+
"cpu": {
|
480
|
+
"time": "2018-11-29T20:30:46Z",
|
481
|
+
"usageNanoCores": 1704247,
|
482
|
+
"usageCoreNanoSeconds": 3346440138363
|
483
|
+
},
|
484
|
+
"memory": {
|
485
|
+
"time": "2018-11-29T20:30:46Z",
|
486
|
+
"usageBytes": 29593600,
|
487
|
+
"workingSetBytes": 26923008,
|
488
|
+
"rssBytes": 25206784,
|
489
|
+
"pageFaults": 0,
|
490
|
+
"majorPageFaults": 0
|
491
|
+
},
|
492
|
+
"network": {
|
493
|
+
"time": "2018-11-29T20:30:48Z",
|
494
|
+
"name": "eth0",
|
495
|
+
"rxBytes": 1771398924,
|
496
|
+
"rxErrors": 0,
|
497
|
+
"txBytes": 1083425572,
|
498
|
+
"txErrors": 0,
|
499
|
+
"interfaces": [
|
500
|
+
{
|
501
|
+
"name": "eth0",
|
502
|
+
"rxBytes": 1771398924,
|
503
|
+
"rxErrors": 0,
|
504
|
+
"txBytes": 1083425572,
|
505
|
+
"txErrors": 0
|
506
|
+
}
|
507
|
+
]
|
508
|
+
},
|
509
|
+
"volume": [
|
510
|
+
{
|
511
|
+
"time": "2018-11-02T20:12:28Z",
|
512
|
+
"availableBytes": 2073206784,
|
513
|
+
"capacityBytes": 2073219072,
|
514
|
+
"usedBytes": 12288,
|
515
|
+
"inodesFree": 506148,
|
516
|
+
"inodes": 506157,
|
517
|
+
"inodesUsed": 9,
|
518
|
+
"name": "kube-dns-token-k9lxx"
|
519
|
+
}
|
520
|
+
],
|
521
|
+
"ephemeral-storage": {
|
522
|
+
"time": "2018-11-29T20:30:46Z",
|
523
|
+
"availableBytes": 103278157824,
|
524
|
+
"capacityBytes": 128767627264,
|
525
|
+
"usedBytes": 200704,
|
526
|
+
"inodesFree": 32634949,
|
527
|
+
"inodes": 33554432,
|
528
|
+
"inodesUsed": 48
|
529
|
+
}
|
530
|
+
},
|
531
|
+
{
|
532
|
+
"podRef": {
|
533
|
+
"name": "tiller-deploy-f9b8476d-87jj6",
|
534
|
+
"namespace": "kube-system",
|
535
|
+
"uid": "c49d64fc-e07c-11e8-afef-02dd29648076"
|
536
|
+
},
|
537
|
+
"startTime": "2018-11-04T21:58:32Z",
|
538
|
+
"containers": [
|
539
|
+
{
|
540
|
+
"name": "tiller",
|
541
|
+
"startTime": "2018-11-04T21:58:34Z",
|
542
|
+
"cpu": {
|
543
|
+
"time": "2018-11-29T20:30:44Z",
|
544
|
+
"usageNanoCores": 86670,
|
545
|
+
"usageCoreNanoSeconds": 292186448277
|
546
|
+
},
|
547
|
+
"memory": {
|
548
|
+
"time": "2018-11-29T20:30:44Z",
|
549
|
+
"usageBytes": 17547264,
|
550
|
+
"workingSetBytes": 13713408,
|
551
|
+
"rssBytes": 12173312,
|
552
|
+
"pageFaults": 62718,
|
553
|
+
"majorPageFaults": 202
|
554
|
+
},
|
555
|
+
"rootfs": {
|
556
|
+
"time": "2018-11-29T20:30:44Z",
|
557
|
+
"availableBytes": 103278157824,
|
558
|
+
"capacityBytes": 128767627264,
|
559
|
+
"usedBytes": 352256,
|
560
|
+
"inodesFree": 32634949,
|
561
|
+
"inodes": 33554432,
|
562
|
+
"inodesUsed": 90
|
563
|
+
},
|
564
|
+
"logs": {
|
565
|
+
"time": "2018-11-29T20:30:44Z",
|
566
|
+
"availableBytes": 103278157824,
|
567
|
+
"capacityBytes": 128767627264,
|
568
|
+
"usedBytes": 442368,
|
569
|
+
"inodesFree": 32634949,
|
570
|
+
"inodes": 33554432,
|
571
|
+
"inodesUsed": 919483
|
572
|
+
},
|
573
|
+
"userDefinedMetrics": null
|
574
|
+
}
|
575
|
+
],
|
576
|
+
"cpu": {
|
577
|
+
"time": "2018-11-29T20:30:36Z",
|
578
|
+
"usageNanoCores": 72352,
|
579
|
+
"usageCoreNanoSeconds": 292190469530
|
580
|
+
},
|
581
|
+
"memory": {
|
582
|
+
"time": "2018-11-29T20:30:36Z",
|
583
|
+
"usageBytes": 17584128,
|
584
|
+
"workingSetBytes": 13750272,
|
585
|
+
"rssBytes": 12210176,
|
586
|
+
"pageFaults": 0,
|
587
|
+
"majorPageFaults": 0
|
588
|
+
},
|
589
|
+
"network": {
|
590
|
+
"time": "2018-11-29T20:30:39Z",
|
591
|
+
"name": "eth0",
|
592
|
+
"rxBytes": 219799779,
|
593
|
+
"rxErrors": 0,
|
594
|
+
"txBytes": 196544858,
|
595
|
+
"txErrors": 0,
|
596
|
+
"interfaces": [
|
597
|
+
{
|
598
|
+
"name": "eth0",
|
599
|
+
"rxBytes": 219799779,
|
600
|
+
"rxErrors": 0,
|
601
|
+
"txBytes": 196544858,
|
602
|
+
"txErrors": 0
|
603
|
+
}
|
604
|
+
]
|
605
|
+
},
|
606
|
+
"volume": [
|
607
|
+
{
|
608
|
+
"time": "2018-11-04T21:59:29Z",
|
609
|
+
"availableBytes": 2073206784,
|
610
|
+
"capacityBytes": 2073219072,
|
611
|
+
"usedBytes": 12288,
|
612
|
+
"inodesFree": 506148,
|
613
|
+
"inodes": 506157,
|
614
|
+
"inodesUsed": 9,
|
615
|
+
"name": "default-token-bgtxs"
|
616
|
+
}
|
617
|
+
],
|
618
|
+
"ephemeral-storage": {
|
619
|
+
"time": "2018-11-29T20:30:46Z",
|
620
|
+
"availableBytes": 103278157824,
|
621
|
+
"capacityBytes": 128767627264,
|
622
|
+
"usedBytes": 794624,
|
623
|
+
"inodesFree": 32634949,
|
624
|
+
"inodes": 33554432,
|
625
|
+
"inodesUsed": 90
|
626
|
+
}
|
627
|
+
}
|
628
|
+
]
|
629
|
+
}
|