我是靠谱客的博主 饱满酒窝,最近开发中收集的这篇文章主要介绍SLF4J自定义参数到日志文件中SLF4J自定义参数到日志文件中,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

SLF4J自定义参数到日志文件中

背景

最近做一个需求是:将http header中的数据打印到日志中去。

思路

1、创建全局过滤器,取出http头部信息
2、将http头部信息,放到slf4j的MDC中
3、在日志文件中,打印自定义的参数

代码

创建全局过滤器,取出http头部信息,将http头部信息,放到slf4j的MDC中。

@WebFilter(filterName = "busIdLogFilter", urlPatterns = {"/*"})
public class BusIdLogFilter extends HttpFilter {

    @Override
    protected void doFilter(HttpServletRequest request, HttpServletResponse response, FilterChain chain) throws IOException, ServletException {
        String busId = request.getHeader(ServiceConstant.BUS_ID);
        MDC.put(ServiceConstant.BUS_ID, busId);
        chain.doFilter(request, response);
    }
}

在日志文件logback-spring.xml中,打印自定义的参数

<!-- [%X{bus_id}]为自定义参数设置--> 
<pattern>%d{yyyy-MM-dd HH:mm:ss.SSS} [%thread] [%X{bus_id}] %-5level %logger{50} - %msg%n</pattern>

拓展:传递header实现链路追踪

思路

1、创建全局过滤器,取出http头部信息
2、将http头部信息,放到slf4j的MDC中
3、给feign创建全局拦截器,将http header信息放到feign的header中

代码

@Slf4j
@Configuration
public class FeignHeaderInterceptor implements RequestInterceptor {
    @Override
    public void apply(RequestTemplate template) {
        ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder
                .getRequestAttributes();
        HttpServletRequest request = attributes.getRequest();
        String busId = request.getHeader(ServiceConstant.BUS_ID);
        template.header(ServiceConstant.BUS_ID, busId);
    }
}

问题

当feign.hystrix.enabled: true时,
FeignHeaderInterceptor中
无法通过RequestContextHolder.getRequestAttributes()获取Request。

详细说明及解决方法其他博客已做解释:
https://blog.csdn.net/liu_ares/article/details/100371441 
https://www.itmuch.com/spring-cloud-sum/hystrix-threadlocal/

最后

以上就是饱满酒窝为你收集整理的SLF4J自定义参数到日志文件中SLF4J自定义参数到日志文件中的全部内容,希望文章能够帮你解决SLF4J自定义参数到日志文件中SLF4J自定义参数到日志文件中所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(56)

评论列表共有 0 条评论

立即
投稿
返回
顶部