spring-cloud-sleuth icon indicating copy to clipboard operation
spring-cloud-sleuth copied to clipboard

Distributed tracing for spring cloud

Results 34 spring-cloud-sleuth issues
Sort by recently updated
recently updated
newest added

description : In my a app case, I can`t find the link result that can`t include gateway span client in feign calling. the link result: `{ "_index": "zipkin-span-2022-08-11", "_type": "_doc",...

waiting-for-triage

When an error in thrown the trace are not being injected in netty error logs. ![Screenshot from 2022-07-25 15-04-11](https://user-images.githubusercontent.com/17641873/180783972-023dc91d-3b7c-4be2-bd7c-2d2a6719cb28.png) ## Expected Behavior Traces should be injected in error logs. ##...

waiting-for-triage

**Describe the bug** ```java final class TracingChannelInterceptorCondition extends AnyNestedCondition { private TracingChannelInterceptorCondition() { super(ConfigurationPhase.REGISTER_BEAN); } @ConditionalOnMissingClass("org.springframework.cloud.function.context.FunctionCatalog") @ConditionalOnProperty(value = "spring.sleuth.integration.enabled", matchIfMissing = true) static class OnFunctionMissing { } @ConditionalOnClass(FunctionCatalog.class) @Conditional(OnEnableBindingCondition.class) @ConditionalOnProperty(value...

waiting-for-triage

## Description My project consists of a `spring-webflux` application using `r2dbc` for persistence. When enabling detailed logging for DB connections and queries, the wrong traceId is logged for many of...

bug

**Describe the bug** We need the `baggage` header to be extracted whether there is a `traceparent` header or not. **Sample** I've written a branch here: https://github.com/jamesmoessis/spring-cloud-sleuth/tree/showcase-issue The sample sleuth application...

feedback-provided

**Given:** spring sleuth 3.1.3 lib application.properties ```properties spring.sleuth.propagation.type=B3,CUSTOM ``` and ```java public class Config { @Bean public PropagationFactorySupplier myCustomPropagator() { return MyCustomPropagator::new; } } ``` **When:** starting spring application **Then:**...

bug

**Describe the bug** The current documentation (https://docs.spring.io/spring-cloud-sleuth/docs/current/reference/html/project-features.html#project-features) contains incorrect or out-of-date code samples. **Sample** ``` @Configuration(proxyBeanMethods = false) class MyConfig { @Bean ZipkinRestTemplateCustomizer myCustomizer() { return new ZipkinRestTemplateCustomizer() { @Override...

waiting-for-triage

**Describe the bug** When Upgrading from Spring Cloud 2020.0.3 to 2020.0.4 AVRO message conversion is ignored in Spring Cloud Stream Kafka (Kafka 2.7) giving the following error: ``` 2021-10-28 15:43:47.868...

in progress

**Is your feature request related to a problem? Please describe.** Problem was described in https://github.com/spring-cloud/spring-cloud-sleuth/issues/1659 (but issue was closed) **Describe the solution you'd like** In issue spring-projects/spring-kafka#1704 was implemented additional...

enhancement

When using Spring Cloud Gateway with Sleuth, operation are named as HTTP method name without path. Expect it to be something like `get /api/search`, instead only getting `get` as operation...

bug