From fb6850641873a4fc54dcb96664c0e65d9118528a Mon Sep 17 00:00:00 2001 From: Mike Reeves Date: Tue, 2 Jun 2020 14:42:15 -0400 Subject: [PATCH] Add mor suricata ingest parser types --- salt/elasticsearch/files/ingest/suricata.smtp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 salt/elasticsearch/files/ingest/suricata.smtp diff --git a/salt/elasticsearch/files/ingest/suricata.smtp b/salt/elasticsearch/files/ingest/suricata.smtp new file mode 100644 index 000000000..523ec1b30 --- /dev/null +++ b/salt/elasticsearch/files/ingest/suricata.smtp @@ -0,0 +1,8 @@ +{ + "description" : "suricata.smtp", + "processors" : [ + { "rename": { "field": "message2.proto", "target_field": "network.transport", "ignore_missing": true } }, + { "rename": { "field": "message2.app_proto", "target_field": "network.protocol", "ignore_missing": true } }, + { "pipeline": { "name": "common" } } + ] +}