-
Notifications
You must be signed in to change notification settings - Fork 3
/
fluent-bit.conf
61 lines (55 loc) · 1.26 KB
/
fluent-bit.conf
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
[SERVICE]
Flush 1
Daemon off
Log_Level info
Parsers_File parsers.conf
[INPUT]
Name tail
Tag es_logs
Path /reactivesearch-data/es*.json
Buffer_Chunk_Size 3MB
Buffer_Max_Size 487MB
[INPUT]
Name tail
Tag pipeline_logs
Path /reactivesearch-data/pipeline*.json
Buffer_Chunk_Size 3MB
Buffer_Max_Size 487MB
[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
Type _doc
Generate_ID true
tls Off
tls.verify Off
Suppress_Type_Name On
# HTTP_User __ES_USERNAME__
# HTTP_Passwd __ES_PASSWORD__
[OUTPUT]
Name es
Match pipeline_logs
Host elasticsearch
Port 9200
Index .pipeline_logs
Type _doc
Generate_ID true
tls Off
tls.verify Off
Suppress_Type_Name On
# HTTP_User __ES_USERNAME__
# HTTP_Passwd __ES_PASSWORD__