From b3f8ed7dcd41b92ad8b41aee1904ef0005fe0f92 Mon Sep 17 00:00:00 2001 From: Doug Burks Date: Sat, 10 Jun 2023 11:42:41 -0400 Subject: [PATCH] FIX: Suricata DHCP logs not ingesting #10565 --- salt/elasticsearch/files/ingest/suricata.dhcp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/salt/elasticsearch/files/ingest/suricata.dhcp b/salt/elasticsearch/files/ingest/suricata.dhcp index 46eb9cde4..7e8e0187f 100644 --- a/salt/elasticsearch/files/ingest/suricata.dhcp +++ b/salt/elasticsearch/files/ingest/suricata.dhcp @@ -1,6 +1,8 @@ { "description" : "suricata.dhcp", "processors" : [ + { "remove": { "field": "host.hostname", "ignore_failure": true } }, + { "remove": { "field": "host.mac", "ignore_failure": true } }, { "rename": { "field": "message2.proto", "target_field": "network.transport", "ignore_missing": true } }, { "rename": { "field": "message2.app_proto", "target_field": "network.protocol", "ignore_missing": true } }, { "rename": { "field": "message2.dhcp.assigned_ip", "target_field": "dhcp.assigned_ip", "ignore_missing": true } },