Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 18 additions & 2 deletions pipeline/inputs/dummy.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,29 @@ Fluent Bit v2.x.x

In your main configuration file append the following _Input_ & _Output_ sections:

```python

{% tabs %}
{% tab title="fluent-bit.conf" %}
```text
[INPUT]
Name dummy
Tag dummy.log
Dummy {"message": "custom dummy"}

[OUTPUT]
Name stdout
Match *
```
{% endtab %}

{% tab title="fluent-bit.yaml" %}
```yaml
pipeline:
inputs:
- name: dummy
dummy: '{"message": "custom dummy"}'
outputs:
- name: stdout
match: '*'
```
{% endtab %}
{% endtabs %}