class LogStash::Inputs::BeatsSupport::RawEventTransform
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]
Public Instance Methods
transform(event)
click to toggle source
Calls superclass method
LogStash::Inputs::BeatsSupport::EventTransformCommon#transform
# File lib/logstash/inputs/beats_support/raw_event_transform.rb, line 12 def transform(event) super(event) event.tag("beats_input_raw_event") event end