io.opentelemetry.javaagent.instrumentation.netty.v3_8.client.NettyHttpClientAttributesGetter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of opentelemetry-javaagent-netty-3.8 Show documentation
Show all versions of opentelemetry-javaagent-netty-3.8 Show documentation
Instrumentation of Java libraries using OpenTelemetry.
/*
* Copyright The OpenTelemetry Authors
* SPDX-License-Identifier: Apache-2.0
*/
package io.opentelemetry.javaagent.instrumentation.netty.v3_8.client;
import static io.opentelemetry.javaagent.instrumentation.netty.v3_8.util.HttpSchemeUtil.getScheme;
import static io.opentelemetry.semconv.SemanticAttributes.NetTransportValues.IP_TCP;
import static io.opentelemetry.semconv.SemanticAttributes.NetTransportValues.IP_UDP;
import io.opentelemetry.instrumentation.api.instrumenter.http.HttpClientAttributesGetter;
import io.opentelemetry.javaagent.instrumentation.netty.v3_8.HttpRequestAndChannel;
import io.opentelemetry.javaagent.instrumentation.netty.v3_8.util.ChannelUtil;
import java.net.InetSocketAddress;
import java.net.SocketAddress;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.List;
import javax.annotation.Nullable;
import org.jboss.netty.channel.socket.DatagramChannel;
import org.jboss.netty.handler.codec.http.HttpResponse;
import org.jboss.netty.handler.codec.http.HttpVersion;
final class NettyHttpClientAttributesGetter
implements HttpClientAttributesGetter {
@Override
@Nullable
public String getUrlFull(HttpRequestAndChannel requestAndChannel) {
try {
String hostHeader = getHost(requestAndChannel);
String target = requestAndChannel.request().getUri();
URI uri = new URI(target);
if ((uri.getHost() == null || uri.getHost().equals("")) && hostHeader != null) {
return getScheme(requestAndChannel) + "://" + hostHeader + target;
}
return uri.toString();
} catch (URISyntaxException e) {
return null;
}
}
private String getHost(HttpRequestAndChannel requestAndChannel) {
List values = getHttpRequestHeader(requestAndChannel, "host");
return values.isEmpty() ? null : values.get(0);
}
@Override
public String getHttpRequestMethod(HttpRequestAndChannel requestAndChannel) {
return requestAndChannel.request().getMethod().getName();
}
@Override
public List getHttpRequestHeader(HttpRequestAndChannel requestAndChannel, String name) {
return requestAndChannel.request().headers().getAll(name);
}
@Override
public Integer getHttpResponseStatusCode(
HttpRequestAndChannel requestAndChannel, HttpResponse response, @Nullable Throwable error) {
return response.getStatus().getCode();
}
@Override
public List getHttpResponseHeader(
HttpRequestAndChannel requestAndChannel, HttpResponse response, String name) {
return response.headers().getAll(name);
}
@Override
public String getTransport(
HttpRequestAndChannel requestAndChannel, @Nullable HttpResponse response) {
return requestAndChannel.channel() instanceof DatagramChannel ? IP_UDP : IP_TCP;
}
@Override
public String getNetworkTransport(
HttpRequestAndChannel requestAndChannel, @Nullable HttpResponse response) {
return ChannelUtil.getNetworkTransport(requestAndChannel.channel());
}
@Override
public String getNetworkProtocolName(
HttpRequestAndChannel requestAndChannel, @Nullable HttpResponse httpResponse) {
return requestAndChannel.request().getProtocolVersion().getProtocolName();
}
@Override
public String getNetworkProtocolVersion(
HttpRequestAndChannel requestAndChannel, @Nullable HttpResponse httpResponse) {
HttpVersion version = requestAndChannel.request().getProtocolVersion();
if (version.getMinorVersion() == 0) {
return Integer.toString(version.getMajorVersion());
}
return version.getMajorVersion() + "." + version.getMinorVersion();
}
@Nullable
@Override
public String getServerAddress(HttpRequestAndChannel requestAndChannel) {
return null;
}
@Nullable
@Override
public Integer getServerPort(HttpRequestAndChannel requestAndChannel) {
return null;
}
@Override
@Nullable
public InetSocketAddress getNetworkPeerInetSocketAddress(
HttpRequestAndChannel requestAndChannel, @Nullable HttpResponse response) {
SocketAddress address = requestAndChannel.channel().getRemoteAddress();
if (address instanceof InetSocketAddress) {
return (InetSocketAddress) address;
}
return null;
}
}