Skip to content
CNCF Jaeger, a Distributed Tracing Platform
Go Shell Python Makefile Jsonnet Dockerfile
Branch: master
Clone or download
bobrik Warn about time adjustment in spans (#2052)
Time adjustment is confusing to many people, as you can see in #961.

This change adds a warning if we do any time adjustments,
so that it's at least clear that adjustments happened.

Signed-off-by: Ivan Babrou <github@ivan.computer>
Latest commit c29449a Feb 2, 2020
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.devbots Added configuration for stale bot and needs-triage (#1977) Dec 16, 2019
.github Added configuration for stale bot and needs-triage (#1977) Dec 16, 2019
cmd Fix some typo in comment (#2050) Jan 30, 2020
crossdock Use Elasticsearch 6 in xdock (#1872) Oct 23, 2019
docker-compose Make grpc reporter default and add retry (#1384) Feb 27, 2019
examples [hotrod]: Apply go fmt (#1999) Jan 3, 2020
idl @ cfd3d58 [agent] Process data loss stats from clients (#2010) Jan 15, 2020
internal/tracegen Tracegen supports generating firehose spans (#1798) Sep 19, 2019
jaeger-ui @ d02881b Bump UI to 1.6.0 (#1979) Dec 17, 2019
model Warn about time adjustment in spans (#2052) Feb 2, 2020
monitoring/jaeger-mixin Added base Grafana dashboard and Alert rules (#1745) Aug 20, 2019
pkg Add CLI flags for Kafka batching params (#2047) Jan 31, 2020
plugin Add CLI flags for Kafka batching params (#2047) Jan 31, 2020
ports Add Admin port and group all ports in one file (#1442) Mar 27, 2019
proto-gen Update grpc & http endpoint to query operations by service & spanKind ( Nov 26, 2019
scripts Publish tracegen binaries (#2022) Jan 16, 2020
storage Update storage api to support query operations by spanKind (#1942) Nov 25, 2019
swagger-gen Collect Zipkin v2 json (#518) Nov 16, 2017
thrift-gen [agent] Process data loss stats from clients (#2010) Jan 15, 2020
.codecov.yml Fix coverage limits Apr 26, 2019
.gitignore Publish tracegen binaries (#2022) Jan 16, 2020
.gitmodules Update Makefile build_ui target to lerna structure (#798) Jul 18, 2018
.travis.yml Deploy to Docker from master even without a tag (#1953) Nov 30, 2019
ADOPTERS.md Add Tencent into adopters (#1759) Dec 22, 2019
CHANGELOG.md Fix some syntax errors in CHANGELOG.md (#1994) Jan 2, 2020
CODEOWNERS Update codeowners to jaeger-maintainers team (#2034) Jan 24, 2020
CODE_OF_CONDUCT.md Add CNCF Code of Conduct (#415) Sep 22, 2017
CONTRIBUTING.md Guideline for release milestones and merging PRs (#1911) Nov 8, 2019
CONTRIBUTING_GUIDELINES.md Replacing the wrong link with the correct. (#1416) Mar 10, 2019
DCO Add DCO and updade CONTRIBUTING.md accordingly Sep 17, 2017
GOVERNANCE.md Explain where to find current maintainers Jul 15, 2019
Gopkg.lock Add common TLS configuration (#1838) Jan 28, 2020
Gopkg.toml Add common TLS configuration (#1838) Jan 28, 2020
LICENSE Update to Apache 2.0 License (#391) Sep 9, 2017
Makefile Publish tracegen binaries (#2022) Jan 16, 2020
NOTICE Add NOTICE (#1716) Aug 18, 2019
README.md Fix some grammar (#1831) Dec 22, 2019
RELEASE.md Guideline for release milestones and merging PRs (#1911) Nov 8, 2019
doc.go Add Jaeger copyright to all Go files that don't have it (#1738) Aug 18, 2019

README.md

Gitter chat OpenTracing-1.0 Project+Community stats

Build Status Coverage Status FOSSA Status CII Best Practices

Jaeger - a Distributed Tracing System

Jaeger, inspired by Dapper and OpenZipkin, is a distributed tracing platform created by Uber Technologies and donated to Cloud Native Computing Foundation. It can be used for monitoring microservices-based distributed systems:

  • Distributed context propagation
  • Distributed transaction monitoring
  • Root cause analysis
  • Service dependency analysis
  • Performance / latency optimization

See also:

Jaeger is hosted by the Cloud Native Computing Foundation (CNCF) as the 7th top-level project (graduated in October 2019). If you are a company that wants to help shape the evolution of technologies that are container-packaged, dynamically-scheduled and microservices-oriented, consider joining the CNCF. For details about who's involved and how Jaeger plays a role, read the CNCF Jaeger incubation announcement and Jaeger graduation announcement.

Features

High Scalability

Jaeger backend is designed to have no single points of failure and to scale with the business needs. For example, any given Jaeger installation at Uber is typically processing several billions of spans per day.

Native support for OpenTracing

Jaeger backend, Web UI, and instrumentation libraries have been designed from the ground up to support the OpenTracing standard.

  • Represent traces as directed acyclic graphs (not just trees) via span references
  • Support strongly typed span tags and structured logs
  • Support general distributed context propagation mechanism via baggage

OpenTelemetry

On 28-May-2019, the OpenTracing and OpenCensus projects announced their intention to merge into a new CNCF project called OpenTelemetry. The Jaeger and OpenTelemetry projects have different goals. OpenTelemetry aims to provide APIs and SDKs in multiple languages to allow applications to export various telemetry data out of the process, to any number of metrics and tracing backends. The Jaeger project is primarily the tracing backend that receives tracing telemetry data and provides processing, aggregation, data mining, and visualizations of that data. The Jaeger client libraries do overlap with OpenTelemetry in functionality. OpenTelemetry will natively support Jaeger as a tracing backend and eventually might make Jaeger native clients unnecessary. For more information please refer to a blog post Jaeger and OpenTelemetry.

Multiple storage backends

Jaeger supports two popular open source NoSQL databases as trace storage backends: Cassandra and Elasticsearch. There is also embedded database support using Badger. There are ongoing community experiments using other databases, such as ScyllaDB, InfluxDB, Amazon DynamoDB. Jaeger also ships with a simple in-memory storage for testing setups.

Modern Web UI

Jaeger Web UI is implemented in Javascript using popular open source frameworks like React. Several performance improvements have been released in v1.0 to allow the UI to efficiently deal with large volumes of data and to display traces with tens of thousands of spans (e.g. we tried a trace with 80,000 spans).

Cloud Native Deployment

Jaeger backend is distributed as a collection of Docker images. The binaries support various configuration methods, including command line options, environment variables, and configuration files in multiple formats (yaml, toml, etc.) Deployment to Kubernetes clusters is assisted by Kubernetes templates and a Helm chart.

Observability

All Jaeger backend components expose Prometheus metrics by default (other metrics backends are also supported). Logs are written to standard out using the structured logging library zap.

Security

Third-party security audits of Jaeger are available in https://github.com/jaegertracing/security-audits. Please see Issue #1718 for the summary of available security mechanisms in Jaeger.

Backwards compatibility with Zipkin

Although we recommend instrumenting applications with OpenTracing API and binding to Jaeger client libraries to benefit from advanced features not available elsewhere, if your organization has already invested in the instrumentation using Zipkin libraries, you do not have to rewrite all that code. Jaeger provides backwards compatibility with Zipkin by accepting spans in Zipkin formats (Thrift or JSON v1/v2) over HTTP. Switching from Zipkin backend is just a matter of routing the traffic from Zipkin libraries to the Jaeger backend.

Related Repositories

Documentation

Instrumentation Libraries

Deployment

Components

Building From Source

See CONTRIBUTING.

Contributing

See CONTRIBUTING.

Maintainers

Below are the official maintainers of the Jaeger project. Please use @jaegertracing/jaeger-maintainers to tag them on issues / PRs.

Some repositories under jaegertracing org have additional maintainers.

Project Status Bi-Weekly Meeting

The Jaeger contributors meet bi-weekly, and everyone is welcome to join. Agenda and meeting details here.

Roadmap

See https://www.jaegertracing.io/docs/roadmap/

Questions, Discussions, Bug Reports

Reach project contributors via these channels:

Adopters

Jaeger as a product consists of multiple components. We want to support different types of users, whether they are only using our instrumentation libraries or full end to end Jaeger installation, whether it runs in production or you use it to troubleshoot issues in development.

Please see ADOPTERS.md for some of the organizations using Jaeger today. If you would like to add your organization to the list, please comment on our survey issue.

License

Apache 2.0 License.

You can’t perform that action at this time.