File tree Expand file tree Collapse file tree 4 files changed +26
-8
lines changed Expand file tree Collapse file tree 4 files changed +26
-8
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,6 @@ dependencies:
15
15
repository : https://helm.vector.dev
16
16
condition : vector.enabled
17
17
- name : fluent-bit
18
- version : 0.25 .0
18
+ version : 0.48 .0
19
19
repository : https://fluent.github.io/helm-charts
20
20
condition : fluent-bit.enabled
Original file line number Diff line number Diff line change @@ -295,12 +295,12 @@ vector:
295
295
# See fluent-bit helm documentation to learn more:
296
296
# https://github.com/fluent/helm-charts/tree/main/charts/fluent-bit
297
297
fluent-bit :
298
- enabled : false
298
+ enabled : true
299
299
kind : DaemonSet
300
300
replicaCount : 1
301
301
image :
302
- repository : cr.fluentbit.io/fluent /fluent-bit
303
- tag : " "
302
+ repository : parseable /fluent-bit
303
+ tag : " v1 "
304
304
pullPolicy : Always
305
305
testFramework :
306
306
enabled : true
@@ -315,6 +315,7 @@ fluent-bit:
315
315
rbac :
316
316
create : true
317
317
nodeAccess : false
318
+ eventsAccess : true
318
319
dnsPolicy : ClusterFirst
319
320
service :
320
321
type : ClusterIP
@@ -356,6 +357,16 @@ fluent-bit:
356
357
Mem_Buf_Limit 5MB
357
358
Skip_Long_Lines On
358
359
360
+ [INPUT]
361
+ name kubernetes_events
362
+ tag k8s_events
363
+
364
+ [INPUT]
365
+ Name systemd
366
+ Tag host.*
367
+ Systemd_Filter _SYSTEMD_UNIT=kubelet.service
368
+ Read_From_Tail On
369
+
359
370
# # https://docs.fluentbit.io/manual/pipeline/filters
360
371
filters : |
361
372
[FILTER]
@@ -369,17 +380,24 @@ fluent-bit:
369
380
# # https://docs.fluentbit.io/manual/pipeline/outputs
370
381
outputs : |
371
382
[OUTPUT]
372
- Name http
383
+ Name parseable
373
384
Match kube.*
385
+ P_Server parseable.parseable.svc.cluster.local
386
+ P_Port 80
387
+ P_Username admin
388
+ P_Password admin
389
+ P_Stream $NAMESPACE
390
+
391
+ [OUTPUT]
392
+ Name http
393
+ Match k8s_events
374
394
host parseable.parseable.svc.cluster.local
375
395
http_User admin
376
396
http_Passwd admin
377
397
format json
378
398
port 80
379
399
header Content-Type application/json
380
- header X-P-META-meta1 value1
381
- header X-P-TAG-tag1 value1
382
- header X-P-Stream fluentbitdemo
400
+ header X-P-Stream k8s-events
383
401
uri /api/v1/ingest
384
402
json_date_key timestamp
385
403
json_date_format iso8601
You can’t perform that action at this time.
0 commit comments