We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d45b739 commit ca9faa1Copy full SHA for ca9faa1
pipeline/inputs/systemd.md
@@ -40,6 +40,8 @@ $ fluent-bit -i systemd \
40
41
In your main configuration file append the following _Input_ & _Output_ sections:
42
43
+{% tabs %}
44
+{% tab title="fluent-bit.conf" %}
45
```text
46
[SERVICE]
47
Flush 1
@@ -55,4 +57,22 @@ In your main configuration file append the following _Input_ & _Output_ sections
55
57
Name stdout
56
58
Match *
59
```
-
60
+{% endtab %}
61
+
62
+{% tab title="fluent-bit.yaml" %}
63
+```yaml
64
+service:
65
+ flush: 1
66
+ log_level: info
67
+ parsers_file: parsers.conf
68
+pipeline:
69
+ inputs:
70
+ - name: systemd
71
+ tag: host.*
72
+ systemd_filter: _SYSTEMD_UNIT=docker.service
73
+ outputs:
74
+ - name: stdout
75
+ match: '*'
76
+```
77
78
+{% endtabs %}
0 commit comments