Add ignore_failure to geoip processor calls #942

This commit is contained in:
Doug Burks
2020-07-08 10:41:14 -04:00
committed by GitHub
parent 3352eb77e9
commit fef803a86c

View File

@@ -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"]
}
},