根据https://quarkus.io/guides/opentracing-guide所有 Jeager 配置都是通过 JVM args (-DJAEGER_ENDPOINT...) 但我想使用其中一个application.properties
或microprofile-config.properties
配置跟踪。我尝试了以下方法,但 Quarkus 似乎选择的唯一配置是服务名称,所有其他属性都被忽略。
quarkus.jaeger.service-name=my-service <-this one is working quarkus.jaeger.endpoint=http://localhost:14268/api/traces <- seems to be ignored quarkus.jaeger.reporter-log-spans=true quarkus.jaeger.sampler.type=const quarkus.jaeger.sampler.parameter=1
那么,问题是是否可以通过配置文件进行配置,或者目前不支持?