You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
flush: 1# Flush records every second. Controls how often data is pushed to outputs.
3
+
log_level: error # Only log errors. Reduces log verbosity for Fluent Bit itself.
4
+
5
+
pipeline:
6
+
inputs:
7
+
- name: dummy
8
+
dummy: '{"message": "2025-06-19T17:02:35.123456789Z stdout F This is a Foobar application log sample running in kubernetes persisted on /var/log/containers/*.log"}'
9
+
tag: dummy.foobar
10
+
processors:
11
+
logs:
12
+
# Copy the 'message' field to a new field called '_id'.
13
+
- name: modify
14
+
copy: message _id
15
+
16
+
# Hash the '_id' field to anonymize or deduplicate.
17
+
- name: content_modifier
18
+
action: hash
19
+
key: _id
20
+
21
+
- name: dummy
22
+
dummy: '{"message": "2025-06-19T17:02:35.123456789Z stdout F This is a Greeting application log sample running in kubernetes persisted on /var/log/containers/*.log"}'
23
+
tag: dummy.greeting
24
+
processors:
25
+
logs:
26
+
# Copy the 'message' field to a new field called '_id'.
27
+
- name: modify
28
+
copy: message _id
29
+
30
+
# Hash the '_id' field to anonymize or deduplicate.
0 commit comments