org.apache.cxf.tracing.opentelemetry.jaxrs.OpenTelemetryProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cxf-integration-tracing-opentelemetry Show documentation
Show all versions of cxf-integration-tracing-opentelemetry Show documentation
Apache CXF Distributed using OpenTelemetry
The newest version!
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.cxf.tracing.opentelemetry.jaxrs;
import java.io.IOException;
import java.lang.annotation.Annotation;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.ws.rs.container.ContainerRequestContext;
import jakarta.ws.rs.container.ContainerRequestFilter;
import jakarta.ws.rs.container.ContainerResponseContext;
import jakarta.ws.rs.container.ContainerResponseFilter;
import jakarta.ws.rs.container.ResourceInfo;
import jakarta.ws.rs.container.Suspended;
import jakarta.ws.rs.core.Context;
import jakarta.ws.rs.ext.Provider;
import org.apache.cxf.tracing.opentelemetry.AbstractOpenTelemetryProvider;
import org.apache.cxf.tracing.opentelemetry.TraceScope;
import io.opentelemetry.api.OpenTelemetry;
import io.opentelemetry.api.trace.Span;
import io.opentelemetry.api.trace.Tracer;
import io.opentelemetry.semconv.ClientAttributes;
import io.opentelemetry.semconv.NetworkAttributes;
import io.opentelemetry.semconv.UserAgentAttributes;
@Provider
public class OpenTelemetryProvider extends AbstractOpenTelemetryProvider
implements ContainerRequestFilter, ContainerResponseFilter {
@Context
private ResourceInfo resourceInfo;
@Context
private HttpServletRequest request;
public OpenTelemetryProvider(final OpenTelemetry openTelemetry, final String instrumentationName) {
super(openTelemetry, instrumentationName);
}
public OpenTelemetryProvider(final OpenTelemetry openTelemetry, final Tracer tracer) {
super(openTelemetry, tracer);
}
@Override
public void filter(final ContainerRequestContext requestContext) throws IOException {
final TraceScopeHolder holder = super.startTraceSpan(requestContext.getHeaders(),
requestContext.getUriInfo().getRequestUri(),
requestContext.getMethod());
if (request != null) {
Span span = holder.getScope().getSpan();
span.setAttribute(ClientAttributes.CLIENT_ADDRESS, request.getRemoteAddr());
span.setAttribute(ClientAttributes.CLIENT_PORT, request.getRemotePort());
span.setAttribute(NetworkAttributes.NETWORK_PEER_ADDRESS, request.getRemoteAddr());
span.setAttribute(NetworkAttributes.NETWORK_PEER_PORT, request.getRemotePort());
String protocol = request.getProtocol();
if (protocol != null && protocol.contains("/")) {
String protocolVersion = protocol.split("/")[1];
span.setAttribute(NetworkAttributes.NETWORK_PROTOCOL_VERSION, protocolVersion);
}
final String userAgent = request.getHeader("User-Agent");
if (userAgent != null) {
span.setAttribute(UserAgentAttributes.USER_AGENT_ORIGINAL, userAgent);
}
}
if (holder != null) {
requestContext.setProperty(TRACE_SPAN, holder);
}
}
@SuppressWarnings("unchecked")
@Override
public void filter(final ContainerRequestContext requestContext,
final ContainerResponseContext responseContext) {
super.stopTraceSpan(requestContext.getHeaders(), responseContext.getHeaders(),
responseContext.getStatus(),
(TraceScopeHolder)requestContext.getProperty(TRACE_SPAN));
}
@Override
protected boolean isAsyncResponse() {
for (final Annotation[] annotations : resourceInfo.getResourceMethod().getParameterAnnotations()) {
for (final Annotation annotation : annotations) {
if (annotation.annotationType().equals(Suspended.class)) {
return true;
}
}
}
return false;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy