Simon Schmid
Simon Schmid
looks like the API has changed between in v1.7.0 (https://github.com/DataDog/dd-trace-rb/pull/2352), here's my updated code: ```rb class ClientTracingMiddleware include Sidekiq::ClientMiddleware def initialize @propagation = Datadog::Tracing::Distributed::Datadog.new(fetcher: Datadog::Tracing::Distributed::Fetcher) end def call(_worker_class, job, _queue,...
@taltcher I put the `ClientTracingMiddleware` and `ServerTracingMiddleware` in the `lib/` folder of my rails project, the `Sidekiq.configure_client` and `Sidekiq.configure_server` are in `config/initializers/sidekiq.rb` You can also put all of them inside...