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 28eae0d commit 2ad2502Copy full SHA for 2ad2502
pipeline/inputs/random.md
@@ -28,6 +28,8 @@ $ fluent-bit -i random -o stdout
28
29
In your main configuration file append the following _Input_ & _Output_ sections:
30
31
+{% tabs %}
32
+{% tab title="fluent-bit.conf" %}
33
```python
34
[INPUT]
35
Name random
@@ -39,6 +41,23 @@ In your main configuration file append the following _Input_ & _Output_ sections
39
41
Name stdout
40
42
Match *
43
```
44
+{% endtab %}
45
+
46
+{% tab title="fluent-bit.yaml" %}
47
+```yaml
48
+pipeline:
49
+ inputs:
50
+ - name: random
51
+ samples: -1
52
+ interval_sec: 1
53
+ interval_nsec: 0
54
+ outputs:
55
+ - name: stdout
56
+ match: '*'
57
+```
58
59
+{% endtabs %}
60
61
62
## Testing
63
0 commit comments