File tree Expand file tree Collapse file tree 1 file changed +26
-28
lines changed Expand file tree Collapse file tree 1 file changed +26
-28
lines changed Original file line number Diff line number Diff line change @@ -28,30 +28,15 @@ In order to start performing the checks, you can run the plugin from the command
28
28
29
29
From the command line you can configure Fluent Bit to handle Bulk API requests with the following options:
30
30
31
- ``` bash
32
- fluent-bit -i elasticsearch -p port=9200 -o stdout
31
+ ``` shell
32
+ $ fluent-bit -i elasticsearch -p port=9200 -o stdout
33
33
```
34
34
35
35
### Configuration file
36
36
37
- In your configuration file append the following ` Input ` and ` Output ` sections :
37
+ In your configuration file append the following:
38
38
39
39
{% tabs %}
40
- {% tab title="fluent-bit.conf" %}
41
-
42
- ``` python
43
- [INPUT ]
44
- name elasticsearch
45
- listen 0.0 .0.0
46
- port 9200
47
-
48
- [OUTPUT ]
49
- name stdout
50
- match *
51
- ```
52
-
53
- {% endtab %}
54
-
55
40
{% tab title="fluent-bit.yaml" %}
56
41
57
42
``` yaml
@@ -67,29 +52,26 @@ pipeline:
67
52
` ` `
68
53
69
54
{% endtab %}
70
- {% endtabs %}
71
-
72
- As described previously, the plugin will handle ingested Bulk API requests.
73
- For large bulk ingestion, you might have to increase buffer size using the ` buffer_max_size` and `buffer_chunk_size` parameters:
74
-
75
- {% tabs %}
76
55
{% tab title="fluent-bit.conf" %}
77
56
78
- ` ` ` python
57
+ ` ` ` text
79
58
[INPUT]
80
59
name elasticsearch
81
60
listen 0.0.0.0
82
61
port 9200
83
- buffer_max_size 20M
84
- buffer_chunk_size 5M
85
62
86
63
[OUTPUT]
87
64
name stdout
88
65
match *
89
66
```
90
67
91
68
{% endtab %}
69
+ {% endtabs %}
70
+
71
+ As described previously, the plugin will handle ingested Bulk API requests.
72
+ For large bulk ingestion, you might have to increase buffer size using the ` buffer_max_size ` and ` buffer_chunk_size ` parameters:
92
73
74
+ {% tabs %}
93
75
{% tab title="fluent-bit.yaml" %}
94
76
95
77
``` yaml
@@ -106,6 +88,22 @@ pipeline:
106
88
match : ' *'
107
89
` ` `
108
90
91
+ {% endtab %}
92
+ {% tab title="fluent-bit.conf" %}
93
+
94
+ ` ` ` text
95
+ [INPUT]
96
+ name elasticsearch
97
+ listen 0.0.0.0
98
+ port 9200
99
+ buffer_max_size 20M
100
+ buffer_chunk_size 5M
101
+
102
+ [OUTPUT]
103
+ name stdout
104
+ match *
105
+ ```
106
+
109
107
{% endtab %}
110
108
{% endtabs %}
111
109
@@ -130,4 +128,4 @@ For large log ingestion on these beat plugins, users might have to configure rat
130
128
processors :
131
129
- rate_limit :
132
130
limit : " 200/s"
133
- ` ` `
131
+ ` ` `
You can’t perform that action at this time.
0 commit comments