zeek dns.resolved_ip

This commit is contained in:
reyesj2
2025-08-19 11:20:59 -05:00
parent 6fae4a9974
commit 95bee91b12
2 changed files with 25 additions and 1 deletions

View File

@@ -0,0 +1,22 @@
{
"processors": [
{
"convert": {
"field": "_ingest._value",
"type": "ip",
"target_field": "_ingest._temp_ip",
"ignore_failure": true
}
},
{
"append": {
"field": "temp._valid_ips",
"allow_duplicates": false,
"value": [
"{{{_ingest._temp_ip}}}"
],
"ignore_failure": true
}
}
]
}