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
Copy file name to clipboardExpand all lines: pipeline/inputs/tail.md
+31Lines changed: 31 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -65,12 +65,26 @@ As stated in the [Multiline Parser documentation](../../administration/configuri
65
65
66
66
If you are running Fluent Bit to process logs coming from containers like Docker or CRI, you can use the new built-in modes for such purposes. This will help to reassembly multiline messages originally split by Docker or CRI:
67
67
68
+
{% tabs %}
69
+
{% tab title="fluent-bit.conf" %}
68
70
```text
69
71
[INPUT]
70
72
name tail
71
73
path /var/log/containers/*.log
72
74
multiline.parser docker, cri
73
75
```
76
+
{% endtab %}
77
+
78
+
{% tab title="fluent-bit.yaml" %}
79
+
```yaml
80
+
pipeline:
81
+
inputs:
82
+
- tail:
83
+
path: /var/log/containers/*.log
84
+
multiline.parser: docker, cri
85
+
```
86
+
{% endtab %}
87
+
{% endtabs %}
74
88
75
89
The two options separated by a comma means multi-format: try `docker` and `cri` multiline formats.
In your main configuration file append the following _Input_ & _Output_ sections. An example visualization can be found [here](https://link.calyptia.com/vg2)
115
129
130
+
{% tabs %}
131
+
{% tab title="fluent-bit.conf" %}
116
132
```python
117
133
[INPUT]
118
134
Name tail
@@ -122,6 +138,21 @@ In your main configuration file append the following _Input_ & _Output_ sections
0 commit comments