mirror of
https://github.com/Security-Onion-Solutions/securityonion.git
synced 2025-12-06 17:22:49 +01:00
37 lines
718 B
Plaintext
37 lines
718 B
Plaintext
{
|
|
"description": "RITA Connections",
|
|
"processors": [
|
|
{
|
|
"set": {
|
|
"field": "event.dataset",
|
|
"value": "connection",
|
|
"override": true
|
|
}
|
|
},
|
|
{
|
|
"dissect": {
|
|
"field": "message",
|
|
"pattern": "%{source.ip},%{destination.ip},%{network.port}:%{network.protocol}:%{network.service},%{connection.duration},%{connection.state}"
|
|
}
|
|
},
|
|
{
|
|
"convert": {
|
|
"field": "connection.duration",
|
|
"type": "float"
|
|
}
|
|
},
|
|
{
|
|
"set": {
|
|
"field": "event.duration",
|
|
"value": "{{ connection.duration }}",
|
|
"override": true
|
|
}
|
|
},
|
|
{
|
|
"pipeline": {
|
|
"name": "common"
|
|
}
|
|
}
|
|
]
|
|
}
|