Sha256: b01cee69f2cade95a7e4b645729e43046d9fd666163ebc91c30baf61bd061c83
Contents?: true
Size: 519 Bytes
Versions: 117
Compression:
Stored size: 519 Bytes
Contents
# encoding: utf-8 require "logstash/inputs/beats/event_transform_common" module LogStash module Inputs class Beats # Take the the raw output from the library, decorate it with # the configured tags in the plugins and normalize the hostname # for backward compatibility # # # @see [Lumberjack::Beats::Parser] # class RawEventTransform < EventTransformCommon def transform(event) super(event) event.tag("beats_input_raw_event") if include_codec_tag? event end end end; end;end
Version data entries
117 entries across 117 versions & 1 rubygems