|
| 1 | +# Tracing |
| 2 | + |
| 3 | +Tracing across the stack follows, as much as possible, the [Open Telemetry] |
| 4 | +specifications. Configuration environment variables are specified in the |
| 5 | +[OpenTelemetry Environment Variable Specification]. |
| 6 | + |
| 7 | +We use the [opentelemtry-go] package, which currently does not have default support |
| 8 | +for the `OTEL_TRACES_EXPORTER` environment variables. Therefore, we provide some |
| 9 | +helper functions under [`boxo/tracing`](../tracing/) to support these. |
| 10 | + |
| 11 | +In this document, we document the quirks of our custom support for the `OTEL_TRACES_EXPORTER`, |
| 12 | +as well as examples on how to use tracing, create traceable headers, and how |
| 13 | +to use the Jaeger UI. The [Gateway examples](../examples/gateway/) fully support Tracing. |
| 14 | + |
| 15 | +- [Environment Variables](#environment-variables) |
| 16 | + - [`OTEL_TRACES_EXPORTER`](#otel_traces_exporter) |
| 17 | + - [`OTLP Exporter`](#otlp-exporter) |
| 18 | + - [`Jaeger Exporter`](#jaeger-exporter) |
| 19 | + - [`Zipkin Exporter`](#zipkin-exporter) |
| 20 | + - [`File Exporter`](#file-exporter) |
| 21 | + - [`OTEL_PROPAGATORS`](#otel_propagators) |
| 22 | +- [Using Jaeger UI](#using-jaeger-ui) |
| 23 | +- [Generate `traceparent` Header](#generate-traceparent-header) |
| 24 | + |
| 25 | +## Environment Variables |
| 26 | + |
| 27 | +For advanced configurations, such as ratio-based sampling, please see also the |
| 28 | +[OpenTelemetry Environment Variable Specification]. |
| 29 | + |
| 30 | +### `OTEL_TRACES_EXPORTER` |
| 31 | + |
| 32 | +Specifies the exporters to use as a comma-separated string. Each exporter has a |
| 33 | +set of additional environment variables used to configure it. The following values |
| 34 | +are supported: |
| 35 | + |
| 36 | +- `otlp` |
| 37 | +- `jaeger` |
| 38 | +- `zipkin` |
| 39 | +- `stdout` |
| 40 | +- `file` -- appends traces to a JSON file on the filesystem |
| 41 | + |
| 42 | +Default: `""` (no exporters) |
| 43 | + |
| 44 | +### `OTLP Exporter` |
| 45 | + |
| 46 | +Unless specified in this section, the OTLP exporter uses the environment variables |
| 47 | +documented in [OpenTelemetry Protocol Exporter]. |
| 48 | + |
| 49 | +#### `OTEL_EXPORTER_OTLP_PROTOCOL` |
| 50 | +Specifies the OTLP protocol to use, which is one of: |
| 51 | + |
| 52 | +- `grpc` |
| 53 | +- `http/protobuf` |
| 54 | + |
| 55 | +Default: `"grpc"` |
| 56 | + |
| 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 | +### `Zipkin Exporter` |
| 62 | + |
| 63 | +See [Zipkin Exporter](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/sdk-environment-variables.md#zipkin-exporter). |
| 64 | + |
| 65 | +### `File Exporter` |
| 66 | + |
| 67 | +#### `OTEL_EXPORTER_FILE_PATH` |
| 68 | + |
| 69 | +Specifies the filesystem path for the JSON file. |
| 70 | + |
| 71 | +Default: `"$PWD/traces.json"` |
| 72 | + |
| 73 | +### `OTEL_PROPAGATORS` |
| 74 | + |
| 75 | +See [General SDK Configuration](https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/sdk-environment-variables.md#general-sdk-configuration). |
| 76 | + |
| 77 | +## Using Jaeger UI |
| 78 | + |
| 79 | +One can use the `jaegertracing/all-in-one` Docker image to run a full Jaeger stack |
| 80 | +and configure the Kubo daemon, or gateway examples, to publish traces to it. Here, in an |
| 81 | +ephemeral container: |
| 82 | + |
| 83 | +```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 |
| 96 | +``` |
| 97 | + |
| 98 | +Then, in other terminal, start the app that uses `boxo/tracing` internally (e.g., a Kubo daemon), with Jaeger exporter enabled: |
| 99 | + |
| 100 | +``` |
| 101 | +$ OTEL_TRACES_EXPORTER=jaeger ipfs daemon |
| 102 | +``` |
| 103 | + |
| 104 | +Finally, the [Jaeger UI] is available at http://localhost:16686. |
| 105 | + |
| 106 | +## Generate `traceparent` Header |
| 107 | + |
| 108 | +If you want to trace a specific request and want to have its tracing ID, you can |
| 109 | +generate a `Traceparent` header. According to the [Trace Context] specification, |
| 110 | +the header is formed as follows: |
| 111 | + |
| 112 | +> ``` |
| 113 | +> version-format = trace-id "-" parent-id "-" trace-flags |
| 114 | +> trace-id = 32HEXDIGLC ; 16 bytes array identifier. All zeroes forbidden |
| 115 | +> parent-id = 16HEXDIGLC ; 8 bytes array identifier. All zeroes forbidden |
| 116 | +> trace-flags = 2HEXDIGLC ; 8 bit flags. Currently, only one bit is used. See below for details |
| 117 | +> ``` |
| 118 | +
|
| 119 | +To generate a valid `Traceparent` header value, the following script can be used: |
| 120 | +
|
| 121 | +```bash |
| 122 | +version="00" # fixed in spec at 00 |
| 123 | +trace_id="$(cat /dev/urandom | tr -dc 'a-f0-9' | fold -w 32 | head -n 1)" |
| 124 | +parent_id="00$(cat /dev/urandom | tr -dc 'a-f0-9' | fold -w 14 | head -n 1)" |
| 125 | +trace_flag="01" # sampled |
| 126 | +traceparent="$version-$trace_id-$parent_id-$trace_flag" |
| 127 | +echo $traceparent |
| 128 | +``` |
| 129 | +
|
| 130 | +**NOTE**: the `tr` command behaves differently on macOS. You may want to install |
| 131 | +the GNU `tr` (`gtr`) and use it instead. |
| 132 | + |
| 133 | +Then, the value can be passed onto the request with `curl -H "Traceparent: $traceparent" URL`. |
| 134 | +If using Jaeger, you can now search by the trace with ID `$trace_id` and see |
| 135 | +the complete trace of this request. |
| 136 | + |
| 137 | +[Open Telemetry]: https://opentelemetry.io/ |
| 138 | +[opentelemetry-go]: https://github.com/open-telemetry/opentelemetry-go |
| 139 | +[Trace Context]: https://www.w3.org/TR/trace-context |
| 140 | +[OpenTelemetry Environment Variable Specification]: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/sdk-environment-variables.md |
| 141 | +[OpenTelemetry Protocol Exporter]: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/protocol/exporter.md |
| 142 | +[Jaeger UI]: https://github.com/jaegertracing/jaeger-ui |
0 commit comments