-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathfluent-bit.conf
More file actions
71 lines (65 loc) · 1.62 KB
/
fluent-bit.conf
File metadata and controls
71 lines (65 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[SERVICE]
Flush 1
Daemon off
Log_Level info
Parsers_File parsers.conf
storage.path /fluent-bit/state
storage.total_limit_size 1G
[INPUT]
Name tail
Tag es_logs
Path /reactivesearch-data/es*.json
Buffer_Chunk_Size 3MB
Buffer_Max_Size 487MB
Mem_Buf_Limit 64MB
DB /fluent-bit/state/tail.db
DB.Sync Normal
Skip_Long_Lines On
Storage.type filesystem
[INPUT]
Name tail
Tag pipeline_logs
Path /reactivesearch-data/pipeline*.json
Buffer_Chunk_Size 3MB
Buffer_Max_Size 487MB
Mem_Buf_Limit 64MB
DB /fluent-bit/state/tail.db
DB.Sync Normal
Skip_Long_Lines On
Storage.type filesystem
[FILTER]
Name parser
Parser docker
Match *
Key_Name log
Reserve_Data true
[FILTER]
Name throttle
Match *
Rate 60
Window 10
Interval 5s
[OUTPUT]
Name es
Match es_logs
Host elasticsearch
Port 9200
Index .logs
Generate_ID true
Suppress_Type_Name On
tls Off
tls.verify Off
# HTTP_User ${ES_USERNAME}
# HTTP_Passwd ${ES_PASSWORD}
[OUTPUT]
Name es
Match pipeline_logs
Host elasticsearch
Port 9200
Index .pipeline_logs
Generate_ID true
Suppress_Type_Name On
tls Off
tls.verify Off
# HTTP_User ${ES_USERNAME}
# HTTP_Passwd ${ES_PASSWORD}