I have the following problem: i need to send traces to Zipkin via Kafka using Sleuth. Based on what i read in the documentation(https://cloud.spring.io/spring-cloud-static/Edgware.SR3/single/spring-cloud.html#_sleuth_with_zipkin_via_rabbitmq_or_kafka) all i need to do is to add spring-kafka
dependency:
<dependency>
<groupId>org.springframework.amqp</groupId>
<artifactId>spring-rabbit</artifactId>
</dependency>
But i can't really see there to which kafka bootstrap server should i send or to which topic(is there some default topic that i should know about?).