
io.opentelemetry.javaagent.instrumentation.apachehttpclient.v5_0.WrappingStatusSettingResponseHandler Maven / Gradle / Ivy
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.javaagent.instrumentation.apachehttpclient.v5_0;
import static io.opentelemetry.javaagent.instrumentation.apachehttpclient.v5_0.ApacheHttpClientSingletons.instrumenter;
import io.opentelemetry.context.Context;
import io.opentelemetry.context.Scope;
import java.io.IOException;
import org.apache.hc.core5.http.ClassicHttpRequest;
import org.apache.hc.core5.http.ClassicHttpResponse;
import org.apache.hc.core5.http.HttpException;
import org.apache.hc.core5.http.io.HttpClientResponseHandler;
public class WrappingStatusSettingResponseHandler implements HttpClientResponseHandler {
final Context context;
final Context parentContext;
final ClassicHttpRequest request;
final HttpClientResponseHandler handler;
public WrappingStatusSettingResponseHandler(
Context context,
Context parentContext,
ClassicHttpRequest request,
HttpClientResponseHandler handler) {
this.context = context;
this.parentContext = parentContext;
this.request = request;
this.handler = handler;
}
@Override
public T handleResponse(ClassicHttpResponse response) throws IOException, HttpException {
instrumenter().end(context, request, response, null);
// ending the span before executing the callback handler (and scoping the callback handler to
// the parent context), even though we are inside of a synchronous http client callback
// underneath HttpClient.execute(..), in order to not attribute other CLIENT span timings that
// may be performed in the callback handler to the http client span (and so we don't end up with
// nested CLIENT spans, which we currently suppress)
try (Scope ignored = parentContext.makeCurrent()) {
return handler.handleResponse(response);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy