Skip to content

Commit 2086d06

Browse files
author
Ignacio Bonafonte
authored
Merge pull request #367 from kevinearls/update-jaeger-links
Update Jaeger links to current version
2 parents f3866da + b175986 commit 2086d06

File tree

1 file changed

+15
-11
lines changed

1 file changed

+15
-11
lines changed

Examples/Simple Exporter/README.md

Lines changed: 15 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,23 @@
11
### Simple Exporter
22

3-
This example shows the Jaeger an Stdout exporters in action using a MultiSpanExporter. It also adds support for SignPostIntegration, so running this app in `Instruments` will show the span creation and duration
3+
This example shows the Jaeger and Stdout exporters in action using a MultiSpanExporter. It also adds support for SignPostIntegration, so running this app in `Instruments` will show the span creation and duration
44

5-
The sample expects a local Jaeger installation as explained in [Jaeger docs](https://www.jaegertracing.io/docs/1.16/getting-started/#all-in-one):
5+
The sample expects a local Jaeger installation as explained in [Jaeger docs](https://www.jaegertracing.io/docs/1.41/getting-started/#all-in-one):
66

77
```
88
docker run -d --name jaeger \
9-
-e COLLECTOR_ZIPKIN_HTTP_PORT=9411 \
10-
-p 5775:5775/udp \
11-
-p 6831:6831/udp \
12-
-p 6832:6832/udp \
13-
-p 5778:5778 \
14-
-p 16686:16686 \
15-
-p 14268:14268 \
16-
-p 9411:9411 \
17-
jaegertracing/all-in-one:1.16
9+
-e COLLECTOR_ZIPKIN_HOST_PORT=:9411 \
10+
-e COLLECTOR_OTLP_ENABLED=true \
11+
-p 6831:6831/udp \
12+
-p 6832:6832/udp \
13+
-p 5778:5778 \
14+
-p 16686:16686 \
15+
-p 4317:4317 \
16+
-p 4318:4318 \
17+
-p 14250:14250 \
18+
-p 14268:14268 \
19+
-p 14269:14269 \
20+
-p 9411:9411 \
21+
jaegertracing/all-in-one:1.41
1822
```
1923

0 commit comments

Comments
 (0)