openzipkin/zipkin

Zipkin is a distributed tracing system

View on GitHub ↗Jump to charts ↓

Summary Information

Updated 43 minutes ago
Added to GitGenius on September 3rd, 2026
Created on June 6th, 2012
Open Issues & Pull Requests: 175 (+0)
GitHub issues: Enabled
Number of forks: 3,101
Total Stargazers: 17,458 (+1)
Total Subscribers: 661 (+0)

Repository Insights (GitGenius)

Median issue/PR response: 17.3 days
Mean response time: 44.7 days
90th percentile: 91.8 days
Tracked items: 16

Charts & Analytics

Fetching additional details & charts...

Issue Activity (beta)

Open issues: 12
New in 7 days: 0
Closed in 7 days: 0
Avg open age: 607 days
Stale 30+ days: 10
Stale 90+ days: 8

Recent activity

Opened in 7 days: 0
Closed in 7 days: 0
Comments in 7 days: 0
Events in 7 days: 0

Top labels

  • bug (12)
  • enhancement (7)
  • help wanted (2)
  • collector (1)
  • techdebt (1)
  • ui (1)

Most active issues this week

No issue events were indexed in the last 7 days.

Detailed Description

Zipkin is a distributed tracing system that helps gather timing data needed to troubleshoot latency problems in service architectures.

Zipkin collects trace data from instrumented applications and provides a UI for querying and analyzing that data. Users can look up traces by ID, or query based on service name, operation name, tags, and duration. The system summarizes interesting metrics such as the percentage of time spent in each service and whether operations failed. A dependency diagram shows how many traced requests passed through each application, helping identify aggregate behavior including error paths and calls to deprecated services. Applications report trace data to Zipkin through various transports including HTTP, Kafka, Apache ActiveMQ, gRPC, RabbitMQ, and Apache Pulsar. The collected data can be stored in-memory or persistently using backends such as Apache Cassandra or Elasticsearch.

Zipkin suits teams running microservice architectures who need visibility into request flows and latency bottlenecks. The project offers a slim build variant that starts faster and uses less disk space, supporting in-memory and Elasticsearch storage but omitting messaging transports like Kafka and RabbitMQ. The core library is lightweight at 155k and requires only Java 8 or later, avoiding direct dependencies on JSON libraries to prevent conflicts with application code. Most users will integrate Zipkin through existing instrumentation libraries rather than the core library directly. The server requires Java 17 or later and can be deployed as a self-contained executable jar or via Docker.

The project's issue tracker shows sustained activity focused on bug fixes, feature enhancements, and technical debt reduction.