All Downloads are FREE. Search and download functionalities are using the official Maven repository.

feign.opentracing.FeignSpanDecorator Maven / Gradle / Ivy

There is a newer version: 0.4.1
Show newest version
package feign.opentracing;

import java.util.HashMap;
import java.util.Map;

import feign.Request;
import feign.Response;
import io.opentracing.BaseSpan;
import io.opentracing.tag.Tags;

/**
 * Decorate span by adding tags/logs or change operation name.
 *
 * 

Do not finish span or throw any exceptions! * * @author Pavol Loffay */ public interface FeignSpanDecorator { /** * Decorate span before {@link feign.Client#execute(Request, Request.Options)} is called on the delegating client. * * @param request request * @param options request options * @param span client span */ void onRequest(Request request, Request.Options options, BaseSpan span); /** * Decorate span after {@link feign.Client#execute(Request, Request.Options)} is called on the delegating client. * * @param response response * @param options request options * @param span client span */ void onResponse(Response response, Request.Options options, BaseSpan span); /** * Decorate span if exception is thrown during {@link feign.Client#execute(Request, Request.Options)}. * * @param exception exception * @param request request * @param span client span */ void onError(Exception exception, Request request, BaseSpan span); /** * This decorator adds set of standard tags to the span. */ class StandardTags implements FeignSpanDecorator { @Override public void onRequest(Request request, Request.Options options, BaseSpan span) { Tags.COMPONENT.set(span, "feign"); Tags.HTTP_URL.set(span, request.url()); Tags.HTTP_METHOD.set(span, request.method()); } @Override public void onResponse(Response response, Request.Options options, BaseSpan span) { Tags.HTTP_STATUS.set(span, response.status()); } @Override public void onError(Exception exception, Request request, BaseSpan span) { Tags.ERROR.set(span, Boolean.TRUE); span.log(errorLogs(exception)); } public static Map errorLogs(Exception ex) { Map errorLogs = new HashMap<>(2); errorLogs.put("event", Tags.ERROR.getKey()); errorLogs.put("error.object", ex); return errorLogs; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy