'spring.sleuth.integration.websockets.enable=false' 不禁用跟踪 websockets
'spring.sleuth.integration.websockets.enable=false' doesn't disable tracing the websockets
我试图禁用跟踪 WebSockets,所以我将 'spring.sleuth.integration.websockets.enable=false' 放入我的 application.properties,但它似乎什么也没做,WebSockets 仍在被跟踪。
spring.zipkin.baseUrl=https://192.168.99.100:9411/
spring.zipkin.service.name=chatserver
spring.zipkin.sender.type=web
spring.sleuth.sampler.probability=1
spring.sleuth.integration.websockets.enable=false
这是保持 WebSocket 存活的心跳,我认为如果我禁用它不应该被记录
您在 属性 中有一个拼写错误,您在末尾缺少一个 d [spring.sleuth.integration.websockets.enabled]
我试图禁用跟踪 WebSockets,所以我将 'spring.sleuth.integration.websockets.enable=false' 放入我的 application.properties,但它似乎什么也没做,WebSockets 仍在被跟踪。
spring.zipkin.baseUrl=https://192.168.99.100:9411/
spring.zipkin.service.name=chatserver
spring.zipkin.sender.type=web
spring.sleuth.sampler.probability=1
spring.sleuth.integration.websockets.enable=false
这是保持 WebSocket 存活的心跳,我认为如果我禁用它不应该被记录
您在 属性 中有一个拼写错误,您在末尾缺少一个 d [spring.sleuth.integration.websockets.enabled]