File tree Expand file tree Collapse file tree 1 file changed +19
-20
lines changed Expand file tree Collapse file tree 1 file changed +19
-20
lines changed Original file line number Diff line number Diff line change @@ -28,8 +28,8 @@ You can run the plugin from the command line or through the configuration file:
28
28
29
29
Run the plugin from the command line using the following command:
30
30
31
- ``` bash
32
- fluent-bit -i dummy -o stdout
31
+ ``` shell
32
+ $ fluent-bit -i dummy -o stdout
33
33
```
34
34
35
35
which returns results like the following:
@@ -46,13 +46,26 @@ Fluent Bit v2.x.x
46
46
47
47
### Configuration file
48
48
49
- In your main configuration file append the following ` Input ` and ` Output ` sections:
50
-
49
+ In your main configuration file append the following:
51
50
52
51
{% tabs %}
52
+ {% tab title="fluent-bit.yaml" %}
53
+
54
+ ``` yaml
55
+ pipeline :
56
+ inputs :
57
+ - name : dummy
58
+ dummy : ' {"message": "custom dummy"}'
59
+
60
+ outputs :
61
+ - name : stdout
62
+ match : ' *'
63
+ ` ` `
64
+
65
+ {% endtab %}
53
66
{% tab title="fluent-bit.conf" %}
54
67
55
- ``` python
68
+ ` ` ` text
56
69
[INPUT]
57
70
Name dummy
58
71
Dummy {"message" : " custom dummy" }
@@ -63,18 +76,4 @@ In your main configuration file append the following `Input` and `Output` sectio
63
76
```
64
77
65
78
{% endtab %}
66
-
67
- {% tab title="fluent-bit.yaml" %}
68
-
69
- ``` yaml
70
- pipeline :
71
- inputs :
72
- - name : dummy
73
- dummy : ' {"message": "custom dummy"}'
74
- outputs :
75
- - name : stdout
76
- match : ' *'
77
- ` ` `
78
-
79
- {% endtab %}
80
- {% endtabs %}
79
+ {% endtabs %}
You can’t perform that action at this time.
0 commit comments