mirror of
https://github.com/elastic/logstash.git
synced 2025-06-28 09:46:03 -04:00
1.6 KiB
1.6 KiB
navigation_title | mapped_pages | |
---|---|---|
edn |
|
Edn codec plugin [plugins-codecs-edn]
- Plugin version: v3.1.0
- Released on: 2021-08-04
- Changelog
For other versions, see the Versioned plugin docs.
Getting help [_getting_help_179]
For questions about the plugin, open a topic in the Discuss forums. For bugs or feature requests, open an issue in Github. For the list of Elastic supported plugins, please consult the Elastic Support Matrix.
Description [_description_178]
Reads and produces EDN format data.
Edn Codec configuration options [plugins-codecs-edn-options]
Setting | Input type | Required |
---|---|---|
target |
string | No |
target
[plugins-codecs-edn-target]
- Value type is string
- There is no default value for this setting.
- The option is only relevant while decoding.
Define the target field for placing the decoded fields. If this setting is not set, data will be stored at the root (top level) of the event.
For example, if you want data to be put under the document
field:
input {
tcp {
port => 4242
codec => edn {
target => "[document]"
}
}
}