I am trying to set kafka as destination for sleuth reporting. Everything is workign fine except sleuth keeps sending to default topic sleuth. I wanted spans to be send to customized topic such as test as below
Below as my configuration for kafka channel.
spring.cloud.stream.kafka.binder.brokers=localhost:9094
spring.cloud.stream.kafka.binder.zkNodes=localhost:2182
spring.cloud.stream.bindings.input.destination=test
spring.cloud.stream.kafka.binder.configuration.security.protocol=SASL_PLAINTEXT
appreciate for any advice?