DEV Community

Vijay SRJ
Vijay SRJ

Posted on

Tracing logs in microservices using Spring Boot

One of the challenges in debugging issues in microservices is tracing the logs for each request as they are spread across multiple microservices.
This can be easily resolved by using MDC (Mapped Diagnostic Context) provided by most of the logging frameworks.

Here is how to do it in Spring Boot:

https://fullstackdeveloper.guru/2020/10/27/how-to-trace-logs-across-distributed-applications-microservices-in-spring-boot/

Top comments (0)