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

com.wl4g.infra.integration.feign.istio.context.IstioTracingContextCoprocessor Maven / Gradle / Ivy

The newest version!
/*
 * Copyright (C) 2017 ~ 2025 the original author or authors.
 *  Technology CO.LTD.
 * All rights reserved.
 *
 * Licensed 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.
 * 
 * Reference to website: https://wl4g.github.io
 */
package com.wl4g.infra.integration.feign.istio.context;

import static com.wl4g.infra.common.collection.CollectionUtils2.safeList;
import static com.wl4g.infra.common.lang.Assert2.notNullOf;
import static org.apache.commons.lang3.StringUtils.startsWithIgnoreCase;

import java.util.Enumeration;

import javax.servlet.http.HttpServletRequest;
import javax.validation.constraints.NotNull;

import com.wl4g.infra.integration.feign.core.context.internal.FeignContextCoprocessor;
import com.wl4g.infra.integration.feign.istio.config.FeignSpringBootIstioProperties;

import feign.RequestTemplate;

/**
 * {@link IstioTracingContextCoprocessor}
 * 
 * @author James Wong <[email protected]>
 * @version v1.0 2021-04-27
 * @since v2.0
 * @see https://github.com/wl4g-k8s/spring-cloud-kubernetes-with-istio#discovery-client-and-istio
 * @see see:https://blog.csdn.net/caoyi1207/article/details/92775211
 */
public class IstioTracingContextCoprocessor implements FeignContextCoprocessor {

    private FeignSpringBootIstioProperties config;

    public IstioTracingContextCoprocessor(FeignSpringBootIstioProperties config) {
        this.config = notNullOf(config, "config");
    }

    // see:https://github.com/wl4g-k8s/spring-cloud-kubernetes-with-istio#discovery-client-and-istio
    // see:https://blog.csdn.net/caoyi1207/article/details/92775211
    @Override
    public void prepareConsumerExecution(@NotNull RequestTemplate template, HttpServletRequest request) {
        // More(eg:Jaeger+Istio) tracing parameter through to the next service.
        Enumeration e = request.getHeaderNames();
        if (e != null) {
            while (e.hasMoreElements()) {
                String name = e.nextElement();
                if (isTracingHeaders(name)) {
                    template.header(name, request.getHeader(name));
                }
            }
        }
    }

    private boolean isTracingHeaders(String name) {
        for (String prefix : safeList(config.getTracing().getPrefixHttpHeaders())) {
            if (startsWithIgnoreCase(name, prefix)) {
                return true;
            }
        }
        return false;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy