dd-trace-rb
dd-trace-rb copied to clipboard
Datadog Tracing Ruby Client
I have a need to instrument Roda framework, so I took at stab at it locally and just ported it into the Gem. Feel free to rip it apart and...
This PR adds a new module to `ddtrace`. `MethodTracing` allows developers to quickly add tracing to their classes without muddying up their code with trace blocks. ## Example usage ```ruby...
The Rails integration currently does not produce controller spans for Rails controllers that short-circuit themselves in a `before_action` clause e.g. `head :no_content`. This is because tracing is injected at the...
Attempts to lay a foundation for implementing #312. This is still major work-in-progress, but I wanted to get a PR opened to start conversations (especially regarding if there are other...
We'd like to track these headers, but need to strip out PII.
With Sidekiq 5 (released in 2017), job logging is no longer a middleware, and now sits above all middleware in the stack. I think this is why `Datadog.tracer.active_correlation` is not...
Would be nice to support https://github.com/toland/patron
Under Rails 6.0.1 we are only seeing SET and DELETE opertations for the ActiveSupport Cache integration. It looks like it caused by extra methods that are added in Rails' `LocalStore`...
Hello. I'm building a gem for tracing Ruby: . This gem is vendor agnostic and the goal is to provide vendor agnostic interfaces sufficient for distributed tracing including across fibers...