我在我的应用程序上启用了 zipkin,它工作正常,我看到了痕迹。我的应用程序正在使用 Consul 服务发现,我看到在 Zipkin 中跟踪了很多流量。
跟踪就像具有“catalog-services_watch”之类的名称并包含以下内容:
{
"key": "class",
"value": "ConsulCatalogWatch",
"endpoint": {
"serviceName": "myService",
"ipv4": "10.0.36.114",
"port": 8443
}
},
{
"key": "lc",
"value": "scheduled",
"endpoint": {
"serviceName": "myService",
"ipv4": "10.0.36.114",
"port": 8443
}
},
{
"key": "method",
"value": "catalogServicesWatch",
"endpoint": {
"serviceName": "myService",
"ipv4": "10.0.36.114",
"port": 8443
}
}
如何禁用这些跟踪?我试过 spring.sleuth.instrument.web.skipPattern 参数,但它不起作用。