You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| Port | UDP port where listening for connections | 8125 |
18
-
| Threaded | Indicates whether to run this input in its own [thread](../../administration/multithreading.md#inputs). |`false`|
19
-
| Metrics | Ingested record will be marked as a metric record rather than a log record. |`off`|
20
-
21
-
Note: When enabling `Metrics On`, we will also handle metrics from the DogStatsD protocol and the internal record in Fluent Bit will be handled as a metric type for downstream processing.
22
-
[The full format of DogStatsD of metrics](https://docs.datadoghq.com/developers/dogstatsd/datagram_shell/?tab=metrics#the-dogstatsd-protocol) is not supported.
23
-
Including key-value format of tags as below is supported:
|`Port`| UDP port that listens for connections. |`8125`|
13
+
|`Threaded`| Indicates whether to run this input in its own [thread](../../administration/multithreading.md#inputs). |`false`|
14
+
|`Metrics`| Ingested record will be marked as a metric record rather than a log record. |`off`|
15
+
16
+
When enabling `Metrics On`, Fluent Bit will also handle metrics from the DogStatsD protocol. The internal record in Fluent Bit will be handled as a metric type for downstream processing.
17
+
18
+
[The full format of DogStatsD of metrics](https://docs.datadoghq.com/developers/dogstatsd/datagram_shell/?tab=metrics#the-dogstatsd-protocol) isn't supported.
[Events](https://docs.datadoghq.com/developers/dogstatsd/datagram_shell/?tab=events#the-dogstatsd-protocol) and [ServiceChecks](https://docs.datadoghq.com/developers/dogstatsd/datagram_shell/?tab=servicechecks#the-dogstatsd-protocol) formats are not supported yet with `Metrics On`.
[Events](https://docs.datadoghq.com/developers/dogstatsd/datagram_shell/?tab=events#the-dogstatsd-protocol) and [ServiceChecks](https://docs.datadoghq.com/developers/dogstatsd/datagram_shell/?tab=servicechecks#the-dogstatsd-protocol) formats aren't supported with `Metrics On`.
24
+
25
+
## Configuration example
28
26
29
27
Here is a configuration example.
30
28
31
29
{% tabs %}
30
+
{% tab title="fluent-bit.yaml" %}
31
+
32
+
```yaml
33
+
pipeline:
34
+
inputs:
35
+
- name: statsd
36
+
listen: 0.0.0.0
37
+
port: 8125
38
+
outputs:
39
+
- name: stdout
40
+
match: '*'
41
+
```
42
+
43
+
{% endtab %}
32
44
{% tab title="fluent-bit.conf" %}
45
+
33
46
```python
34
47
[INPUT]
35
48
Name statsd
@@ -40,19 +53,7 @@ Here is a configuration example.
40
53
Name stdout
41
54
Match *
42
55
```
43
-
{% endtab %}
44
56
45
-
{% tab title="fluent-bit.yaml" %}
46
-
```yaml
47
-
pipeline:
48
-
inputs:
49
-
- name: statsd
50
-
listen: 0.0.0.0
51
-
port: 8125
52
-
outputs:
53
-
- name: stdout
54
-
match: '*'
55
-
```
56
57
{% endtab %}
57
58
{% endtabs %}
58
59
@@ -70,26 +71,14 @@ Fluent Bit will produce the following records:
0 commit comments