Sha256: 53a779a0bf609ca93865c009db3f7148f2284d329591251a679fef36a9bd1e35
Contents?: true
Size: 1.52 KB
Versions: 8
Compression:
Stored size: 1.52 KB
Contents
# encoding: utf-8 require "logstash/codecs/base" require "logstash/codecs/line" require "logstash/json" # This codec will decode the http://www.elasticsearch.org/guide/en/elasticsearch/reference/current/docs-bulk.html[Elasticsearch bulk format] # into individual events, plus metadata into the `@metadata` field. # # Encoding is not supported at this time as the Elasticsearch # output submits Logstash events in bulk format. class LogStash::Codecs::ESBulk < LogStash::Codecs::Base config_name "es_bulk" public def initialize(params={}) super(params) @lines = LogStash::Codecs::Line.new @lines.charset = "UTF-8" end public def decode(data) state = :initial metadata = Hash.new @lines.decode(data) do |bulk| begin line = LogStash::Json.load(bulk["message"]) case state when :metadata event = LogStash::Event.new(line) event["@metadata"] = metadata yield event state = :initial when :initial metadata = line[line.keys[0]] metadata["action"] = line.keys[0].to_s state = :metadata if line.keys[0] == 'delete' event = LogStash::Event.new() event["@metadata"] = metadata yield event state = :initial end end rescue LogStash::Json::ParserError => e @logger.error("JSON parse failure. ES Bulk messages must in be UTF-8 JSON", :error => e, :data => data) end end end # def decode end # class LogStash::Codecs::ESBulk
Version data entries
8 entries across 8 versions & 1 rubygems