File tree Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Expand file tree Collapse file tree 2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change
1
+ services :
2
+ fluentbit :
3
+ container_name : fluentbit
4
+ image : fluent/fluent-bit:latest
5
+ user : root
6
+ volumes :
7
+ - ./fluentbit/fluent-bit.yaml:/fluent-bit/fluent-bit.yaml
8
+ develop :
9
+ watch :
10
+ - action : sync+restart
11
+ path : ./fluentbit/
12
+ target : /fluentbit/
13
+ command :
14
+ - " fluent-bit"
15
+ - " -c"
16
+ - " /fluent-bit/fluent-bit.yaml"
Original file line number Diff line number Diff line change
1
+ service :
2
+ flush : 1
3
+ log_level : error
4
+
5
+
6
+ pipeline :
7
+ inputs :
8
+ - name : dummy
9
+ dummy : ' {"message": "custom dummy"}'
10
+ tag : dummy.sample
11
+ processors :
12
+ logs :
13
+ - name : modify
14
+ copy : message log_hash
15
+
16
+ - name : content_modifier
17
+ action : hash
18
+ key : log_hash
19
+
20
+ outputs :
21
+ - name : stdout
22
+ match : " dummy.sample"
You can’t perform that action at this time.
0 commit comments