Sha256: aeeadfef24c74c212086cee7fadbee66076fb1471ca7a2821345e922a9e1859a
Contents?: true
Size: 1.08 KB
Versions: 2
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true # Copyright The OpenTelemetry Authors # # SPDX-License-Identifier: Apache-2.0 module OpenTelemetry module Instrumentation module Sidekiq module Middlewares module Client # TracerMiddleware propagates context and instruments Sidekiq client # by way of its middleware system class TracerMiddleware def call(_worker_class, job, _queue, _redis_pool) tracer.in_span( job['wrapped']&.to_s || job['class'], attributes: { 'messaging.message_id' => job['jid'], 'messaging.destination' => job['queue'] }, kind: :producer ) do |span| OpenTelemetry.propagation.text.inject(job) span.add_event('created_at', timestamp: job['created_at']) yield end end private def tracer Sidekiq::Instrumentation.instance.tracer end end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems