All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.jaeger.runtime.ZipkinConfig Maven / Gradle / Ivy

There is a newer version: 3.12.3
Show newest version
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