From fef803a86c3cf6a1a350ae45e62d7130728fd8c3 Mon Sep 17 00:00:00 2001 From: Doug Burks Date: Wed, 8 Jul 2020 10:41:14 -0400 Subject: [PATCH] Add ignore_failure to geoip processor calls #942 --- salt/elasticsearch/files/ingest/common | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/salt/elasticsearch/files/ingest/common b/salt/elasticsearch/files/ingest/common index d8de06f31..2f67a1ddc 100644 --- a/salt/elasticsearch/files/ingest/common +++ b/salt/elasticsearch/files/ingest/common @@ -6,7 +6,8 @@ "field": "destination.ip", "target_field": "destination.geo", "database_file": "GeoLite2-City.mmdb", - "ignore_missing": true, + "ignore_missing": true, + "ignore_failure": true, "properties": ["ip", "country_iso_code", "country_name", "continent_name", "region_iso_code", "region_name", "city_name", "timezone", "location"] } }, @@ -16,6 +17,7 @@ "target_field": "source.geo", "database_file": "GeoLite2-City.mmdb", "ignore_missing": true, + "ignore_failure": true, "properties": ["ip", "country_iso_code", "country_name", "continent_name", "region_iso_code", "region_name", "city_name", "timezone", "location"] } },