- Bump okhttp to 4.9.3 (#834)
- Bump apache thrift version to 0.15.0
- Update gson from 2.8.6 -> 2.9.0
- Restore support for setting null as a tag value (Resolves #823) (#824) -- amirhadadi
- Optimize TextMapCodec::contextFromString (#799) -- amirhadadi
- jaeger-thrift: Shade kotlin runtime + other libraries (#801) -- ohadgur
- Drop support for Java 1.6 and 1.7 (#802) -- Yuri Shkuro
- Reduce locking in JaegerSpan (#795) -- amirhadadi
- Fix repeated error logging for HttpSender (#785) -- Radek Kraus
- Update the version of libthrift to 0.14.1 (#772). (#774) -- Robert Greig
- Add unit tests and crossdock in github actions (#775) -- Ashmita
- Fix dead loop in QueueProcessor (#763) -- Yaoliang Chen
- Upgrade okhttp to 4.9.0 (#749) -- Yuri Shkuro
- Do not strip leading zeros from trace IDs (#746) -- Yuri Shkuro
- Document how to encrypt travis secrets (#744) -- Pavol Loffay
- Process sampling tag before handling other tags (fixes #738) -- Audrius Butkevicius>
- Add 'w3c' to valid JAEGER_PROPAGATION options -- by chgl
- Allow SystemClock to recognize non-GA OpenJDK versions -- Andriy Redko
- Log SenderExceptions the first time they occur in a row (#729) -- Phillip Schichtel
- Make UdpSender lazy to be able to recover from early DNS issues (#726) -- Phillip Schichtel
Same as 1.3.1 (due to issues with artifact publishing)
- Add MDCScopeManager for correlating logs with trace context (#718) -- Avi Maslati
- Fix publishing jaeger-thrift shadow artifact (#704) -- Zbigniew Halas
- Do not encode span context in HTTP_HEADERS format (#721) -- Clément MATHIEU
- Support microseconds timestamp accuracy for JDK 9 and above (#712) -- Idan Sheinberg
- Ignore case when extracting W3C TraceContext (#711) -- Yanming Zhou
- Support jaeger-debug-id in TraceContextCodec (#701) -- Yanming Zhou
- Avoid warning if traceparent not present (#698) -- Yanming Zhou
- Add W3C TraceContext codec/propagation (#694, @pavolloffay)
- Configuration do not cache sender instance (#685, @ehsavoie)
- Prevent a shutdown hook from being removed in JaegerTracer when a shutdown is in progress (#689, @TomasHofman)
- Fix ThriftSender max span size check (#670, @yhpark)
- Unregister shutdown hook when tracer is closed (#679, @TomasHofman)
- Bump okhttp and zipkin reporter versions (#674, @pavolloffay)
- Update libthrift to 0.13.0 (#672, @ehsavoie)
- Upgrade GSON and slf4j-api version (#663, @chandresh-pancholi)
- Add logging for SenderException in RemoteReporter (#662, @esukram)
- Enhance logs for non-standard sender factory usage (#657, @vpbhargav)
- Cleanup operation samplers if absent from strategy response (#655, @guo0693)
- Update micrometer dependency and fix test (#650, @objectiser)
- Add public method
isFinished()
on JaegerSpan (#634, @dougEfresh)
- Support OpenTracing 0.32.0 and 0.33.0 (#623, @pavolloffay)
- Add manifest entries to jaeger-thrift (#641, @objectiser)
- Add binary codec (#613, @ColinSullivan1)
- Concurrency improvements to RemoteControlledSampler (#609, @yborovikov)
- Adding support for opentracing 0.32 (#567, @dougEfresh)
- exclude apache httpclient deps from libthrift (#596, @t-8ch)
- Handle all exceptions during queue processing (#591, @dignati)
- Added option to disable the shutdown hook (#586, @supersven)
- Updated thrift to 0.12 (#587, @jpkrohling)
- Point to tchannel-based docker-compose (#573, @yurishkuro)
- Update reporter success metric on append in RemoteReporter (#572, @objectiser)
- Always close HTTP responses in HttpSender (#571, @mpetazzoni)
- Normalise metric names (#564, @objectiser)
- Refer to valid
sampler type
values (doc link) (#557, @sjoerdtalsma)
- Support 128bit trace ids (#507, @hypnoce)
- Fix repeated resolving of sender in configuration (#555, @pavolloffay)
- Parse configuration coded programmatically (#550, @pavolloffay)
- Close tracer on JVM shutdown (#546, @jpkrohling)
- Implement
TracerFactory
(#527, @jpkrohling) - Fix sampling when
jaeger-baggage
header is given (#542, @yurishkuro)
- Support
jaeger-baggage
header for ad-hoc baggage (#525, @yurishkuro)
- Fine-tune bootstrap logging (#531, @jpkrohling)
- Add specification version to jars, and impl-title/version & spec version to javadoc and sources jars (#533, @objectiser)
- Move jaeger-thrift shadow jar to its own classifier (#526, @jpkrohling)
- Mark gson field in HttpSamplingManager as ignored for toString (#528, @jpkrohling)
- Use abstract factory pattern to allow subclassing core Jaeger types (#509, @isaachier)
- Use SenderFactory classloader for ServiceLoader (#523, @dbuchhorn)
- Reduce visibility of TextMapCodec.contextFromString to package scope (#519, @isaachier)
- Move contextFromString out of JaegerSpanContext into TextMapCodec (#517, @isaachier)
- Add possibility to specify serviceName with 'fromEnv' (#510, @jpkrohling)
- Fix concurrent modification exception on logs and tags (#500, @pavolloffay)
- Remove unwanted classes from jaeger-thrift shadowed jar (#498, @mdvorak)
- Do not log null spancontext references (#487, @objectiser)
- Fix jaeger-client dependency jaeger-thrift no-shadow artifact (#486, @jpkrohling)
- Add "serialVersionUID" for exceptions to avoid InvalidClassException (#481, @quaff)
- Add jaeger-client module (#479, @jpkrohling)
- Fix wrong package declaration (#480, @quaff)
- Make GuaranteedThroughputSampler public (#457, @quaff)
- Fix version retrieval from jaeger.properties (#478, @jpkrohling)
WARNING: this release breaks compatibility with previous versions.
The most disruptive changes are:
-
The module
jaeger-core
is not bringing Thrift senders anymore. Instead, client applications should now depend on thejaeger-thrift
module, which will bring thejaeger-core
transitively -
The first step in establishing the public API was made: all classes were moved to an
internal
package, to signal that they are not supposed to be used directly. Classes not in theinternal
package are part of the new public API and compatibility should followsemver
. Clients currently using theTracer.Builder
mechanism are encouraged to switch over to theConfiguration
approach. If you face a situation that cannot be done with this approach, do let us know. -
Related to the point above: we now have also a SPI package, intended to be consumed by service providers (components implementing
Sender
s,Reporter
s,Sampler
s). If you are implementing a service, do let us know! We need your feedback before moving forward with this API. -
Jaeger types related to the OpenTracing standard were renamed, to avoid name clashes:
io.jaegertracing.Tracer
is nowJaegerTracer
.
Complete list of changes:
- Define some classes internal (#470, @jpkrohling)
- Change return types from Jaeger Span/Tracer/Context to Jaeger types (#469, @jpkrohling)
- Rename Jaeger's Span to JaegerSpan (#454, @jpkrohling)
- Upgrades internals to Zipkin v2 library (#456, @adriancole)
- Make jaeger-thrift's shaded JAR the default one (#461, @jpkrohling)
- Treat gauge.update() parameter as new value, not delta (#463, @mdouaihy)
- Adjust thrift shadow configuration and version (#458, @jpkrohling)
- Remove dependency from jaeger-core to jaeger-thrift (#449, @jpkrohling)
- Deprecate B3 codec contructor (#440, @pavolloffay)
- Add baggage to B3 codec (#438, @pavolloffay)
- Remove deprecated API - HttpSender and RemoteBaggageManager (#431, @pavolloffay)
- Load metrics factory service from classpath if available (#433, @jpkrohling)
- Remove unused exception (#428, @pavolloffay)
- Add builder patter to RemoteBaggageManager and deprecate some APIs (#424, @pavolloffay)
- Use string builder instead of string format (#425, @pavolloffay)
- Remove deprecated APIs (#414, @pavolloffay)
- Implement Zipkin 2 JSON Sender (#399, @keitwb)
- Fix deploy stage on travis (#421, @pavolloffay)
- Bump versions of gradle plugins (#418, @pavolloffay)
- Bump gradle wrapper to 4.7 (#419, @pavolloffay)
- Fix flaky test in RemoteReporterTest (#415, @pavolloffay)
- Do not use deprecated Tracer.Builder constructor internally (#417, @pavolloffay)
- Polish configuration API (#411, @pavolloffay)
- Do not use deprecated APIs internally (#416, @pavolloffay)
- Do not use deprecated APIs internally (#412, @pavolloffay)
- Remove dependency on brave-http (#410, @pavolloffay)
- Remove tchannel from crossdock (#405, @yurishkuro)
- Add Node.js client to crossdock matrix (#404, @yurishkuro)
- Remove tchannel as tested transport in crossdock (#403, @yurishkuro)
- Define dependencies versions in top level build.gradle (#402, @objectiser)
- Enable development and dependency versions to be overridden from the commandline (#397)
- Add tests for metrics exposed via prometheus (#386)
- Change groupid to io.jaegertracing and remove instrumentations (#375). Sources with com.uber.jaeger have been moved to https://github.com/jaegertracing/legacy-client-java
- Remove reference to JAEGER_DISABLE_GLOBAL_TRACER (#379)
- Avoid direct access to apache thrift from jaeger-core via transitive dependency through jaeger-thrift (#374)
- Make some methods in HttpSender.Builder public (#376)
- Avoid host lookups if trace tags have already been provided (#371)
- Update the ReporterConfig to set Sender Correctly (#370)
- Fix for issue 366, fix deprecated code in example (#367)
- Consolidate codec exception handling and logs exceptions (#362)
- Deprecated StatsReporter (#349) <Juraci Paixão Kröhling>
- Ignores B3 headers if invalid values are provided (#355) <Juraci Paixão Kröhling>
- Refactor public constructor API (#346)
- Expand exception logs (#168)
- Deprecate JerseyServerFilter#JerseyServerFilter(Tracer, TraceContext) (#352)
- Micrometer support (#335) <Juraci Paixão Kröhling>
- Metrics are now consistent with Go (#335) <Juraci Paixão Kröhling>
- Updated Trace Resolver (#347)
- Remove apache instrumentation dependence on jaeger-context (#320)
- Remove JAX-RS2 instrumentation dependence on TracingUtils/jaeger-context (#319)
- Fix ClassCastException when a wrapped span impl is activated instead of the Jaeger Span (#327)
- Remove shadow dependency from jaeger-b3 (#309)
- Adding annotated filter priorities for Jersey filters (#329)
- Handle baggage null values better (#308)
- Upgrade to OpenTracing API v0.31.0 (#313)
0.22.0-RC3 (2017-12-08)
- Remove dependency on GlobalTracer (#302)
- Add configuration support for B3 trace context propagation (#296)
- Prevent Span from being reported twice on multiple calls to finish() (#299)
- Do not store client span in thread-local in apache and jax-rs2 instrumentation (#297)
- Add auth options to HttpSender (#285) <Juraci Paixão Kröhling>
- Break apart functionality of TracingRequestInterceptor (#248)
- Split out the jaxrs2 filters (#273)
- Add TraceContext backed by ActiveSpanSource (#266)
- Update to Apache License v. 2 (#262)
- Use io.opentracing.GlobalTracer instead of singleton in Configuration (#255)
- Tracer implements Closeable (#242)
- Fix: span builder should accept null in asChildOf (#243)
- Support baggage restrictions (#217, #229)
- Fix concurrency bug when using multiple senders (#233)
- Support span log fields in zipkin sender (#226)
- Use okhttp for HTTP sender (#224)
- Upgrade to OpenTracing Java 0.30.0 with in-process propagation support (#188)
- Add Process IP to jaeger.thrift (#197)
- Implement HTTP sender for jaeger.thrift (#194)
- TraceResolver support (#175)
- Do not truncate reported strings (#174)
- Bump OpenTracing version to 0.22.0 (#164)
- Use jaeger.thrift data model (#142)
- Enable process level tags to be associated with the tracer (#143)
- Add adaptive sampler
- Run RemoteReporter's flush timer in daemon thread (#124)
- Bump opentracingVersion to 0.21.0 (#137)
- Add Java 6 compatibility (#132)
- Fix bug where server spans were incorrectly marked as local components
- Tighten checks for marking a span as a RPC
- Add a Configuration#closeTracer() method
- Add Builder to TextMapCodec
- Bump up zipkin to 1.16.2
- Automatically add span names for jersey instrumentation
- Add init logging
- Add a Tracer.close() method
- Fill in
Host
on all annotations when reporting to Zipkin - Downgrade to libthrift 0.9.2
- Publish a shaded jar with libthrift 0.9.2 packaged
- Bump up zipkin versions
- Fix http url tag on jaxrs2 filters
- Add convenience setter for metrics
- Expose interceptor callbacks and custom operation name for extension classes
- Fix bug with dropwizard config parsing
- Support Apache HttpClient
- fixed crossdock notImplementedError propagation
- refactored configuration
- added google-formatter
- Support debug traces via HTTP header "jaeger-debug-id"
- Introduce Clock interface for time measurements
- Use nano-time for measuring duration
- Remove powermock dependency
- Upgrade to OT 0.15
- Exclude test classes from published jars
- Default peer service name to blank as it is required in Thrift Endpoint (fixes #45)
- Add jaeger-zipkin module that allows on the wire propagation with B3-xxx headers and uses zipkin-reporter
- Report sampling strategy as root span tags
sampler.type
andsampler.param
. In case of probabilistic sampling (most frequently used strategy), the values would beprobabilistic
and the sampling probability [0 .. 1], respectively. - Record host name as
jaeger.hostname
tag on the first-in-process spans (i.e. root spans and rpc-server spans) - Record the version of the Jaeger library as
jaeger.version
tag
- Reduce the size of published jars
- Upgrade to OpenTracing API 0.12, with immutable SpanContext