opentracing-ruby icon indicating copy to clipboard operation
opentracing-ruby copied to clipboard

OpenTracing API for Ruby

Results 2 opentracing-ruby issues
Sort by recently updated
recently updated
newest added

Currently it always read global setting. I can do. ``` span.set_tag("service.name", "other-service") ``` It changes the service in Datadog but not in Jaeger How about.. ``` OpenTracing.start_span("operation_name", service: "other-service") ```...