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/node2.json
ADDED
@@ -0,0 +1,692 @@
|
|
1
|
+
{
|
2
|
+
"node": {
|
3
|
+
"nodeName": "generics-aws-node-two",
|
4
|
+
"systemContainers": [
|
5
|
+
{
|
6
|
+
"name": "pods",
|
7
|
+
"startTime": "2018-11-02T20:08:45Z",
|
8
|
+
"cpu": {
|
9
|
+
"time": "2018-11-29T20:29:55Z",
|
10
|
+
"usageNanoCores": 86332072,
|
11
|
+
"usageCoreNanoSeconds": 225052051960215
|
12
|
+
},
|
13
|
+
"memory": {
|
14
|
+
"time": "2018-11-29T20:29:55Z",
|
15
|
+
"availableBytes": 2695385088,
|
16
|
+
"usageBytes": 1391542272,
|
17
|
+
"workingSetBytes": 1254457344,
|
18
|
+
"rssBytes": 834170880,
|
19
|
+
"pageFaults": 0,
|
20
|
+
"majorPageFaults": 0
|
21
|
+
},
|
22
|
+
"userDefinedMetrics": null
|
23
|
+
}
|
24
|
+
],
|
25
|
+
"startTime": "2018-11-02T20:08:45Z",
|
26
|
+
"cpu": {
|
27
|
+
"time": "2018-11-29T20:29:55Z",
|
28
|
+
"usageNanoCores": 145078412,
|
29
|
+
"usageCoreNanoSeconds": 311139488560533
|
30
|
+
},
|
31
|
+
"memory": {
|
32
|
+
"time": "2018-11-29T20:29:55Z",
|
33
|
+
"availableBytes": 1498927104,
|
34
|
+
"usageBytes": 3602341888,
|
35
|
+
"workingSetBytes": 2450915328,
|
36
|
+
"rssBytes": 956743680,
|
37
|
+
"pageFaults": 891818839,
|
38
|
+
"majorPageFaults": 5782
|
39
|
+
},
|
40
|
+
"network": {
|
41
|
+
"time": "2018-11-29T20:29:55Z",
|
42
|
+
"name": "eth0",
|
43
|
+
"rxBytes": 6691637426,
|
44
|
+
"rxErrors": 0,
|
45
|
+
"txBytes": 22257749408,
|
46
|
+
"txErrors": 0,
|
47
|
+
"interfaces": [
|
48
|
+
{
|
49
|
+
"name": "eth0",
|
50
|
+
"rxBytes": 6691637426,
|
51
|
+
"rxErrors": 0,
|
52
|
+
"txBytes": 22257749408,
|
53
|
+
"txErrors": 0
|
54
|
+
}
|
55
|
+
]
|
56
|
+
},
|
57
|
+
"fs": {
|
58
|
+
"time": "2018-11-29T20:29:55Z",
|
59
|
+
"availableBytes": 56382795776,
|
60
|
+
"capacityBytes": 64345141248,
|
61
|
+
"usedBytes": 5111357440,
|
62
|
+
"inodesFree": 16699906,
|
63
|
+
"inodes": 16777216,
|
64
|
+
"inodesUsed": 77310
|
65
|
+
},
|
66
|
+
"runtime": {
|
67
|
+
"imageFs": {
|
68
|
+
"time": "2018-11-29T20:29:55Z",
|
69
|
+
"availableBytes": 56382795776,
|
70
|
+
"capacityBytes": 64345141248,
|
71
|
+
"usedBytes": 954823695,
|
72
|
+
"inodesFree": 16699906,
|
73
|
+
"inodes": 16777216,
|
74
|
+
"inodesUsed": 77310
|
75
|
+
}
|
76
|
+
},
|
77
|
+
"rlimit": {
|
78
|
+
"time": "2018-11-29T20:30:00Z",
|
79
|
+
"maxpid": 32768,
|
80
|
+
"curproc": 396
|
81
|
+
}
|
82
|
+
},
|
83
|
+
"pods": [
|
84
|
+
{
|
85
|
+
"podRef": {
|
86
|
+
"name": "kube-proxy-generics-aws-node-two",
|
87
|
+
"namespace": "kube-system",
|
88
|
+
"uid": "24e6234536a1003766fb315fd1ed8a3c"
|
89
|
+
},
|
90
|
+
"startTime": "2018-11-02T20:08:47Z",
|
91
|
+
"containers": [
|
92
|
+
{
|
93
|
+
"name": "kube-proxy",
|
94
|
+
"startTime": "2018-11-02T20:08:58Z",
|
95
|
+
"cpu": {
|
96
|
+
"time": "2018-11-29T20:29:58Z",
|
97
|
+
"usageNanoCores": 2208685,
|
98
|
+
"usageCoreNanoSeconds": 6084016588477
|
99
|
+
},
|
100
|
+
"memory": {
|
101
|
+
"time": "2018-11-29T20:29:58Z",
|
102
|
+
"usageBytes": 13209600,
|
103
|
+
"workingSetBytes": 11902976,
|
104
|
+
"rssBytes": 11354112,
|
105
|
+
"pageFaults": 118754734,
|
106
|
+
"majorPageFaults": 54
|
107
|
+
},
|
108
|
+
"rootfs": {
|
109
|
+
"time": "2018-11-29T20:29:58Z",
|
110
|
+
"availableBytes": 56382795776,
|
111
|
+
"capacityBytes": 64345141248,
|
112
|
+
"usedBytes": 53248,
|
113
|
+
"inodesFree": 16699906,
|
114
|
+
"inodes": 16777216,
|
115
|
+
"inodesUsed": 23
|
116
|
+
},
|
117
|
+
"logs": {
|
118
|
+
"time": "2018-11-29T20:29:58Z",
|
119
|
+
"availableBytes": 56382795776,
|
120
|
+
"capacityBytes": 64345141248,
|
121
|
+
"usedBytes": 49152,
|
122
|
+
"inodesFree": 16699906,
|
123
|
+
"inodes": 16777216,
|
124
|
+
"inodesUsed": 77310
|
125
|
+
},
|
126
|
+
"userDefinedMetrics": null
|
127
|
+
}
|
128
|
+
],
|
129
|
+
"cpu": {
|
130
|
+
"time": "2018-11-29T20:29:55Z",
|
131
|
+
"usageNanoCores": 3118275,
|
132
|
+
"usageCoreNanoSeconds": 6084011348824
|
133
|
+
},
|
134
|
+
"memory": {
|
135
|
+
"time": "2018-11-29T20:29:55Z",
|
136
|
+
"usageBytes": 13250560,
|
137
|
+
"workingSetBytes": 11943936,
|
138
|
+
"rssBytes": 11395072,
|
139
|
+
"pageFaults": 0,
|
140
|
+
"majorPageFaults": 0
|
141
|
+
},
|
142
|
+
"network": {
|
143
|
+
"time": "2018-11-29T20:29:49Z",
|
144
|
+
"name": "eth0",
|
145
|
+
"rxBytes": 6691603953,
|
146
|
+
"rxErrors": 0,
|
147
|
+
"txBytes": 22257640772,
|
148
|
+
"txErrors": 0,
|
149
|
+
"interfaces": [
|
150
|
+
{
|
151
|
+
"name": "eth0",
|
152
|
+
"rxBytes": 6691603953,
|
153
|
+
"rxErrors": 0,
|
154
|
+
"txBytes": 22257640772,
|
155
|
+
"txErrors": 0
|
156
|
+
}
|
157
|
+
]
|
158
|
+
},
|
159
|
+
"ephemeral-storage": {
|
160
|
+
"time": "2018-11-29T20:29:58Z",
|
161
|
+
"availableBytes": 56382795776,
|
162
|
+
"capacityBytes": 64345141248,
|
163
|
+
"usedBytes": 102400,
|
164
|
+
"inodesFree": 16699906,
|
165
|
+
"inodes": 16777216,
|
166
|
+
"inodesUsed": 23
|
167
|
+
}
|
168
|
+
},
|
169
|
+
{
|
170
|
+
"podRef": {
|
171
|
+
"name": "etcd-server-events-generics-aws-node-two",
|
172
|
+
"namespace": "kube-system",
|
173
|
+
"uid": "b6fbcc401119c99e5f1b51db3f9db506"
|
174
|
+
},
|
175
|
+
"startTime": "2018-11-02T20:08:47Z",
|
176
|
+
"containers": [
|
177
|
+
{
|
178
|
+
"name": "etcd-container",
|
179
|
+
"startTime": "2018-11-02T20:09:07Z",
|
180
|
+
"cpu": {
|
181
|
+
"time": "2018-11-29T20:29:51Z",
|
182
|
+
"usageNanoCores": 2847184,
|
183
|
+
"usageCoreNanoSeconds": 6834396285888
|
184
|
+
},
|
185
|
+
"memory": {
|
186
|
+
"time": "2018-11-29T20:29:51Z",
|
187
|
+
"usageBytes": 181149696,
|
188
|
+
"workingSetBytes": 98164736,
|
189
|
+
"rssBytes": 13475840,
|
190
|
+
"pageFaults": 1170918,
|
191
|
+
"majorPageFaults": 18
|
192
|
+
},
|
193
|
+
"rootfs": {
|
194
|
+
"time": "2018-11-29T20:29:51Z",
|
195
|
+
"availableBytes": 56382795776,
|
196
|
+
"capacityBytes": 64345141248,
|
197
|
+
"usedBytes": 49152,
|
198
|
+
"inodesFree": 16699906,
|
199
|
+
"inodes": 16777216,
|
200
|
+
"inodesUsed": 20
|
201
|
+
},
|
202
|
+
"logs": {
|
203
|
+
"time": "2018-11-29T20:29:51Z",
|
204
|
+
"availableBytes": 56382795776,
|
205
|
+
"capacityBytes": 64345141248,
|
206
|
+
"usedBytes": 344064,
|
207
|
+
"inodesFree": 16699906,
|
208
|
+
"inodes": 16777216,
|
209
|
+
"inodesUsed": 77310
|
210
|
+
},
|
211
|
+
"userDefinedMetrics": null
|
212
|
+
}
|
213
|
+
],
|
214
|
+
"cpu": {
|
215
|
+
"time": "2018-11-29T20:29:59Z",
|
216
|
+
"usageNanoCores": 3229111,
|
217
|
+
"usageCoreNanoSeconds": 6834431496296
|
218
|
+
},
|
219
|
+
"memory": {
|
220
|
+
"time": "2018-11-29T20:29:59Z",
|
221
|
+
"usageBytes": 181190656,
|
222
|
+
"workingSetBytes": 98205696,
|
223
|
+
"rssBytes": 13512704,
|
224
|
+
"pageFaults": 0,
|
225
|
+
"majorPageFaults": 0
|
226
|
+
},
|
227
|
+
"network": {
|
228
|
+
"time": "2018-11-29T20:29:54Z",
|
229
|
+
"name": "eth0",
|
230
|
+
"rxBytes": 6691637054,
|
231
|
+
"rxErrors": 0,
|
232
|
+
"txBytes": 22257744910,
|
233
|
+
"txErrors": 0,
|
234
|
+
"interfaces": [
|
235
|
+
{
|
236
|
+
"name": "eth0",
|
237
|
+
"rxBytes": 6691637054,
|
238
|
+
"rxErrors": 0,
|
239
|
+
"txBytes": 22257744910,
|
240
|
+
"txErrors": 0
|
241
|
+
}
|
242
|
+
]
|
243
|
+
},
|
244
|
+
"ephemeral-storage": {
|
245
|
+
"time": "2018-11-29T20:29:55Z",
|
246
|
+
"availableBytes": 56382795776,
|
247
|
+
"capacityBytes": 64345141248,
|
248
|
+
"usedBytes": 393216,
|
249
|
+
"inodesFree": 16699906,
|
250
|
+
"inodes": 16777216,
|
251
|
+
"inodesUsed": 20
|
252
|
+
}
|
253
|
+
},
|
254
|
+
{
|
255
|
+
"podRef": {
|
256
|
+
"name": "etcd-server-generics-aws-node-two",
|
257
|
+
"namespace": "kube-system",
|
258
|
+
"uid": "310ff556af68b46e5580c376563548b3"
|
259
|
+
},
|
260
|
+
"startTime": "2018-11-02T20:08:47Z",
|
261
|
+
"containers": [
|
262
|
+
{
|
263
|
+
"name": "etcd-container",
|
264
|
+
"startTime": "2018-11-02T20:09:07Z",
|
265
|
+
"cpu": {
|
266
|
+
"time": "2018-11-29T20:29:57Z",
|
267
|
+
"usageNanoCores": 5467790,
|
268
|
+
"usageCoreNanoSeconds": 12368203499175
|
269
|
+
},
|
270
|
+
"memory": {
|
271
|
+
"time": "2018-11-29T20:29:57Z",
|
272
|
+
"usageBytes": 342077440,
|
273
|
+
"workingSetBytes": 317796352,
|
274
|
+
"rssBytes": 46862336,
|
275
|
+
"pageFaults": 3984120,
|
276
|
+
"majorPageFaults": 32
|
277
|
+
},
|
278
|
+
"rootfs": {
|
279
|
+
"time": "2018-11-29T20:29:57Z",
|
280
|
+
"availableBytes": 56382795776,
|
281
|
+
"capacityBytes": 64345141248,
|
282
|
+
"usedBytes": 49152,
|
283
|
+
"inodesFree": 16699906,
|
284
|
+
"inodes": 16777216,
|
285
|
+
"inodesUsed": 20
|
286
|
+
},
|
287
|
+
"logs": {
|
288
|
+
"time": "2018-11-29T20:29:57Z",
|
289
|
+
"availableBytes": 56382795776,
|
290
|
+
"capacityBytes": 64345141248,
|
291
|
+
"usedBytes": 581632,
|
292
|
+
"inodesFree": 16699906,
|
293
|
+
"inodes": 16777216,
|
294
|
+
"inodesUsed": 77310
|
295
|
+
},
|
296
|
+
"userDefinedMetrics": null
|
297
|
+
}
|
298
|
+
],
|
299
|
+
"cpu": {
|
300
|
+
"time": "2018-11-29T20:29:56Z",
|
301
|
+
"usageNanoCores": 5387704,
|
302
|
+
"usageCoreNanoSeconds": 12368200353225
|
303
|
+
},
|
304
|
+
"memory": {
|
305
|
+
"time": "2018-11-29T20:29:56Z",
|
306
|
+
"usageBytes": 341987328,
|
307
|
+
"workingSetBytes": 317706240,
|
308
|
+
"rssBytes": 46903296,
|
309
|
+
"pageFaults": 0,
|
310
|
+
"majorPageFaults": 0
|
311
|
+
},
|
312
|
+
"network": {
|
313
|
+
"time": "2018-11-29T20:29:51Z",
|
314
|
+
"name": "eth0",
|
315
|
+
"rxBytes": 6691611550,
|
316
|
+
"rxErrors": 0,
|
317
|
+
"txBytes": 22257689616,
|
318
|
+
"txErrors": 0,
|
319
|
+
"interfaces": [
|
320
|
+
{
|
321
|
+
"name": "eth0",
|
322
|
+
"rxBytes": 6691611550,
|
323
|
+
"rxErrors": 0,
|
324
|
+
"txBytes": 22257689616,
|
325
|
+
"txErrors": 0
|
326
|
+
}
|
327
|
+
]
|
328
|
+
},
|
329
|
+
"ephemeral-storage": {
|
330
|
+
"time": "2018-11-29T20:29:57Z",
|
331
|
+
"availableBytes": 56382795776,
|
332
|
+
"capacityBytes": 64345141248,
|
333
|
+
"usedBytes": 630784,
|
334
|
+
"inodesFree": 16699906,
|
335
|
+
"inodes": 16777216,
|
336
|
+
"inodesUsed": 20
|
337
|
+
}
|
338
|
+
},
|
339
|
+
{
|
340
|
+
"podRef": {
|
341
|
+
"name": "kube-apiserver-generics-aws-node-two",
|
342
|
+
"namespace": "kube-system",
|
343
|
+
"uid": "dc5e34d8b875a92be236483682c1e45b"
|
344
|
+
},
|
345
|
+
"startTime": "2018-11-02T20:08:47Z",
|
346
|
+
"containers": [
|
347
|
+
{
|
348
|
+
"name": "kube-apiserver",
|
349
|
+
"startTime": "2018-11-02T20:09:05Z",
|
350
|
+
"cpu": {
|
351
|
+
"time": "2018-11-29T20:29:44Z",
|
352
|
+
"usageNanoCores": 182124812,
|
353
|
+
"usageCoreNanoSeconds": 86777093521741
|
354
|
+
},
|
355
|
+
"memory": {
|
356
|
+
"time": "2018-11-29T20:29:44Z",
|
357
|
+
"usageBytes": 753967104,
|
358
|
+
"workingSetBytes": 741810176,
|
359
|
+
"rssBytes": 679927808,
|
360
|
+
"pageFaults": 14570348,
|
361
|
+
"majorPageFaults": 300
|
362
|
+
},
|
363
|
+
"rootfs": {
|
364
|
+
"time": "2018-11-29T20:29:44Z",
|
365
|
+
"availableBytes": 56382795776,
|
366
|
+
"capacityBytes": 64345141248,
|
367
|
+
"usedBytes": 110592,
|
368
|
+
"inodesFree": 16699906,
|
369
|
+
"inodes": 16777216,
|
370
|
+
"inodesUsed": 35
|
371
|
+
},
|
372
|
+
"logs": {
|
373
|
+
"time": "2018-11-29T20:29:44Z",
|
374
|
+
"availableBytes": 56382795776,
|
375
|
+
"capacityBytes": 64345141248,
|
376
|
+
"usedBytes": 40251392,
|
377
|
+
"inodesFree": 16699906,
|
378
|
+
"inodes": 16777216,
|
379
|
+
"inodesUsed": 77310
|
380
|
+
},
|
381
|
+
"userDefinedMetrics": null
|
382
|
+
}
|
383
|
+
],
|
384
|
+
"cpu": {
|
385
|
+
"time": "2018-11-29T20:29:48Z",
|
386
|
+
"usageNanoCores": 31811235,
|
387
|
+
"usageCoreNanoSeconds": 86777181305503
|
388
|
+
},
|
389
|
+
"memory": {
|
390
|
+
"time": "2018-11-29T20:29:48Z",
|
391
|
+
"usageBytes": 754135040,
|
392
|
+
"workingSetBytes": 741978112,
|
393
|
+
"rssBytes": 679964672,
|
394
|
+
"pageFaults": 0,
|
395
|
+
"majorPageFaults": 0
|
396
|
+
},
|
397
|
+
"network": {
|
398
|
+
"time": "2018-11-29T20:29:51Z",
|
399
|
+
"name": "eth0",
|
400
|
+
"rxBytes": 6691611550,
|
401
|
+
"rxErrors": 0,
|
402
|
+
"txBytes": 22257689616,
|
403
|
+
"txErrors": 0,
|
404
|
+
"interfaces": [
|
405
|
+
{
|
406
|
+
"name": "eth0",
|
407
|
+
"rxBytes": 6691611550,
|
408
|
+
"rxErrors": 0,
|
409
|
+
"txBytes": 22257689616,
|
410
|
+
"txErrors": 0
|
411
|
+
}
|
412
|
+
]
|
413
|
+
},
|
414
|
+
"ephemeral-storage": {
|
415
|
+
"time": "2018-11-29T20:29:55Z",
|
416
|
+
"availableBytes": 56382795776,
|
417
|
+
"capacityBytes": 64345141248,
|
418
|
+
"usedBytes": 40361984,
|
419
|
+
"inodesFree": 16699906,
|
420
|
+
"inodes": 16777216,
|
421
|
+
"inodesUsed": 35
|
422
|
+
}
|
423
|
+
},
|
424
|
+
{
|
425
|
+
"podRef": {
|
426
|
+
"name": "dns-controller-6d6b7f78b-9n6cw",
|
427
|
+
"namespace": "kube-system",
|
428
|
+
"uid": "3e23c714-dedb-11e8-afef-02dd29648076"
|
429
|
+
},
|
430
|
+
"startTime": "2018-11-02T20:10:16Z",
|
431
|
+
"containers": [
|
432
|
+
{
|
433
|
+
"name": "dns-controller",
|
434
|
+
"startTime": "2018-11-02T20:10:20Z",
|
435
|
+
"cpu": {
|
436
|
+
"time": "2018-11-29T20:29:58Z",
|
437
|
+
"usageNanoCores": 365089,
|
438
|
+
"usageCoreNanoSeconds": 895880149057
|
439
|
+
},
|
440
|
+
"memory": {
|
441
|
+
"time": "2018-11-29T20:29:58Z",
|
442
|
+
"usageBytes": 12742656,
|
443
|
+
"workingSetBytes": 9256960,
|
444
|
+
"rssBytes": 8957952,
|
445
|
+
"pageFaults": 150817,
|
446
|
+
"majorPageFaults": 65
|
447
|
+
},
|
448
|
+
"rootfs": {
|
449
|
+
"time": "2018-11-29T20:29:58Z",
|
450
|
+
"availableBytes": 56382795776,
|
451
|
+
"capacityBytes": 64345141248,
|
452
|
+
"usedBytes": 28672,
|
453
|
+
"inodesFree": 16699906,
|
454
|
+
"inodes": 16777216,
|
455
|
+
"inodesUsed": 13
|
456
|
+
},
|
457
|
+
"logs": {
|
458
|
+
"time": "2018-11-29T20:29:58Z",
|
459
|
+
"availableBytes": 56382795776,
|
460
|
+
"capacityBytes": 64345141248,
|
461
|
+
"usedBytes": 1134592,
|
462
|
+
"inodesFree": 16699906,
|
463
|
+
"inodes": 16777216,
|
464
|
+
"inodesUsed": 77310
|
465
|
+
},
|
466
|
+
"userDefinedMetrics": null
|
467
|
+
}
|
468
|
+
],
|
469
|
+
"cpu": {
|
470
|
+
"time": "2018-11-29T20:29:46Z",
|
471
|
+
"usageNanoCores": 315476,
|
472
|
+
"usageCoreNanoSeconds": 895879535241
|
473
|
+
},
|
474
|
+
"memory": {
|
475
|
+
"time": "2018-11-29T20:29:46Z",
|
476
|
+
"usageBytes": 12783616,
|
477
|
+
"workingSetBytes": 9297920,
|
478
|
+
"rssBytes": 8998912,
|
479
|
+
"pageFaults": 0,
|
480
|
+
"majorPageFaults": 0
|
481
|
+
},
|
482
|
+
"network": {
|
483
|
+
"time": "2018-11-29T20:29:57Z",
|
484
|
+
"name": "eth0",
|
485
|
+
"rxBytes": 6691640099,
|
486
|
+
"rxErrors": 0,
|
487
|
+
"txBytes": 22257780223,
|
488
|
+
"txErrors": 0,
|
489
|
+
"interfaces": [
|
490
|
+
{
|
491
|
+
"name": "eth0",
|
492
|
+
"rxBytes": 6691640099,
|
493
|
+
"rxErrors": 0,
|
494
|
+
"txBytes": 22257780223,
|
495
|
+
"txErrors": 0
|
496
|
+
}
|
497
|
+
]
|
498
|
+
},
|
499
|
+
"volume": [
|
500
|
+
{
|
501
|
+
"time": "2018-11-02T20:10:43Z",
|
502
|
+
"availableBytes": 1974906880,
|
503
|
+
"capacityBytes": 1974919168,
|
504
|
+
"usedBytes": 12288,
|
505
|
+
"inodesFree": 482149,
|
506
|
+
"inodes": 482158,
|
507
|
+
"inodesUsed": 9,
|
508
|
+
"name": "dns-controller-token-76p6h"
|
509
|
+
}
|
510
|
+
],
|
511
|
+
"ephemeral-storage": {
|
512
|
+
"time": "2018-11-29T20:29:58Z",
|
513
|
+
"availableBytes": 56382795776,
|
514
|
+
"capacityBytes": 64345141248,
|
515
|
+
"usedBytes": 1163264,
|
516
|
+
"inodesFree": 16699906,
|
517
|
+
"inodes": 16777216,
|
518
|
+
"inodesUsed": 13
|
519
|
+
}
|
520
|
+
},
|
521
|
+
{
|
522
|
+
"podRef": {
|
523
|
+
"name": "kube-controller-manager-generics-aws-node-two",
|
524
|
+
"namespace": "kube-system",
|
525
|
+
"uid": "07a16a420a6bd57457ae30f30088d856"
|
526
|
+
},
|
527
|
+
"startTime": "2018-11-02T20:08:47Z",
|
528
|
+
"containers": [
|
529
|
+
{
|
530
|
+
"name": "kube-controller-manager",
|
531
|
+
"startTime": "2018-11-02T20:08:53Z",
|
532
|
+
"cpu": {
|
533
|
+
"time": "2018-11-29T20:29:58Z",
|
534
|
+
"usageNanoCores": 40426176,
|
535
|
+
"usageCoreNanoSeconds": 93916711794384
|
536
|
+
},
|
537
|
+
"memory": {
|
538
|
+
"time": "2018-11-29T20:29:58Z",
|
539
|
+
"usageBytes": 66654208,
|
540
|
+
"workingSetBytes": 60567552,
|
541
|
+
"rssBytes": 59006976,
|
542
|
+
"pageFaults": 179913,
|
543
|
+
"majorPageFaults": 155
|
544
|
+
},
|
545
|
+
"rootfs": {
|
546
|
+
"time": "2018-11-29T20:29:58Z",
|
547
|
+
"availableBytes": 56382795776,
|
548
|
+
"capacityBytes": 64345141248,
|
549
|
+
"usedBytes": 135168,
|
550
|
+
"inodesFree": 16699906,
|
551
|
+
"inodes": 16777216,
|
552
|
+
"inodesUsed": 41
|
553
|
+
},
|
554
|
+
"logs": {
|
555
|
+
"time": "2018-11-29T20:29:58Z",
|
556
|
+
"availableBytes": 56382795776,
|
557
|
+
"capacityBytes": 64345141248,
|
558
|
+
"usedBytes": 42262528,
|
559
|
+
"inodesFree": 16699906,
|
560
|
+
"inodes": 16777216,
|
561
|
+
"inodesUsed": 77310
|
562
|
+
},
|
563
|
+
"userDefinedMetrics": null
|
564
|
+
}
|
565
|
+
],
|
566
|
+
"cpu": {
|
567
|
+
"time": "2018-11-29T20:29:58Z",
|
568
|
+
"usageNanoCores": 41723157,
|
569
|
+
"usageCoreNanoSeconds": 93916748350333
|
570
|
+
},
|
571
|
+
"memory": {
|
572
|
+
"time": "2018-11-29T20:29:58Z",
|
573
|
+
"usageBytes": 66695168,
|
574
|
+
"workingSetBytes": 60608512,
|
575
|
+
"rssBytes": 59047936,
|
576
|
+
"pageFaults": 0,
|
577
|
+
"majorPageFaults": 0
|
578
|
+
},
|
579
|
+
"network": {
|
580
|
+
"time": "2018-11-29T20:29:50Z",
|
581
|
+
"name": "eth0",
|
582
|
+
"rxBytes": 6691606009,
|
583
|
+
"rxErrors": 0,
|
584
|
+
"txBytes": 22257642720,
|
585
|
+
"txErrors": 0,
|
586
|
+
"interfaces": [
|
587
|
+
{
|
588
|
+
"name": "eth0",
|
589
|
+
"rxBytes": 6691606009,
|
590
|
+
"rxErrors": 0,
|
591
|
+
"txBytes": 22257642720,
|
592
|
+
"txErrors": 0
|
593
|
+
}
|
594
|
+
]
|
595
|
+
},
|
596
|
+
"ephemeral-storage": {
|
597
|
+
"time": "2018-11-29T20:29:58Z",
|
598
|
+
"availableBytes": 56382795776,
|
599
|
+
"capacityBytes": 64345141248,
|
600
|
+
"usedBytes": 42397696,
|
601
|
+
"inodesFree": 16699906,
|
602
|
+
"inodes": 16777216,
|
603
|
+
"inodesUsed": 41
|
604
|
+
}
|
605
|
+
},
|
606
|
+
{
|
607
|
+
"podRef": {
|
608
|
+
"name": "kube-scheduler-generics-aws-node-two",
|
609
|
+
"namespace": "kube-system",
|
610
|
+
"uid": "76a4641508128c1971204ecb3dedd60d"
|
611
|
+
},
|
612
|
+
"startTime": "2018-11-02T20:08:47Z",
|
613
|
+
"containers": [
|
614
|
+
{
|
615
|
+
"name": "kube-scheduler",
|
616
|
+
"startTime": "2018-11-02T20:09:10Z",
|
617
|
+
"cpu": {
|
618
|
+
"time": "2018-11-29T20:29:58Z",
|
619
|
+
"usageNanoCores": 7984348,
|
620
|
+
"usageCoreNanoSeconds": 18175608417551
|
621
|
+
},
|
622
|
+
"memory": {
|
623
|
+
"time": "2018-11-29T20:29:58Z",
|
624
|
+
"usageBytes": 21569536,
|
625
|
+
"workingSetBytes": 14786560,
|
626
|
+
"rssBytes": 14307328,
|
627
|
+
"pageFaults": 44965,
|
628
|
+
"majorPageFaults": 97
|
629
|
+
},
|
630
|
+
"rootfs": {
|
631
|
+
"time": "2018-11-29T20:29:58Z",
|
632
|
+
"availableBytes": 56382795776,
|
633
|
+
"capacityBytes": 64345141248,
|
634
|
+
"usedBytes": 49152,
|
635
|
+
"inodesFree": 16699906,
|
636
|
+
"inodes": 16777216,
|
637
|
+
"inodesUsed": 20
|
638
|
+
},
|
639
|
+
"logs": {
|
640
|
+
"time": "2018-11-29T20:29:58Z",
|
641
|
+
"availableBytes": 56382795776,
|
642
|
+
"capacityBytes": 64345141248,
|
643
|
+
"usedBytes": 77824,
|
644
|
+
"inodesFree": 16699906,
|
645
|
+
"inodes": 16777216,
|
646
|
+
"inodesUsed": 77310
|
647
|
+
},
|
648
|
+
"userDefinedMetrics": null
|
649
|
+
}
|
650
|
+
],
|
651
|
+
"cpu": {
|
652
|
+
"time": "2018-11-29T20:29:54Z",
|
653
|
+
"usageNanoCores": 7960574,
|
654
|
+
"usageCoreNanoSeconds": 18175578542113
|
655
|
+
},
|
656
|
+
"memory": {
|
657
|
+
"time": "2018-11-29T20:29:54Z",
|
658
|
+
"usageBytes": 21610496,
|
659
|
+
"workingSetBytes": 14827520,
|
660
|
+
"rssBytes": 14348288,
|
661
|
+
"pageFaults": 0,
|
662
|
+
"majorPageFaults": 0
|
663
|
+
},
|
664
|
+
"network": {
|
665
|
+
"time": "2018-11-29T20:29:56Z",
|
666
|
+
"name": "eth0",
|
667
|
+
"rxBytes": 6691637785,
|
668
|
+
"rxErrors": 0,
|
669
|
+
"txBytes": 22257749743,
|
670
|
+
"txErrors": 0,
|
671
|
+
"interfaces": [
|
672
|
+
{
|
673
|
+
"name": "eth0",
|
674
|
+
"rxBytes": 6691637785,
|
675
|
+
"rxErrors": 0,
|
676
|
+
"txBytes": 22257749743,
|
677
|
+
"txErrors": 0
|
678
|
+
}
|
679
|
+
]
|
680
|
+
},
|
681
|
+
"ephemeral-storage": {
|
682
|
+
"time": "2018-11-29T20:29:58Z",
|
683
|
+
"availableBytes": 56382795776,
|
684
|
+
"capacityBytes": 64345141248,
|
685
|
+
"usedBytes": 126976,
|
686
|
+
"inodesFree": 16699906,
|
687
|
+
"inodes": 16777216,
|
688
|
+
"inodesUsed": 20
|
689
|
+
}
|
690
|
+
}
|
691
|
+
]
|
692
|
+
}
|