Class: Karafka::Instrumentation::Callbacks::Error
- Inherits:
-
Object
- Object
- Karafka::Instrumentation::Callbacks::Error
- Defined in:
- lib/karafka/instrumentation/callbacks/error.rb
Overview
Callback that kicks in when consumer error occurs and is published in a background thread
Instance Method Summary collapse
-
#call(client_name, error) ⇒ Object
Runs the instrumentation monitor with error.
-
#initialize(subscription_group_id, consumer_group_id, client_name) ⇒ Error
constructor
A new instance of Error.
Constructor Details
#initialize(subscription_group_id, consumer_group_id, client_name) ⇒ Error
Returns a new instance of Error.
12 13 14 15 16 |
# File 'lib/karafka/instrumentation/callbacks/error.rb', line 12 def initialize(subscription_group_id, consumer_group_id, client_name) @subscription_group_id = subscription_group_id @consumer_group_id = consumer_group_id @client_name = client_name end |
Instance Method Details
#call(client_name, error) ⇒ Object
Note:
It will only instrument on errors of the client of our consumer
Runs the instrumentation monitor with error
22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
# File 'lib/karafka/instrumentation/callbacks/error.rb', line 22 def call(client_name, error) # Emit only errors related to our client # Same as with statistics (mor explanation there) return unless @client_name == client_name ::Karafka.monitor.instrument( 'error.occurred', caller: self, subscription_group_id: @subscription_group_id, consumer_group_id: @consumer_group_id, type: 'librdkafka.error', error: error ) end |