Skip to content

Commit

Permalink
Removes Zipkin from quick start and tracer list (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
adriancole authored and tedsuo committed Apr 6, 2018
1 parent 399db01 commit 4eb01e5
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 26 deletions.
4 changes: 0 additions & 4 deletions _data/tracers.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,5 @@
category: Tracers
array:
- name: Zipkin
url: http://zipkin.io
icon: img/tracers/zipkin_small.png

- name: Lightstep
url: http://lightstep.com
icon: img/tracers/lightstep.png
Expand Down
2 changes: 1 addition & 1 deletion _docs/pages/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Both of these examples assume that Jaeger is running locally via Docker:
$ docker run -d -p 5775:5775/udp -p 16686:16686 jaegertracing/all-in-one:latest
```

These can be adapted to use Zipkin or any other OpenTracing-compatible Tracer easily by adjusting the initialization code to match the particular implementation.
These can be adapted to use other OpenTracing-compatible Tracer easily by adjusting the initialization code to match the particular implementation.

### Java

Expand Down
5 changes: 0 additions & 5 deletions _docs/pages/supported-tracers.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,5 @@
# Supported Tracer Implementations

## Zipkin

[Zipkin](http://zipkin.io/) supports OpenTracing in various languages via community contributions. There is an experimental [bridge from Brave (Zipkin Java) instrumentation to OpenTracing](https://github.com/openzipkin/brave-opentracing), a [Javascript implementation](https://github.com/costacruise/zipkin-javascript-opentracing) and a [Go implementation zipkin-go-opentracing](https://github.com/openzipkin/zipkin-go-opentracing). Some of Jaeger's client libraries (see below) can be configured to be compatible with Zipkin backend and wire format.


## CNCF Jaeger

[Jaeger \\ˈyā-gər\\](http://jaegertracing.io) is a distributed tracing system, originally open sourced by [Uber Technologies](https://eng.uber.com/distributed-tracing/). It provides distributed context propagation, distributed transaction monitoring, root cause analysis, service dependency analysis, and performance / latency optimization. Built with OpenTracing support from inception, Jaeger includes OpenTracing client libraries in several languages, including [Java](https://github.com/uber/jaeger-client-java), [Go](https://github.com/uber/jaeger-client-go), [Python](https://github.com/uber/jaeger-client-python), [Node.js](https://github.com/uber/jaeger-client-node), and [C++](https://github.com/jaegertracing/cpp-client). It is a [Cloud Native Computing Foundation](https://www.cncf.io/) member project.
Expand Down
8 changes: 4 additions & 4 deletions _includes/bash-window.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@

<div class="bash-window__content">
<pre>
# Start Zipkin locally
$ docker run -d -p 9411:9411 openzipkin/zipkin
# Start Jaeger locally
$ docker run -d -p 5775:5775/udp -p 16686:16686 jaegertracing/all-in-one:latest
$ export DOCKER_IP=`docker-machine ip $(docker-machine active)`
$ cd $GOPATH/src

Expand All @@ -18,9 +18,9 @@
$ cd github.com/opentracing-contrib/examples/go
$ go run ./trivial.go $DOCKER_IP

# Visualize the tracing instrumentation in Zipkin by
# Visualize the tracing instrumentation in Jaeger by
# clicking on "Find Traces" in the UI.
$ open http://$DOCKER_IP:9411/
$ open http://$DOCKER_IP:16686/

# Read the source!
$ vim trivial.go
Expand Down
2 changes: 0 additions & 2 deletions _sass/_components/_logo-bar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,6 @@ $logo-bar-scale: 14px;
margin-right: 10px;
}

&[src*="zipkin_small.png"],
&[src*="instana"] {
max-height: $logo-bar-scale * 0.8;
}
Expand Down Expand Up @@ -139,7 +138,6 @@ $logo-bar-scale: 14px;
max-height: $logo-bar-scale * 1.25;
}

&[src*="zipkin_small.png"],
&[src*="instana"] {
max-height: $logo-bar-scale * 0.6;
}
Expand Down

This file was deleted.

Binary file removed img/tracers/zipkin.png
Binary file not shown.
Binary file removed img/tracers/zipkin_small.png
Binary file not shown.

0 comments on commit 4eb01e5

Please sign in to comment.