Sha256: 1e0970a6a96e9b25548e45c7d2316d138768020a56371ba8b10a1a0b2e52886c
Contents?: true
Size: 492 Bytes
Versions: 16
Compression:
Stored size: 492 Bytes
Contents
# encoding: utf-8 require "logstash/inputs/beats_support/event_transform_common" module LogStash::Inputs::BeatsSupport # 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") event end end end
Version data entries
16 entries across 16 versions & 1 rubygems