Changelog History
Page 3
-
v1.22.0 Changes
February 23, 2021Backend Changes
๐ฅ Breaking Changes
โ Remove deprecated TLS flags (#2790, @albertteoh):
--cassandra.tls
is replaced by--cassandra.tls.enabled
--cassandra-archive.tls
is replaced by--cassandra-archive.tls.enabled
--collector.grpc.tls
is replaced by--collector.grpc.tls.enabled
--collector.grpc.tls.client.ca
is replaced by--collector.grpc.tls.client-ca
--es.tls
is replaced by--es.tls.enabled
--es-archive.tls
is replaced by--es-archive.tls.enabled
--kafka.consumer.tls
is replaced by--kafka.consumer.tls.enabled
--kafka.producer.tls
is replaced by--kafka.producer.tls.enabled
--reporter.grpc.tls
is replaced by--reporter.grpc.tls.enabled
โ Remove deprecated flags of Query Server
--query.port
and--query.host-port
, please use dedicated HTTP--query.http-server.host-port
(defaults to:16686
) and gRPC--query.grpc-server.host-port
(defaults to:16685
) host-ports flags instead (#2772, @rjs211)- By default, if no flags are set, the query server starts on the dedicated ports. To use common port for gRPC and HTTP endpoints, the host-port flags have to be explicitly set
โ Remove deprecated CLI flags (#2751, @LostLaser):
--collector.http-port
is replaced by--collector.http-server.host-port
--collector.grpc-port
is replaced by--collector.grpc-server.host-port
--collector.zipkin.http-port
is replaced by--collector.zipkin.host-port
โ Remove deprecated flags
--health-check-http-port
&--admin-http-port
, please use--admin.http.host-port
(#2752, @pradeepnnv)โ Remove deprecated flag
--es.max-num-spans
, please use--es.max-doc-count
(#2482, @BernardTolosajr)โ Remove deprecated flag
--jaeger.tags
, please use--agent.tags
(#2753, @yurishkuro)โ Remove deprecated Cassandra flags (#2789, @albertteoh):
--cassandra.enable-dependencies-v2
- Jaeger will automatically detect the version of the dependencies table--cassandra.tls.verify-host
- please use--cassandra.tls.skip-host-verify
instead
โ Remove incorrectly scoped downsample flags from the query service (#2782, @joe-elliott)
--downsampling.hashsalt
removed from jaeger-query--downsampling.ratio
removed from jaeger-query
๐ New Features
โ Add TLS Support for gRPC and HTTP endpoints of the Query and Collector servers (#2337, #2772, #2798, @rjs211)
- If TLS in enabled on either or both of gRPC or HTTP endpoints, the gRPC host-port and the HTTP host-port have to be different
- If TLS is disabled on both endpoints, common HTTP and gRPC host-port can be explicitly set using the following host-port flags respectively:
- Query:
--query.http-server.host-port
and--query.grpc-server.host-port
- Collector:
--collector.http-server.host-port
and--collector.grpc-server.host-port
- Query:
โ Add support for Kafka SASL/PLAIN authentication via SCRAM-SHA-256 or SCRAM-SHA-512 mechanism (#2724, @WalkerWang731)
[agent] Add metrics to show connections status between agent and collectors (#2657, @WalkerWang731)
โ Add plaintext as a supported kafka auth option (#2721, @pdepaepe)
โ Add ability to use JS file for UI configuration (#123 from jaeger-ui) (#2707, @th3M1ke)
๐ Support Elasticsearch ILM for managing jaeger indices (#2796, @bhiravabhatla)
๐ณ Push official images to quay.io, in addition to Docker Hub (#2783, @Ashmita152)
โ Add status command (#2684, @sniperking1234)
- Usage:
bash $ ./cmd/collector/collector-darwin-amd64 status {"status":"Server available","upSince":"2021-02-19T17:57:12.671902+11:00","uptime":"25.241233383s"}
- Usage:
๐ Support configurable date separator for Elasticsearch index names (#2637, @sniperking1234)
๐ Bug fixes, Minor Improvements
- ๐ Use workaround for windows x509.SystemCertPool() (#2756, @Ashmita152)
- ๐ฐ Guard against mal-formed payloads received by the agent, potentially causing high memory utilization (#2780, @jpkrohling)
- ๐ฆ Expose cache TTL for ES span writer index+service (#2737, @necrolyte2)
- Copy spans from memory store (#2720, @bobrik)
- [pkg/queue] Add
StartConsumersWithFactory
function (#2714, @mx-psi) - ๐ Fix potential cross-site scripting issue (#2697, @yurishkuro)
- โก๏ธ Updated gRPC Storage Plugin README with example (#2687, @js8080)
- Deduplicate collector tags (#2658, @Betula-L)
- โ Add latency metrics on collector HTTP endpoints (#2664, @dimitarvdimitrov)
- ๐ Fix collector panic due to sarama sdk (#2654, @Betula-L)
- ๐ Handle collector Start error (#2647, @albertteoh)
- ๐ป [anonymizer] Save trace in UI format (#2629, @yurishkuro)
๐ป UI Changes
- ๐ UI pinned to version 1.13.0. The changelog is available here v1.13.0
-
v1.21.0 Changes
November 13, 2020Backend Changes
๐ New Features
- ๐ New debug Docker images for Jaeger backends are included in the distribution (#2545, @Ashmita152)
- A utility to anonymize a trace for sharing publicly (#2621, #2585, @Ashmita152)
- Sampling strategies file can be loaded from a URL, not just a file path (#2519, @goku321)
- ๐ง Configuration parameters can be inspected at runtime via
/debug/vars
admin endpoint (#2496, @dstdfx) - ๐ OTLP-proto encoding for Kafka supported in the OTEL Ingester (#2580, @XSAM)
- ๐ป Display backend & UI versions in Jaeger UI
- Inject version info into index.html (#2547, @yurishkuro)
- Added jaeger ui version to about menu (#606, @alanisaac)
๐ Bug fixes, Minor Improvements
- โก๏ธ Update x/text to v0.3.4 (#2625, @objectiser)
- โก๏ธ Update CodeQL to latest best practices (#2615, @jhutchings1)
- โฌ๏ธ Bump opentelemetry-collector to v0.14.0 (#2617, @Vemmy124)
- โฌ๏ธ Bump Badger to v1.6.2 (#2613, @Ackar)
- ๐ Fix sarama consumer deadlock (#2587, @albertteoh)
- Avoid deadlock if Stop is called before Serve (#2608, @chlunde)
- Return buffers to pool on network errors or queue overflow (#2609, @chlunde)
- Clarify deadlock panic message (#2605, @yurishkuro)
- ๐ fix: don't create tags w/ empty name for internal zipkin spans (#2596, @mzahor)
- TBufferedServer: Avoid channel close/send race on Stop (#2583, @chlunde)
- โฌ๏ธ Bumped OpenTelemetry Collector to v0.12.0 (#2562, @jpkrohling)
- ๐ง Disable Zipkin server if port/address is not configured (#2554, @yurishkuro)
- [hotrod] Add links to traces (#2536, @yurishkuro)
- 0๏ธโฃ OTel Cassandra/Elasticsearch Exporter queue defaults (#2533, @joe-elliott)
- โก๏ธ [otel] Update jaeger-lib to v2.4.0 (#2538, @dstdfx)
- โ Remove unnecessary ServiceName index seek if tags query is available (#2535, @burmanm)
- โก๏ธ Update static UI assets path in contrib doc (#2548, @albertteoh)
๐ป UI Changes
- ๐ UI pinned to version 1.12.0. The changelog is available here v1.12.0
-
v1.20.0 Changes
September 29, 2020Backend Changes
๐ฅ Breaking Changes
๐ง Configurable ES doc count (#2453, @albertteoh)
The
--es.max-num-spans
flag has been deprecated in favour of--es.max-doc-count
.--es.max-num-spans
is marked for removal in v1.21.0 as indicated in the flag description.If both
--es.max-num-spans
and--es.max-doc-count
are set, the lesser of the two will be used.The use of
--es.max-doc-count
(which defaults to 10,000) will limit the results from all Elasticsearch queries by the configured value, limiting counts for Jaeger UI:- Services
- Operations
- Dependencies (edges in a dependency graph)
- Span fetch size for a trace
๐ The default value for the flag
query.max-clock-skew-adjustment
has changed to0s
, meaning that the clock skew adjustment is now disabled by default. See #1459.
๐ New Features
- ๐ Grpc plugin archive storage support (#2317, @m8rge)
- Separate Ports for GRPC and HTTP requests in Query Server (#2387, @rjs211)
- ๐ง Configurable ES doc count (#2453, @albertteoh)
- โ Add storage metrics to OTEL, metrics by span service name (#2431, @pavolloffay)
๐ Bug fixes, Minor Improvements
- 0๏ธโฃ Increase coverage on otel/app/defaultconfig and otel/app/defaultcomponents (#2515, @joe-elliott)
- ๐ Use OTEL Kafka Exporter/Receiver Instead of Jaeger Core (#2494, @joe-elliott)
- ๐ Fix OTEL kafka receiver/ingester panic (#2512, @pavolloffay)
- 0๏ธโฃ Disable clock-skew-adjustment by default. (#2513, @jpkrohling)
- ๐ Fix ES OTEL status code (#2501, @pavolloffay)
- OTel: Factored out Config Factory (#2495, @joe-elliott)
- ๐ Fix failing ServerInUseHostPort test on MacOS (#2477, @albertteoh)
- ๐ Fix unmarshalling in OTEL badger (#2488, @pavolloffay)
- ๐ Improve UI placeholder message (#2487, @yurishkuro)
- Translate OTEL instrumentation library to ES DB model (#2484, @pavolloffay)
- โ Add partial retry capability to OTEL ES exporter. (#2456, @pavolloffay)
- ๐ Log deprecation warning only when deprecated flags are set (#2479, @pavolloffay)
- Clean-up Badger's trace-not-found check (#2481, @yurishkuro)
- 0๏ธโฃ Run the jaeger-agent as a non-root user by default (#2466, @chgl)
- Regenerate certificates to use SANs instead of Common Name (#2461, @albertteoh)
- ๐ Support custom port in cassandra schema creation (#2472, @MarianZoll)
- Consolidated OTel ES IndexNameProviders (#2458, @joe-elliott)
- โ Add positive confirmation that Agent made a connection to Collector (โฆ (#2423, @BernardTolosajr)
- ๐ Propagate TraceNotFound error from grpc storage plugins (#2455, @joe-elliott)
- ๐ Use new ES reader implementation in OTEL (#2441, @pavolloffay)
- โก๏ธ Updated grpc-go to v1.29.1 (#2445, @jpkrohling)
- โ Remove olivere elastic client from OTEL (#2448, @pavolloffay)
- ๐ Use queue retry per exporter (#2444, @pavolloffay)
- โ Add context.Context to WriteSpan (#2436, @yurishkuro)
- ๐ Fix mutex unlock in storage exporters (#2442, @pavolloffay)
- โ Add Grafana integration example (#2408, @fktkrt)
- ๐ Fix TLS flags settings in jaeger OTEL receiver (#2438, @pavolloffay)
- โ Add context to dependencies endpoint (#2434, @yoave23)
- ๐ Fix error equals (#2429, @albertteoh)
๐ป UI Changes
- ๐ UI pinned to version 1.11.0. The changelog is available here v1.11.0
-
v1.19.2 Changes
August 26, 2020๐จ Upgrade to a working UI version before React refactoring.
-
v1.19.1 Changes
August 26, 2020โช Revert UI back to 1.9 due to a bug jaegertracing/jaeger-ui#628
-
v1.19.0 Changes
August 26, 2020Known Issues
๐ The pull request #2297 aimed to add TLS support for the gRPC Query server but the flag registration is missing, so that this feature can't be used at the moment. A fix is planned for the next Jaeger version (1.20).
Backend Changes
๐ New Features
- Reload TLS certificates on change (#2389, @pavolloffay)
- โ Add --kafka.producer.batch-min-messages collector flag (#2371, @prymitive)
- ๐ง Make UDP socket buffer size configurable (#2336, @kbarukhov)
- 0๏ธโฃ Enable batch and queued retry processors by default (#2330, @pavolloffay)
- โ Add trace anonymizer prototype (#2328, @yurishkuro)
- โ Add native OTEL ES exporter (#2295, @pavolloffay)
- Define busy error type in processor (#2314, @pavolloffay)
- ๐ Use gRPC instead of tchannel in hotrod (#2307, @pavolloffay)
- ๐ TLS support for gRPC Query server (#2297, @jan25)
๐ Bug fixes, Minor Improvements
- Check missing server URL in ES OTEL client (#2411, @pavolloffay)
- ๐ Fix Elasticsearch version in ES OTEL writer (#2409, @pavolloffay)
- ๐ Fix go vet warnings on Go 1.15 (#2401, @prymitive)
- โ Add new Elasticsearch reader implementation (#2364, @pavolloffay)
- Only add the collector port if it was not explicitly set (#2396, @joe-elliott)
- ๐ Fix panic in collector when Zipkin server is shutdown (#2392, @Sreevani871)
- โก๏ธ Update validity of TLS certificates to 3650 days (#2390, @rjs211)
- โ Added span and trace id to hotrod logs (#2384, @joe-elliott)
- ๐ Jaeger agent logs "0" whenever sampling strategies are requested (#2382, @jpkrohling)
- ๐ Fix shutdown order for collector components (#2381, @Sreevani871)
- Serve jquery-3.1.1.min.js locally (#2378, @chaseSpace)
- โ Use a single shared set of CA, client & server keys/certs for testing (#2343, @rjs211)
- ๐ fix null pointer in jaeger-spark-dependencies (#2327, @moolen)
- ๐ Rename ARCH to TARGETARCH for multi platform build by docker buildx (#2320, @morlay)
- Mask passwords when written as json (#2302, @objectiser)
๐ป UI Changes
- ๐ UI pinned to version 1.10.0. The changelog is available here v1.10.0
-
v1.18.1 Changes
June 19, 2020Backend Changes
๐ Security Fixes
- ๐ CVE-2020-10750: jaegertracing/jaeger: credentials leaked to container logs (@chlunde)
โ Breaking Changes
๐ New Features
- โ Add ppc64le support (#2293, @Siddhesh-Ghadi)
- ๐ฆ Expose option to enable TLS when sniffing an Elasticsearch Cluster (#2263, @jennynilsen)
- 0๏ธโฃ Enable OTEL receiver by default (#2279, @pavolloffay)
- โ Add Badger OTEL exporter (#2269, @pavolloffay)
- โ Add all-in-one OTEL component (#2262, @pavolloffay)
- โ Add arm64 support for binaries and docker images (#2176, @MrXinWang)
- โ Add Zipkin OTEL receiver (#2247, @pavolloffay)
๐ Bug fixes, Minor Improvements
- โ Remove experimental flag from rollover (#2290, @pavolloffay)
- ๐ Move ES dependencies index mapping to JSON template file (#2285, @pavolloffay)
- โฌ๏ธ Bump go-plugin to 1.3 (#2261, @yurishkuro)
- ๐ป Ignore chmod events on UI config watcher. (#2254, @rubenvp8510)
- Normalize CLI flags to use host:port addresses (#2212, @ohdearaugustin)
- โ Add kafka receiver flags to ingester (#2251, @pavolloffay)
- ๐ง Configure Jaeger receiver and exporter by flags (#2241, @pavolloffay)
๐ป UI Changes
-
v1.18.0 Changes
May 14, 2020Backend Changes
๐ฅ Breaking Changes
โ Remove Tchannel between agent and collector (#2115, #2112, @pavolloffay)
Remove
Tchannel
port (14267) from collector andTchannel
reporter from agent.These flags were removed from agent:
--collector.host-port --reporter.tchannel.discovery.conn-check-timeout --reporter.tchannel.discovery.min-peers --reporter.tchannel.host-port --reporter.tchannel.report-timeout
These flags were removed from collector:
--collector.port
Normalize CLI flags to use host:port addresses (#1827, @annanay25)
Flags previously accepting listen addresses in any other format have been deprecated:
collector.port
is superseded bycollector.tchan-server.host-port
collector.http-port
is superseded bycollector.http-server.host-port
collector.grpc-port
is superseded bycollector.grpc-server.host-port
collector.zipkin.http-port
is superseded bycollector.zipkin.host-port
admin-http-port
is superseded byadmin.http.host-port
๐ New Features
- โ Add grpc storage plugin OTEL exporter (#2229, @pavolloffay)
- โ Add OTEL ingester component (#2225, @pavolloffay)
- โ Add Kafka OTEL receiver/ingester (#2221, @pavolloffay)
- Create Jaeger OTEL agent component (#2216, @pavolloffay)
- ๐ง Merge hardcoded/default configuration with OTEL config file (#2211, @pavolloffay)
- ๐ Support periodic refresh of sampling strategies (#2188, @defool)
- โ Add Elasticsearch OTEL exporter (#2140, @pavolloffay)
- โ Add Cassandra OTEL exporter (#2139, @pavolloffay)
- โ Add Kafka OTEL storage exporter (#2135, @pavolloffay)
- Clock skew config (#2119, @joe-elliott)
- Introduce OpenTelemetry collector (#2086, @pavolloffay)
- ๐ Support regex tags search for Elasticseach backend (#2049, @annanay25)
๐ Bug fixes, Minor Improvements
- Do not skip service/operation indexing for firehose spans (#2242, @yurishkuro)
- โ Add build information to OTEL binaries (#2237, @pavolloffay)
- 0๏ธโฃ Enable service default sampling param (#2230, @defool)
- โ Add Jaeger OTEL agent to docker image upload (#2227, @ning2008wisc)
- ๐ Support adding process tags in OTEL via env variable (#2220, @pavolloffay)
- โก๏ธ Bump OTEL version and update exporters to use new API (#2196, @pavolloffay)
- ๐ Support sampling startegies file flag in OTEL collector (#2195, @pavolloffay)
- โ Add zipkin receiver to OTEL collector (#2181, @pavolloffay)
- โ Add Dockerfile for OTEL collector and publish latest tag (#2167, @pavolloffay)
- ๐ง Run OTEL collector without configuration file (#2148, @pavolloffay)
- โก๏ธ Update gocql to support AWS MCS (#2133, @johanneswuerbach)
- Return appropriate gRPC errors/codes to indicate request status (#2132, @yurishkuro)
- โ Remove tchannel port from dockerfile and test (#2118, @pavolloffay)
- โ Remove tchannel between agent and collector (#2115, @pavolloffay)
- ๐ฆ Move all tchannel packages to a single top level package (#2112, @pavolloffay)
๐ป UI Changes
- ๐ UI pinned to version 1.9.0. The changelog is available here v1.9.0
-
v1.17.1 Changes
March 13, 2020Backend Changes
๐ Bug fixes, Minor Improvements
- ๐ Fix enable Kafka TLS when TLS auth is specified #2107, @pavolloffay)
- Migrate project to go modules #2098, @pavolloffay)
- Do not skip service/operation indexing for firehose spans #2090, @yurishkuro)
- Close the span writer on main (#2096, @jpkrohling)
- ๐ Improved graceful shutdown - Collector (#2076, @jpkrohling)
- ๐ Improved graceful shutdown - Agent (#2031, @jpkrohling)
๐ป UI Changes
- ๐ UI pinned to version 1.8.0. The changelog is available here v1.8.0
-
v1.17.0 Changes
February 24, 2020Backend Changes
๐ New Features
- ๐ป [tracegen] Add service name as a command line option (#2080, @kevinearls)
- ๐ Allow the Configuration of Additional Headers on the Jaeger Query HTTP API (#2056, @joe-elliott)
- Warn about time adjustment in tags (#2052, @bobrik)
- โ Add CLI flags for Kafka batching params (#2047, @apm-opentt)
- โ Added support for dynamic queue sizes (#1985, @jpkrohling)
- [agent] Process data loss stats from clients (#2010, @yurishkuro)
- โ Add /api/sampling endpoint in collector (#1990, @RickyRajinder)
- โ Add basic authentication to Kafka storage (#1983, @chandresh-pancholi)
- 0๏ธโฃ Make operation_strategies part also be part of default_strategy (#1749, @rutgerbrf)
๐ Bug fixes, Minor Improvements
- โฌ๏ธ Upgrade gRPC to 1.26 (#2077, @yurishkuro)
- โ Remove pkg/errors from dependencies (#2073, @yurishkuro)
- โก๏ธ Update dependencies, pin grpc<1.27 (#2072, @yurishkuro)
- ๐จ Refactor collector mains (#2060, @jpkrohling)
- Clarify that "kafka" is not a real storage backend (#2066, @yurishkuro)
- โ Added -trimpath option to go build (#2064, @kadern0)
- ๐ Use memory size flag to activate dyn queue size feature (#2059, @jpkrohling)
- โ Add before you push to the queue to prevent race condition on size (#2044, @joe-elliott)
- Count received batches from conforming clients (#2030, @yurishkuro)
- [agent] Do not increment data loss counters on the first client batch (#2028, @yurishkuro)
- ๐ Allow raw port numbers for UDP servers (#2025, @yurishkuro)
- Publish tracegen (#2022, @jpkrohling)
- ๐ง Build binaries for Linux on IBM Z / s390x architecture (#1982, @prankkelkar)
- ๐ฒ Admin/Query: Log the real port instead of the provided one to enable the use of port 0 (#2002, @ChadiEM)
- Split agent's HTTP server and handler (#1996, @yurishkuro)
- ๐ Clean-up collector handlers builder (#1991, @yurishkuro)
- โ Added 'resize' operation to BoundedQueue (#1948, @jpkrohling)
- โ Add common TLS configuration (#1838, @backjo)
๐ป UI Changes
- ๐ UI pinned to version 1.7.0. The changelog is available here v1.7.0