You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -28,6 +28,7 @@ The following emojis are used to highlight certain changes:
28
28
### Removed
29
29
30
30
- 🛠 `bitswap` & `bitswap/server` no longer provide to content routers, instead you can use the `provider` package because it uses a datastore queue and batches calls to ProvideMany.
31
+
- 🛠 `tracing``jaeger` exporter has been removed due to it's deprecation and removal from upstream, you should use `otlp` exporter instead. See the [docs](./docs/tracing.md) for an example.
Copy file name to clipboardExpand all lines: docs/tracing.md
+17-20Lines changed: 17 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,6 @@ to use the Jaeger UI. The [Gateway examples](../examples/gateway/) fully support
15
15
-[Environment Variables](#environment-variables)
16
16
-[`OTEL_TRACES_EXPORTER`](#otel_traces_exporter)
17
17
-[`OTLP Exporter`](#otlp-exporter)
18
-
-[`Jaeger Exporter`](#jaeger-exporter)
19
18
-[`Zipkin Exporter`](#zipkin-exporter)
20
19
-[`File Exporter`](#file-exporter)
21
20
-[`OTEL_PROPAGATORS`](#otel_propagators)
@@ -34,7 +33,6 @@ set of additional environment variables used to configure it. The following valu
34
33
are supported:
35
34
36
35
-`otlp`
37
-
-`jaeger`
38
36
-`zipkin`
39
37
-`stdout`
40
38
-`file` -- appends traces to a JSON file on the filesystem
@@ -54,10 +52,6 @@ Specifies the OTLP protocol to use, which is one of:
54
52
55
53
Default: `"grpc"`
56
54
57
-
### `Jaeger Exporter`
58
-
59
-
See [Jaeger Exporter](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/sdk-environment-variables.md#jaeger-exporter).
60
-
61
55
### `Zipkin Exporter`
62
56
63
57
See [Zipkin Exporter](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/sdk-environment-variables.md#zipkin-exporter).
@@ -81,24 +75,27 @@ and configure the Kubo daemon, or gateway examples, to publish traces to it. Her
81
75
ephemeral container:
82
76
83
77
```console
84
-
$ docker run --rm -it --name jaeger \
85
-
-e COLLECTOR_ZIPKIN_HOST_PORT=:9411 \
86
-
-p 5775:5775/udp \
87
-
-p 6831:6831/udp \
88
-
-p 6832:6832/udp \
89
-
-p 5778:5778 \
90
-
-p 16686:16686 \
91
-
-p 14268:14268 \
92
-
-p 14269:14269 \
93
-
-p 14250:14250 \
94
-
-p 9411:9411 \
95
-
jaegertracing/all-in-one
78
+
$ docker run -d --rm --name jaeger \
79
+
-e COLLECTOR_OTLP_ENABLED=true \
80
+
-e COLLECTOR_ZIPKIN_HOST_PORT=:9411 \
81
+
-p 5775:5775/udp \
82
+
-p 6831:6831/udp \
83
+
-p 6832:6832/udp \
84
+
-p 5778:5778 \
85
+
-p 16686:16686 \
86
+
-p 14250:14250 \
87
+
-p 14268:14268 \
88
+
-p 14269:14269 \
89
+
-p 4317:4317 \
90
+
-p 4318:4318 \
91
+
-p 9411:9411 \
92
+
jaegertracing/all-in-one
96
93
```
97
94
98
95
Then, in other terminal, start the app that uses `boxo/tracing` internally (e.g., a Kubo daemon), with Jaeger exporter enabled:
0 commit comments