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

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

package io.quarkus.jaeger.runtime;

import jakarta.enterprise.inject.Produces;
import jakarta.inject.Singleton;

@Singleton
public class ZipkinReporterProvider {
    @Produces
    @Singleton
    public ReporterFactory reporter() {
        return new ZipkinReporterFactoryImpl();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy