Class: Kafka::Prometheus::ConnectionSubscriber
- Inherits:
-
ActiveSupport::Subscriber
- Object
- ActiveSupport::Subscriber
- Kafka::Prometheus::ConnectionSubscriber
- Defined in:
- lib/kafka/prometheus.rb
Instance Method Summary collapse
-
#initialize ⇒ ConnectionSubscriber
constructor
A new instance of ConnectionSubscriber.
- #request(event) ⇒ Object
Constructor Details
#initialize ⇒ ConnectionSubscriber
Returns a new instance of ConnectionSubscriber.
43 44 45 46 47 48 49 50 |
# File 'lib/kafka/prometheus.rb', line 43 def initialize super @api_calls = Prometheus.registry.counter(:api_calls, docstring: 'Total calls', labels: [:client, :api, :broker]) @api_latency = Prometheus.registry.histogram(:api_latency, docstring: 'Latency', buckets: LATENCY_BUCKETS, labels: [:client, :api, :broker]) @api_request_size = Prometheus.registry.histogram(:api_request_size, docstring: 'Request size', buckets: SIZE_BUCKETS, labels: [:client, :api, :broker]) @api_response_size = Prometheus.registry.histogram(:api_response_size, docstring: 'Response size', buckets: SIZE_BUCKETS, labels: [:client, :api, :broker]) @api_errors = Prometheus.registry.counter(:api_errors, docstring: 'Errors', labels: [:client, :api, :broker]) end |
Instance Method Details
#request(event) ⇒ Object
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'lib/kafka/prometheus.rb', line 52 def request(event) key = { client: event.payload.fetch(:client_id), api: event.payload.fetch(:api, 'unknown'), broker: event.payload.fetch(:broker_host) } request_size = event.payload.fetch(:request_size, 0) response_size = event.payload.fetch(:response_size, 0) @api_calls.increment(labels: key) @api_latency.observe(event.duration, labels: key) @api_request_size.observe(request_size, labels: key) @api_response_size.observe(response_size, labels: key) @api_errors.increment(labels: key) if event.payload.key?(:exception) end |