java-spring-jaeger icon indicating copy to clipboard operation
java-spring-jaeger copied to clipboard

Results 52 java-spring-jaeger issues
Sort by recently updated
recently updated
newest added

i am using jaeger with spring boot version 3.0.0 and java version 17 but unable to discover any services that registered with jaeger UI, is there version issue ? jaeger...

Spring boot 2.7 introduces new way for registering autoconfiguration classes. And then spring.factories file was deprecated. As of boot 3.0 support of spring.factories files was dropped. See also: https://github.com/spring-projects/spring-boot/wiki/Spring-Boot-3.0-Migration-Guide#auto-configuration-files

i use opentracing.spring.web.url-patterns to allow some web entries. but the sub-span still be record. see : I get two url enties: "/hello" "/test" /hello->redis(set) /test -> redis(set) opentracing.spring.web.url-patterns: /hello so...

I have a Spring boot application and i want to trace the webClient request with jaeger: ``` implementation "io.micrometer:micrometer-registry-prometheus:1.10.3" implementation "org.springframework.boot:spring-boot-starter-web:2.6.6" implementation "org.springframework.boot:spring-boot-starter-webflux:2.6.6" implementation 'io.opentracing.contrib:opentracing-spring-jaeger-web-starter:3.3.1' implementation "io.opentracing.contrib:opentracing-jdbc:0.2.15" ``` My application.yml:...

I have disabled the jaeger by setting opentracing.jaeger.enabled to false but yet it is tracing the methods .Is there any way to disable the jaeger so that methods should not...

If I add tags to `application.yml` or in TracerBuilderCustomizer (withTag("some", "tag")), all these tags are added to the process meta data block, not in tags. Is it expected behaviour or...

We are a bit stuck in moving this forward in our project as it does not work with the new spring-cloud version and requests for similar are not being replied...

I want to disable jaeger span using opentracing-jaeger-enabled: false and no jaeger service name is defined. However I'm getting following error java.lang.IllegalArgumentException: Service name must not be null or empty....

You versions 0.x.y are meant to be used with Spring Boot 1.5,but opentracing-spring-jaeger-cloud-starter 0.2.2 is use opentracing-spring-cloud-starter 0.2.0,opentracing-spring-cloud-starter 0.2.0 is use Spring Boot 2.x !!!!!!!

my project based on spring boot 1.5.22,and i have tried opentracing-spring-jaeger-cloud-starter 0.2.2 and 0.2.1.But all of them cant work well,which i could get the jaeger's UI page but there is...