Tags: mmimica/opentracing-java
Tags
V0.33.0 (opentracing#348) * Remove Deprecated members. (opentracing#339) * Set version to 0.33.1-SNAPSHOT. (opentracing#345) * Update CHANGELOG to include v0.33.0 (opentracing#347)
V0.32.0 (opentracing#337) * Deprecate the StringTag.set() overload taking a StringTag. (opentracing#262) * Implement Trace Identifiers. (opentracing#280) * Bump JaCoCo to use a Java 10 friendly version (opentracing#306) * Remove finish span on close (opentracing#301) * Deprecate finishSpanOnClose on activation. * Add ScopeManager.activeSpan() and Tracer.activateSpan(). * Clarify the API changes and deprecations. * Add an error reporting sample to opentracing-testbed. * Simple layer on top of ByteBuffer for BINARY format. (opentracing#276) * Add generic typed setTag/withTag (opentracing#311) * Allow injecting into maps of type Map<String,Object> (opentracing#310) * Add simple registerIfAbsent to global tracer (opentracing#289) * Split Inject and Extract Builtin interfaces (opentracing#316) * Deprecate ScopeManager.active() (opentracing#326) * Make Tracer extends Closable. (opentracing#329) * Do not make isRegistered() synchronized. (opentracing#333) * Deprecate AutoFinishScopeManager (opentracing#335)
Deprecate ScopeManager.active() (opentracing#326) * Deprecate ScopeManager.active() and update related code. * Rename common_request_handler to concurrent_common_request_handler. * Add a testbed case for request handlers having no storage for Scope.
Update our GH_TOKEN for Travis. It seems the previous one expired or was discarded.
v0.31.0 (opentracing#249) Changes from v0.30: * BaseSpan and ActiveSpan are simplified into a single Span class. * Scope replaces ActiveSpan, removing the continuation concept. There is no longer a capture phase. Scopes are only activated and then closed. * ScopeManager replaces ActiveSpanSource, and is expected to be passed to the tracer at initialization time. * ScopeManager.activate(Span,bool) creates a Scope for the current context. The finishOnClose flag optionally calls Span.finish() on Scope.close(). * ScopeManager.active() returns the Scope associated with the current context. * Tracer.activeSpan() returns the current value of Tracer.scopeManager().active().span() as a convenience. * ThreadLocalScopeManager replaces ThreadLocalActiveSpanSource. It still uses thread-local storage for tracking active spans, but removes the reference counting used previously for span lifetime handling.
PreviousNext