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/v1.json
ADDED
@@ -0,0 +1,488 @@
|
|
1
|
+
{
|
2
|
+
"kind": "APIResourceList",
|
3
|
+
"groupVersion": "v1",
|
4
|
+
"resources": [
|
5
|
+
{
|
6
|
+
"name": "bindings",
|
7
|
+
"singularName": "",
|
8
|
+
"namespaced": true,
|
9
|
+
"kind": "Binding",
|
10
|
+
"verbs": [
|
11
|
+
"create"
|
12
|
+
]
|
13
|
+
},
|
14
|
+
{
|
15
|
+
"name": "componentstatuses",
|
16
|
+
"singularName": "",
|
17
|
+
"namespaced": false,
|
18
|
+
"kind": "ComponentStatus",
|
19
|
+
"verbs": [
|
20
|
+
"get",
|
21
|
+
"list"
|
22
|
+
],
|
23
|
+
"shortNames": [
|
24
|
+
"cs"
|
25
|
+
]
|
26
|
+
},
|
27
|
+
{
|
28
|
+
"name": "configmaps",
|
29
|
+
"singularName": "",
|
30
|
+
"namespaced": true,
|
31
|
+
"kind": "ConfigMap",
|
32
|
+
"verbs": [
|
33
|
+
"create",
|
34
|
+
"delete",
|
35
|
+
"deletecollection",
|
36
|
+
"get",
|
37
|
+
"list",
|
38
|
+
"patch",
|
39
|
+
"update",
|
40
|
+
"watch"
|
41
|
+
],
|
42
|
+
"shortNames": [
|
43
|
+
"cm"
|
44
|
+
]
|
45
|
+
},
|
46
|
+
{
|
47
|
+
"name": "endpoints",
|
48
|
+
"singularName": "",
|
49
|
+
"namespaced": true,
|
50
|
+
"kind": "Endpoints",
|
51
|
+
"verbs": [
|
52
|
+
"create",
|
53
|
+
"delete",
|
54
|
+
"deletecollection",
|
55
|
+
"get",
|
56
|
+
"list",
|
57
|
+
"patch",
|
58
|
+
"update",
|
59
|
+
"watch"
|
60
|
+
],
|
61
|
+
"shortNames": [
|
62
|
+
"ep"
|
63
|
+
]
|
64
|
+
},
|
65
|
+
{
|
66
|
+
"name": "events",
|
67
|
+
"singularName": "",
|
68
|
+
"namespaced": true,
|
69
|
+
"kind": "Event",
|
70
|
+
"verbs": [
|
71
|
+
"create",
|
72
|
+
"delete",
|
73
|
+
"deletecollection",
|
74
|
+
"get",
|
75
|
+
"list",
|
76
|
+
"patch",
|
77
|
+
"update",
|
78
|
+
"watch"
|
79
|
+
],
|
80
|
+
"shortNames": [
|
81
|
+
"ev"
|
82
|
+
]
|
83
|
+
},
|
84
|
+
{
|
85
|
+
"name": "limitranges",
|
86
|
+
"singularName": "",
|
87
|
+
"namespaced": true,
|
88
|
+
"kind": "LimitRange",
|
89
|
+
"verbs": [
|
90
|
+
"create",
|
91
|
+
"delete",
|
92
|
+
"deletecollection",
|
93
|
+
"get",
|
94
|
+
"list",
|
95
|
+
"patch",
|
96
|
+
"update",
|
97
|
+
"watch"
|
98
|
+
],
|
99
|
+
"shortNames": [
|
100
|
+
"limits"
|
101
|
+
]
|
102
|
+
},
|
103
|
+
{
|
104
|
+
"name": "namespaces",
|
105
|
+
"singularName": "",
|
106
|
+
"namespaced": false,
|
107
|
+
"kind": "Namespace",
|
108
|
+
"verbs": [
|
109
|
+
"create",
|
110
|
+
"delete",
|
111
|
+
"get",
|
112
|
+
"list",
|
113
|
+
"patch",
|
114
|
+
"update",
|
115
|
+
"watch"
|
116
|
+
],
|
117
|
+
"shortNames": [
|
118
|
+
"ns"
|
119
|
+
]
|
120
|
+
},
|
121
|
+
{
|
122
|
+
"name": "namespaces/finalize",
|
123
|
+
"singularName": "",
|
124
|
+
"namespaced": false,
|
125
|
+
"kind": "Namespace",
|
126
|
+
"verbs": [
|
127
|
+
"update"
|
128
|
+
]
|
129
|
+
},
|
130
|
+
{
|
131
|
+
"name": "namespaces/status",
|
132
|
+
"singularName": "",
|
133
|
+
"namespaced": false,
|
134
|
+
"kind": "Namespace",
|
135
|
+
"verbs": [
|
136
|
+
"get",
|
137
|
+
"patch",
|
138
|
+
"update"
|
139
|
+
]
|
140
|
+
},
|
141
|
+
{
|
142
|
+
"name": "nodes",
|
143
|
+
"singularName": "",
|
144
|
+
"namespaced": false,
|
145
|
+
"kind": "Node",
|
146
|
+
"verbs": [
|
147
|
+
"create",
|
148
|
+
"delete",
|
149
|
+
"deletecollection",
|
150
|
+
"get",
|
151
|
+
"list",
|
152
|
+
"patch",
|
153
|
+
"proxy",
|
154
|
+
"update",
|
155
|
+
"watch"
|
156
|
+
],
|
157
|
+
"shortNames": [
|
158
|
+
"no"
|
159
|
+
]
|
160
|
+
},
|
161
|
+
{
|
162
|
+
"name": "nodes/proxy",
|
163
|
+
"singularName": "",
|
164
|
+
"namespaced": false,
|
165
|
+
"kind": "Node",
|
166
|
+
"verbs": []
|
167
|
+
},
|
168
|
+
{
|
169
|
+
"name": "nodes/status",
|
170
|
+
"singularName": "",
|
171
|
+
"namespaced": false,
|
172
|
+
"kind": "Node",
|
173
|
+
"verbs": [
|
174
|
+
"get",
|
175
|
+
"patch",
|
176
|
+
"update"
|
177
|
+
]
|
178
|
+
},
|
179
|
+
{
|
180
|
+
"name": "persistentvolumeclaims",
|
181
|
+
"singularName": "",
|
182
|
+
"namespaced": true,
|
183
|
+
"kind": "PersistentVolumeClaim",
|
184
|
+
"verbs": [
|
185
|
+
"create",
|
186
|
+
"delete",
|
187
|
+
"deletecollection",
|
188
|
+
"get",
|
189
|
+
"list",
|
190
|
+
"patch",
|
191
|
+
"update",
|
192
|
+
"watch"
|
193
|
+
],
|
194
|
+
"shortNames": [
|
195
|
+
"pvc"
|
196
|
+
]
|
197
|
+
},
|
198
|
+
{
|
199
|
+
"name": "persistentvolumeclaims/status",
|
200
|
+
"singularName": "",
|
201
|
+
"namespaced": true,
|
202
|
+
"kind": "PersistentVolumeClaim",
|
203
|
+
"verbs": [
|
204
|
+
"get",
|
205
|
+
"patch",
|
206
|
+
"update"
|
207
|
+
]
|
208
|
+
},
|
209
|
+
{
|
210
|
+
"name": "persistentvolumes",
|
211
|
+
"singularName": "",
|
212
|
+
"namespaced": false,
|
213
|
+
"kind": "PersistentVolume",
|
214
|
+
"verbs": [
|
215
|
+
"create",
|
216
|
+
"delete",
|
217
|
+
"deletecollection",
|
218
|
+
"get",
|
219
|
+
"list",
|
220
|
+
"patch",
|
221
|
+
"update",
|
222
|
+
"watch"
|
223
|
+
],
|
224
|
+
"shortNames": [
|
225
|
+
"pv"
|
226
|
+
]
|
227
|
+
},
|
228
|
+
{
|
229
|
+
"name": "persistentvolumes/status",
|
230
|
+
"singularName": "",
|
231
|
+
"namespaced": false,
|
232
|
+
"kind": "PersistentVolume",
|
233
|
+
"verbs": [
|
234
|
+
"get",
|
235
|
+
"patch",
|
236
|
+
"update"
|
237
|
+
]
|
238
|
+
},
|
239
|
+
{
|
240
|
+
"name": "pods",
|
241
|
+
"singularName": "",
|
242
|
+
"namespaced": true,
|
243
|
+
"kind": "Pod",
|
244
|
+
"verbs": [
|
245
|
+
"create",
|
246
|
+
"delete",
|
247
|
+
"deletecollection",
|
248
|
+
"get",
|
249
|
+
"list",
|
250
|
+
"patch",
|
251
|
+
"proxy",
|
252
|
+
"update",
|
253
|
+
"watch"
|
254
|
+
],
|
255
|
+
"shortNames": [
|
256
|
+
"po"
|
257
|
+
],
|
258
|
+
"categories": [
|
259
|
+
"all"
|
260
|
+
]
|
261
|
+
},
|
262
|
+
{
|
263
|
+
"name": "pods/attach",
|
264
|
+
"singularName": "",
|
265
|
+
"namespaced": true,
|
266
|
+
"kind": "Pod",
|
267
|
+
"verbs": []
|
268
|
+
},
|
269
|
+
{
|
270
|
+
"name": "pods/binding",
|
271
|
+
"singularName": "",
|
272
|
+
"namespaced": true,
|
273
|
+
"kind": "Binding",
|
274
|
+
"verbs": [
|
275
|
+
"create"
|
276
|
+
]
|
277
|
+
},
|
278
|
+
{
|
279
|
+
"name": "pods/eviction",
|
280
|
+
"singularName": "",
|
281
|
+
"namespaced": true,
|
282
|
+
"kind": "Eviction",
|
283
|
+
"verbs": [
|
284
|
+
"create"
|
285
|
+
]
|
286
|
+
},
|
287
|
+
{
|
288
|
+
"name": "pods/exec",
|
289
|
+
"singularName": "",
|
290
|
+
"namespaced": true,
|
291
|
+
"kind": "Pod",
|
292
|
+
"verbs": []
|
293
|
+
},
|
294
|
+
{
|
295
|
+
"name": "pods/log",
|
296
|
+
"singularName": "",
|
297
|
+
"namespaced": true,
|
298
|
+
"kind": "Pod",
|
299
|
+
"verbs": [
|
300
|
+
"get"
|
301
|
+
]
|
302
|
+
},
|
303
|
+
{
|
304
|
+
"name": "pods/portforward",
|
305
|
+
"singularName": "",
|
306
|
+
"namespaced": true,
|
307
|
+
"kind": "Pod",
|
308
|
+
"verbs": []
|
309
|
+
},
|
310
|
+
{
|
311
|
+
"name": "pods/proxy",
|
312
|
+
"singularName": "",
|
313
|
+
"namespaced": true,
|
314
|
+
"kind": "Pod",
|
315
|
+
"verbs": []
|
316
|
+
},
|
317
|
+
{
|
318
|
+
"name": "pods/status",
|
319
|
+
"singularName": "",
|
320
|
+
"namespaced": true,
|
321
|
+
"kind": "Pod",
|
322
|
+
"verbs": [
|
323
|
+
"get",
|
324
|
+
"patch",
|
325
|
+
"update"
|
326
|
+
]
|
327
|
+
},
|
328
|
+
{
|
329
|
+
"name": "podtemplates",
|
330
|
+
"singularName": "",
|
331
|
+
"namespaced": true,
|
332
|
+
"kind": "PodTemplate",
|
333
|
+
"verbs": [
|
334
|
+
"create",
|
335
|
+
"delete",
|
336
|
+
"deletecollection",
|
337
|
+
"get",
|
338
|
+
"list",
|
339
|
+
"patch",
|
340
|
+
"update",
|
341
|
+
"watch"
|
342
|
+
]
|
343
|
+
},
|
344
|
+
{
|
345
|
+
"name": "replicationcontrollers",
|
346
|
+
"singularName": "",
|
347
|
+
"namespaced": true,
|
348
|
+
"kind": "ReplicationController",
|
349
|
+
"verbs": [
|
350
|
+
"create",
|
351
|
+
"delete",
|
352
|
+
"deletecollection",
|
353
|
+
"get",
|
354
|
+
"list",
|
355
|
+
"patch",
|
356
|
+
"update",
|
357
|
+
"watch"
|
358
|
+
],
|
359
|
+
"shortNames": [
|
360
|
+
"rc"
|
361
|
+
],
|
362
|
+
"categories": [
|
363
|
+
"all"
|
364
|
+
]
|
365
|
+
},
|
366
|
+
{
|
367
|
+
"name": "replicationcontrollers/scale",
|
368
|
+
"singularName": "",
|
369
|
+
"namespaced": true,
|
370
|
+
"kind": "Scale",
|
371
|
+
"verbs": [
|
372
|
+
"get",
|
373
|
+
"patch",
|
374
|
+
"update"
|
375
|
+
]
|
376
|
+
},
|
377
|
+
{
|
378
|
+
"name": "replicationcontrollers/status",
|
379
|
+
"singularName": "",
|
380
|
+
"namespaced": true,
|
381
|
+
"kind": "ReplicationController",
|
382
|
+
"verbs": [
|
383
|
+
"get",
|
384
|
+
"patch",
|
385
|
+
"update"
|
386
|
+
]
|
387
|
+
},
|
388
|
+
{
|
389
|
+
"name": "resourcequotas",
|
390
|
+
"singularName": "",
|
391
|
+
"namespaced": true,
|
392
|
+
"kind": "ResourceQuota",
|
393
|
+
"verbs": [
|
394
|
+
"create",
|
395
|
+
"delete",
|
396
|
+
"deletecollection",
|
397
|
+
"get",
|
398
|
+
"list",
|
399
|
+
"patch",
|
400
|
+
"update",
|
401
|
+
"watch"
|
402
|
+
],
|
403
|
+
"shortNames": [
|
404
|
+
"quota"
|
405
|
+
]
|
406
|
+
},
|
407
|
+
{
|
408
|
+
"name": "resourcequotas/status",
|
409
|
+
"singularName": "",
|
410
|
+
"namespaced": true,
|
411
|
+
"kind": "ResourceQuota",
|
412
|
+
"verbs": [
|
413
|
+
"get",
|
414
|
+
"patch",
|
415
|
+
"update"
|
416
|
+
]
|
417
|
+
},
|
418
|
+
{
|
419
|
+
"name": "secrets",
|
420
|
+
"singularName": "",
|
421
|
+
"namespaced": true,
|
422
|
+
"kind": "Secret",
|
423
|
+
"verbs": [
|
424
|
+
"create",
|
425
|
+
"delete",
|
426
|
+
"deletecollection",
|
427
|
+
"get",
|
428
|
+
"list",
|
429
|
+
"patch",
|
430
|
+
"update",
|
431
|
+
"watch"
|
432
|
+
]
|
433
|
+
},
|
434
|
+
{
|
435
|
+
"name": "serviceaccounts",
|
436
|
+
"singularName": "",
|
437
|
+
"namespaced": true,
|
438
|
+
"kind": "ServiceAccount",
|
439
|
+
"verbs": [
|
440
|
+
"create",
|
441
|
+
"delete",
|
442
|
+
"deletecollection",
|
443
|
+
"get",
|
444
|
+
"list",
|
445
|
+
"patch",
|
446
|
+
"update",
|
447
|
+
"watch"
|
448
|
+
],
|
449
|
+
"shortNames": [
|
450
|
+
"sa"
|
451
|
+
]
|
452
|
+
},
|
453
|
+
{
|
454
|
+
"name": "services",
|
455
|
+
"singularName": "",
|
456
|
+
"namespaced": true,
|
457
|
+
"kind": "Service",
|
458
|
+
"verbs": [
|
459
|
+
"create",
|
460
|
+
"delete",
|
461
|
+
"get",
|
462
|
+
"list",
|
463
|
+
"patch",
|
464
|
+
"proxy",
|
465
|
+
"update",
|
466
|
+
"watch"
|
467
|
+
]
|
468
|
+
},
|
469
|
+
{
|
470
|
+
"name": "services/proxy",
|
471
|
+
"singularName": "",
|
472
|
+
"namespaced": true,
|
473
|
+
"kind": "Service",
|
474
|
+
"verbs": []
|
475
|
+
},
|
476
|
+
{
|
477
|
+
"name": "services/status",
|
478
|
+
"singularName": "",
|
479
|
+
"namespaced": true,
|
480
|
+
"kind": "Service",
|
481
|
+
"verbs": [
|
482
|
+
"get",
|
483
|
+
"patch",
|
484
|
+
"update"
|
485
|
+
]
|
486
|
+
}
|
487
|
+
]
|
488
|
+
}
|