Mali
Mali

Reputation: 61

Is there a possible way of using Zipkin without Sleuth?

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

Answers (2)

Brian Devins-Suresh
Brian Devins-Suresh

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

Niraj Jha
Niraj Jha

Reputation: 595

According to this Spring Cloud Sleuth is the only tracer that supports messaging.

Upvotes: 1

Related Questions