使用spring-cloud-stream指定sleuth-kaka的主题名称

时间:2017-11-01 08:49:24

标签: apache-kafka spring-cloud-stream spring-cloud-sleuth

我正在尝试将kafka设置为侦探报告的目的地。一切都很好,除了侦探一直发送到默认主题侦探。我希望将跨度发送到自定义主题,例如 test ,如下所示

以下是我对kafka频道的配置。

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

欣赏任何建议?

1 个答案:

答案 0 :(得分:3)

Stream SLeuth的频道名为Sleuth。只需更改spring.cloud.stream.bindings.sleuth.destination=yourCustomName即可。这样你就可以开始从另一个主题发送/阅读侦探的跨度。