feat(tvix/tracing): http trace propagation
Introduces a helper function within tvix-tracing that returns a reqwest tracing middleware that will ingest the traceparent if otlp is enabled. It is feature flagged in tvix-tracing so not every consumer of that library automatically has reqwest in its dependencies. Tested using netcat to verify that the `traceparent` header is there if otlp is enabled and missing if otlp feature is disabled. Change-Id: I5abccae777b725f5ff7382e3686165383c477a39 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11886 Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
This commit is contained in:
parent
7f8da5e6a9
commit
618aacaa61
10 changed files with 302 additions and 17 deletions
|
|
@ -31,7 +31,7 @@ use tvix_castore::{
|
|||
/// TODO: what about reading from nix-cache-info?
|
||||
pub struct NixHTTPPathInfoService<BS, DS> {
|
||||
base_url: url::Url,
|
||||
http_client: reqwest::Client,
|
||||
http_client: reqwest_middleware::ClientWithMiddleware,
|
||||
|
||||
blob_service: BS,
|
||||
directory_service: DS,
|
||||
|
|
@ -45,7 +45,9 @@ impl<BS, DS> NixHTTPPathInfoService<BS, DS> {
|
|||
pub fn new(base_url: url::Url, blob_service: BS, directory_service: DS) -> Self {
|
||||
Self {
|
||||
base_url,
|
||||
http_client: reqwest::Client::new(),
|
||||
http_client: reqwest_middleware::ClientBuilder::new(reqwest::Client::new())
|
||||
.with(tvix_tracing::propagate::reqwest::tracing_middleware())
|
||||
.build(),
|
||||
blob_service,
|
||||
directory_service,
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue