Reputation: 61
I have some distributed micro services written in Spring Boot and I am using RabbitMQ. I want to track my requests. Is there a possible way of tracking without using Spring Cloud or Sleuth
Upvotes: 1
Views: 689
Reputation: 114
Brave is the library spring cloud sleuth is built on, therefore you could make it work without sleuth: https://github.com/openzipkin/brave
Just to clarify though, Sleuth doesn't force you to use any of the rest of the spring-cloud components. It is spring-cloud
because it is one of the "cloud native" spring technologies
Upvotes: 1