Sha256: 16e94c37da8eb0b0d293c21fe1631f76a1984f5fe73300a8a5f5fa2177ad3587
Contents?: true
Size: 534 Bytes
Versions: 1
Compression:
Stored size: 534 Bytes
Contents
# encoding: utf-8 require "logstash/util/loggable" java_import java.util.function.Consumer module LogStash module Inputs module Azure class ErrorNotificationHandler include Consumer include LogStash::Util::Loggable def initialize @logger = self.logger end def accept(exception_received_event_args) @logger.error("Error with Event Processor Host. ", :exception_received_event_args => exception_received_event_args.to_s) end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
logstash-input-azure_event_hubs-1.0.0 | lib/logstash/inputs/error_notification_handler.rb |