io.quarkus.jaeger.runtime.ZipkinConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-jaeger Show documentation
Show all versions of quarkus-jaeger Show documentation
Trace your services with Jaeger
package io.quarkus.jaeger.runtime;
import io.quarkus.runtime.annotations.ConfigItem;
import io.quarkus.runtime.annotations.ConfigPhase;
import io.quarkus.runtime.annotations.ConfigRoot;
/**
* The Zipkin Jaeger configuration.
*/
@ConfigRoot(phase = ConfigPhase.BUILD_AND_RUN_TIME_FIXED, name = "jaeger.zipkin")
public class ZipkinConfig {
/**
* Whether jaeger should run in zipkin compatibility mode
*/
@ConfigItem(defaultValue = "false")
public Boolean compatibilityMode;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy