:plugin: edn :type: codec /////////////////////////////////////////// START - GENERATED VARIABLES, DO NOT EDIT! /////////////////////////////////////////// :version: %VERSION% :release_date: %RELEASE_DATE% :changelog_url: %CHANGELOG_URL% :include_path: ../../../../logstash/docs/include /////////////////////////////////////////// END - GENERATED VARIABLES, DO NOT EDIT! /////////////////////////////////////////// [id="plugins-{type}s-{plugin}"] === Edn codec plugin include::{include_path}/plugin_header.asciidoc[] ==== Description Reads and produces EDN format data. [id="plugins-{type}s-{plugin}-options"] ==== Edn Codec configuration options [cols="<,<,<",options="header",] |======================================================================= |Setting |Input type|Required | <> |<>|No |=======================================================================   [id="plugins-{type}s-{plugin}-target"] ===== `target` * Value type is <> * 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: [source,ruby] input { tcp { port => 4242 codec => edn { target => "[document]" } } }