# udp

![](https://1982584918-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F-LR7OsqPORtP86IQxs6E-694727794%2Fuploads%2Fgit-blob-05c99756c28a11108953ea4c8b4034ef30736c12%2Fudp.png?alt=media)

The `in_udp` Input plugin enables Fluentd to accept UDP payload.

It is included in Fluentd's core.

## Example Configuration

```
<source>
  @type udp
  tag mytag # required
  <parse>
    @type regexp
    expression /^(?<field1>\d+):(?<field2>\w+)$/
  </parse>
  port 20001               # optional. 5160 by default
  bind 0.0.0.0             # optional. 0.0.0.0 by default
  message_length_limit 1MB # optional. 4096 bytes by default
</source>
```

Refer to the [Configuration File](https://docs.fluentd.org/configuration/config-file) article for the basic structure and syntax of the configuration file.

For `<parse>`, refer to [Parse Section](https://docs.fluentd.org/configuration/parse-section).

We have observed drastic performance improvements on Linux, with proper kernel parameter settings (e.g. `net.core.rmem_max` parameter). If you have high-volume UDP traffic, please make sure to follow [Before Installing Fluentd](https://docs.fluentd.org/installation/before-install) instructions.

## Plugin Helpers

* [`server`](https://docs.fluentd.org/plugin-helper-overview/api-plugin-helper-server)
* [`parser`](https://docs.fluentd.org/plugin-helper-overview/api-plugin-helper-parser)
* [`extract`](https://docs.fluentd.org/plugin-helper-overview/api-plugin-helper-extract)
* [`compat_parameters`](https://docs.fluentd.org/plugin-helper-overview/api-plugin-helper-compat_parameters)

## Parameters

See [Common Parameters](https://docs.fluentd.org/configuration/plugin-common-parameters).

### `@type`

The value must be `udp`.

### `tag`

| type   | default            | version |
| ------ | ------------------ | ------- |
| string | required parameter | 0.14.0  |

The tag of the output events.

### `port`

| type    | default | version |
| ------- | ------- | ------- |
| integer | 5160    | 0.14.0  |

The port to listen to. (default: `5160`)

### `bind`

| type   | default                 | version |
| ------ | ----------------------- | ------- |
| string | 0.0.0.0 (all addresses) | 0.14.0  |

The bind address to listen to.

### `source_hostname_key`

| type   | default                  | version |
| ------ | ------------------------ | ------- |
| string | nil (no adding hostname) | 0.14.10 |

The field name of the client's hostname. If it is set, the client's hostname will be set to its key.

If you set the following configuration:

```
source_hostname_key client_host
```

then the client's hostname is set to `client_host` field i.e.:

```
{
    ...
    "foo": "bar",
    "client_host": "client.hostname.org"
}
```

### `source_address_key`

|  type  |             default            | version |
| :----: | :----------------------------: | :-----: |
| string | nil (no adding source address) |  1.4.2  |

The field name for the client's IP address. If you set this option, Fluentd automatically adds the remote address to each data record.

For example, if you have the following configuration:

```
<source>
  @type udp
  source_address_key client_addr
  # ...
</source>
```

You will get something like this:

```
{
    ...
    "client_addr": "192.168.10.10"
    ...
}
```

### `message_length_limit`

| type | default | version |
| ---- | ------- | ------- |
| size | 4096    | 0.14.14 |

The maximum number of bytes for the message.

### `remove_newline`

| type | default | version |
| ---- | ------- | ------- |
| bool | true    | 0.14.23 |

Removes the newline from the end of the incoming payload.

### `receive_buffer_size`

| type | default | version |
| ---- | ------- | ------- |
| size | nil     | 1.0.1   |

This is a deprecated parameter. Use `receive_buffer_size` in `<transport>` section instead.

The max size of socket receive buffer. This is used in `SO_RCVBUF` socket option.

### `<transport>` Section

| type | default | available values | version |
| ---- | ------- | ---------------- | ------- |
| enum | udp     | udp              | 1.18.0  |

This section is for some general transport configurations. See [Config: Transport Section](https://docs.fluentd.org/configuration/transport-section) for all supported parameters.

### `<parse>` Section

| required | multi | version |
| -------- | ----- | ------- |
| true     | false | 0.14.10 |

`in_udp` uses the parser plugin to parse the payload.

For more details:

* [Parser Plugin Overview](https://docs.fluentd.org/parser)
* [Parse Section Configurations](https://docs.fluentd.org/configuration/parse-section)

## Code Example

Here is a Ruby example to send an event to `in_udp`:

```
require 'socket'

us = UDPSocket.open
sa = Socket.pack_sockaddr_in(5160, '127.0.0.1')

# This example uses json payload.
# In in_udp configuration, need to configure "@type json" in "<parse>"
us.send('{"k":"v1"}', 0, sa)
us.send('{"k":"v2"}', 0, sa)
us.close
```

## FAQ

### How to prevent request drop?

If `in_udp` gets lots of packets within 1 sec, some packets are dropped. For example, you can see bigger `RcvbufErrors` number via `netstat -su`.

This means that `in_udp` with one process cannot handle such traffic loads. Try [multi workers](https://docs.fluentd.org/deployment/multi-process-workers).

### How to receive binary data that contains newline bytes

If you are trying to receive binary data containing '\r' (`0x0d`) or '\n' (`0x0a`), you need to tweak `remove_newline` to prevent Fluentd from corrupting payloads.

For example, suppose you intend to receive packets which contain the following data:

```
\xa9test\ntest (0xa9, 0x74, 0x65, 0x73, 0x74, 0xa, 0x74, 0x65, 0x73, 0x74)
```

you need to be careful that the default behaviour of Fluentd is to trim the 6th byte (`0x0a`) from payload. If you do not want this behaviour, please configure `remove_newline` to `false`.

If this article is incorrect or outdated, or omits critical information, please [let us know](https://github.com/fluent/fluentd-docs-gitbook/issues?state=open). [Fluentd](http://www.fluentd.org/) is an open-source project under [Cloud Native Computing Foundation (CNCF)](https://cncf.io/). All components are available under the Apache 2 License.
