-
Notifications
You must be signed in to change notification settings - Fork 55
Closed
Labels
Description
With Elasticsearch 7.0 elastic common schema (ECS) was introduced. This maps the hostname to host.name instead of host. Currently logstash_async fails with:
[2019-04-29T08:04:22,562][WARN ][logstash.outputs.elasticsearch] Could not index event to Elasticsearch. {:status=>400, :action=>["index", {:_id=>nil, :_index=>"logstash", :_type=>"_doc", :routing=>nil}, #LogStash::Event:0x27275849], :response=>{"index"=>{"_index"=>"logstash-2019.04.26-000001", "_type"=>"_doc", "_id"=>"tRAfaGoB1XS_Z1QomfCX", "status"=>400, "error"=>{"type"=>"mapper_parsing_exception", "reason"=>"object mapping for [host] tried to parse field [host] as object, but found a concrete value"}}}}
As a workaround we changed formatter.LogstashFormatter.format to:
message = {
'@timestamp': self._format_timestamp(record.created),
'@version': '1',
'host.name': self._host, # <-- FIXED: was: 'host': ...
'level': record.levelname,
'logsource': self._logsource,
'message': record.getMessage(),
'pid': record.process,
'program': self._program_name,
'type': self._message_type,
}Reactions are currently unavailable