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 6e27d2f commit 65df6a0Copy full SHA for 65df6a0
pipeline/inputs/dummy.md
@@ -37,13 +37,29 @@ Fluent Bit v2.x.x
37
38
In your main configuration file append the following _Input_ & _Output_ sections:
39
40
-```python
+
41
+{% tabs %}
42
+{% tab title="fluent-bit.conf" %}
43
+```text
44
[INPUT]
45
Name dummy
- Tag dummy.log
46
+ Dummy {"message": "custom dummy"}
47
48
[OUTPUT]
49
Name stdout
50
Match *
51
```
52
+{% endtab %}
53
54
+{% tab title="fluent-bit.yaml" %}
55
+```yaml
56
+pipeline:
57
+ inputs:
58
+ - name: dummy
59
+ dummy: '{"message": "custom dummy"}'
60
+ outputs:
61
+ - name: stdout
62
+ match: '*'
63
+```
64
65
+{% endtabs %}
0 commit comments