How to use MDC of logback and SLF4J with spring boot to capture unique tracking in the POST request json?

后端 未结 2 672
轮回少年
轮回少年 2021-01-18 17:29

We are using:

  • Spring Boot
  • Slf4J
  • Logback
  • ELK stack

Now we want to use MDC to add the unique tracking num

2条回答
  •  滥情空心
    2021-01-18 18:10

    You can use Logback's Mapped Diagnotic Context to propagate a unique tracking number to every log message.

    There are two parts to this:

    • Push your unique tracking number into MDC e.g. MDC.put("uniqueTrackingNumber", the_unique_tracking_number);

    • Include the MDC entry in your log statements. You do this by specifying it in your logging pattern. So, if you store the unique tracking number in a MDC entry named uniqueTrackingNumber then you would include it in your emitted log events by defining a layout like this:

    
        
            %d{yyyy-MM-dd HH:mm:ss} [%thread] [%X{uniqueTrackingNumber}] %-5level %logger{36} - %msg%n
        
    
    

    More details in the docs.

    I presume that the scope of a "unique tracking number" is limited to a request (or a single 'flow' through your application)? If so, then you'll want to identify some throttle point where you can push the MDC value on the way in. In the Spring Boot world this is likely to be a Filter. Something like this, perhaps:

    @Component 
    public static class UniqueTrackingNumberFilter extends OncePerRequestFilter() {
    
        @Override
        protected abstract void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
                        throws ServletException, IOException {
            // presumably this is extracted from the request (or defaulted, if not supplied)
            int uniqueTrackingNumber = ;
            MDC.put("uniqueTrackingNumber", uniqueTrackingNumber);
        }
    }
    

    Alternatively you could extend Logback's MDCInsertingServletFilter to extract whatever you want from the request and push it into MDC.

提交回复
热议问题