Skip to content

Commit

Permalink
Updated to reflect the need for the protocol on the zipkin endpoint t…
Browse files Browse the repository at this point in the history
…hough it's not necessary on the otel endpoint.

Signed-off-by: Whit Waldo <[email protected]>
  • Loading branch information
WhitWaldo committed Sep 13, 2024
1 parent 69a685a commit f9a40ba
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ tracing:
otel:
endpointAddress: "otelcollector.observability.svc.cluster.local:4317"
zipkin:
endpointAddress: "zipkin.default.svc.cluster.local:9411/api/v2/spans"
endpointAddress: "http://zipkin.default.svc.cluster.local:9411/api/v2/spans"
```

The following table lists the properties for tracing:
Expand All @@ -100,7 +100,7 @@ The following table lists the properties for tracing:
| `otel.endpointAddress` | string | Set the Open Telemetry (OTEL) server address to send traces to. This may or may not require the https:// or http:// depending on your OTEL provider.
| `otel.isSecure` | bool | Is the connection to the endpoint address encrypted
| `otel.protocol` | string | Set to `http` or `grpc` protocol
| `zipkin.endpointAddress` | string | Set the Zipkin server address to send traces to. This may or may not require the https:// or http:// depending on your Zipkin provider.
| `zipkin.endpointAddress` | string | Set the Zipkin server address to send traces to. This should include the protocol (http:// or https://) on the endpoint.

##### `samplingRate`

Expand Down

0 comments on commit f9a40ba

Please sign in to comment.