Overview

Some message collectors have a common field definitions configuration to map datafields on to an output format. This may change the output field name, or data type. If the field definitions are not configured, all datafields will be mapped directly.

Stack Configuration

Tables

field_definitions

Key: field_definitions.

Example

Message collector specific configuration removed for clarity.

{
"msgCollector": {
"tables": {
"field_definitions": [
{
"df_name": "ip.src_host"
},
{
"field_name": "dst_host"
"df_name": "ip.dst_host"
},
{
"field_name": "src_port",
"field_type": "STRING",
"df_name": "ip.src_port"
}
]
}
}
}