-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: tracing, improved metrics, go-libp2p-kad-dht and boxo upgrade, …
…request timeouts (#87) * fix: larger duration buckets for better visibility * feat: log accept header * fix: move instrumentation to boxo * feat: add tracing with auth token * feat: add 30 second request timeout * chore: remove replace directive * chore: add missing funcSampler * chore: remove request timeout this isn't working too well. We need to look more deeply into this * chore: update changelog * chore: go mod tidy * chore: go-libp2p-kad-dht v0.28.1 * chore: latest boxo#720 * chore: mod tidy * chore: boxo main with ipfs/boxo#720 and ipfs/boxo#718 * Apply suggestions from code review Co-authored-by: Marcin Rataj <[email protected]> * fix: typo --------- Co-authored-by: Daniel N <[email protected]> Co-authored-by: Marcin Rataj <[email protected]>
- Loading branch information
1 parent
4903832
commit c4859ec
Showing
8 changed files
with
318 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
## Tracing | ||
|
||
Tracing across the stack follows, as much as possible, the [Open Telemetry] | ||
specifications. Configuration environment variables are specified in the | ||
[OpenTelemetry Environment Variable Specification] where possible. The | ||
[Boxo Tracing] documentation is the basis for tracing here. | ||
|
||
> [!NOTE] | ||
> A major distinction from the more [general tracing enabled in boxo][Boxo Tracing] is that when | ||
> tracing is enabled it is restricted to flows through HTTP Gateway requests, rather | ||
> than also included background processes. | ||
### Fractional Sampling | ||
|
||
To sample a % of requests set [`SOMEGUY_SAMPLING_FRACTION`](environment-variables.md#someguy_sampling_fraction) to a value between `0` and `1`. | ||
|
||
### Per Request | ||
|
||
Per-request tracing is possible when a non-empty [`SOMEGUY_TRACING_AUTH`](environment-variables.md#someguy_tracing_auth) is set in Someguy and when there are both valid | ||
[Authorization](headers.md#authorization) and [`Traceparent`](headers.md#traceparent) HTTP headers passed in the request. | ||
|
||
### Per-request tracing example: | ||
|
||
```console | ||
$ export SOMEGUY_TRACING_AUTH=CHANGEME-tracing-auth-secret # use value from Someguy config | ||
$ export CID=bafybeigdyrzt5sfp7udm7hu76uh7y26nf3efuylqabf3oclgtqy55fbzdi | ||
$ curl -H "Authorization: $SOMEGUY_TRACING_AUTH" -H "Traceparent: 00-$(openssl rand -hex 16)-00$(openssl rand -hex 7)-01" http://127.0.0.1:8090/routing/v1/providers/$CID -v -o /dev/null | ||
... | ||
> Authorization: CHANGEME-tracing-auth-secret | ||
> Traceparent: 00-b617dc6b6e302ccbabe0115eac80320b-00033792c7de8fc6-01 | ||
... | ||
```` | ||
|
||
Now you can search for `trace_id = b617dc6b6e302ccbabe0115eac80320b` to find the trace. | ||
|
||
[Boxo Tracing]: https://github.com/ipfs/boxo/blob/main/docs/tracing.md | ||
[Open Telemetry]: https://opentelemetry.io/ | ||
[OpenTelemetry Environment Variable Specification]: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/configuration/sdk-environment-variables.md | ||
[Trace Context]: https://www.w3.org/TR/trace-context |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.