Sha256: ea5e84ffd6c673dfb6cd4d0f194c1cccd2b634521fd7c242f0a27a466f039422
Contents?: true
Size: 1.55 KB
Versions: 8
Compression:
Stored size: 1.55 KB
Contents
# frozen_string_literal: true module Karafka module Instrumentation module Callbacks # Statistics callback handler # @see `WaterDrop::Instrumentation::Callbacks::Statistics` for details on why we decorate # those statistics class Statistics # @param subscription_group_id [String] id of the current subscription group # @param consumer_group_id [String] id of the current consumer group # @param client_name [String] rdkafka client name 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 @statistics_decorator = ::Karafka::Core::Monitoring::StatisticsDecorator.new end # Emits decorated statistics to the monitor # @param statistics [Hash] rdkafka statistics def call(statistics) # Emit only statistics related to our client # rdkafka does not have per-instance statistics hook, thus we need to make sure that we # emit only stats that are related to current producer. Otherwise we would emit all of # all the time. return unless @client_name == statistics['name'] ::Karafka.monitor.instrument( 'statistics.emitted', subscription_group_id: @subscription_group_id, consumer_group_id: @consumer_group_id, statistics: @statistics_decorator.call(statistics) ) end end end end end
Version data entries
8 entries across 8 versions & 1 rubygems