mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 09:12:45 +01:00
15 lines
1.1 KiB
Plaintext
15 lines
1.1 KiB
Plaintext
{
|
|
"description" : "zeek.modbus_detailed",
|
|
"processors" : [
|
|
{ "remove": { "field": ["host"], "ignore_failure": true } },
|
|
{ "json": { "field": "message", "target_field": "message2", "ignore_failure": true } },
|
|
{ "rename": { "field": "message2.unit_id", "target_field": "modbus.unit.id", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.func", "target_field": "modbus.function", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.network_direction", "target_field": "modbus.network.direction", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.address", "target_field": "modbus.address", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.quality", "target_field": "modbus.quality", "ignore_missing": true } },
|
|
{ "rename": { "field": "message2.values", "target_field": "modbus.values", "ignore_missing": true } },
|
|
{ "pipeline": { "name": "zeek.common" } }
|
|
]
|
|
}
|