mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 17:22:49 +01:00
15 lines
1.0 KiB
Plaintext
15 lines
1.0 KiB
Plaintext
{
|
|
"description" : "suricata.common",
|
|
"processors" : [
|
|
{ "rename":{ "field": "message2.proto", "target_field": "network.transport", "ignore_failure": true } },
|
|
{ "rename":{ "field": "message2.flow_id", "target_field": "event.id", "ignore_failure": true } },
|
|
{ "rename":{ "field": "message2.comunity_id", "target_field": "network.comunity_id", "ignore_failure": true } },
|
|
{ "rename":{ "field": "message2.src_ip", "target_field": "source.ip", "ignore_failure": true } },
|
|
{ "rename":{ "field": "message2.src_port", "target_field": "source.port", "ignore_failure": true } },
|
|
{ "rename":{ "field": "message2.dest_ip", "target_field": "destination.ip", "ignore_failure": true } },
|
|
{ "rename":{ "field": "message2.dest_port", "target_field": "destination.port", "ignore_failure": true } },
|
|
{ "remove": { "field": ["message2", "agent"], "ignore_failure": true } },
|
|
{ "pipeline": { "name": "common" } }
|
|
]
|
|
}
|