I've enabled zipkin on my application and it works fine, I see the traces. My application is using Consul service discovery, and I see a lot of traffic being traced in Zipkin.
Traces are like have names like "catalog-services_watch" and contain things like :
{
"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
}
}
How can I disable these traces ? I've tried the spring.sleuth.instrument.web.skipPattern parameter, but it's not working.