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 a4296c1 commit 28eae0dCopy full SHA for 28eae0d
pipeline/inputs/network-io-metrics.md
@@ -41,6 +41,8 @@ Fluent Bit v1.x.x
41
42
In your main configuration file append the following _Input_ & _Output_ sections:
43
44
+{% tabs %}
45
+{% tab title="fluent-bit.conf" %}
46
```python
47
[INPUT]
48
Name netif
@@ -52,6 +54,23 @@ In your main configuration file append the following _Input_ & _Output_ sections
52
54
Name stdout
53
55
Match *
56
```
57
+{% endtab %}
58
+
59
+{% tab title="fluent-bit.yaml" %}
60
+```yaml
61
+pipeline:
62
+ inputs:
63
+ - name: netif
64
+ tag: netif
65
+ interval_sec: 1
66
+ interval_nsec: 0
67
+ interface: eth0
68
+ outputs:
69
+ - name: stdout
70
+ match: '*'
71
+```
72
73
+{% endtabs %}
74
75
Note: Total interval \(sec\) = Interval\_Sec + \(Interval\_Nsec / 1000000000\).
76
0 commit comments