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

io.quarkus.micrometer.runtime.export.exemplars.EmptyExemplarSamplerProvider Maven / Gradle / Ivy

Go to download

Instrument the runtime and your application with dimensional metrics using Micrometer.

There is a newer version: 3.17.5
Show newest version
package io.quarkus.micrometer.runtime.export.exemplars;

import java.util.Optional;

import jakarta.enterprise.inject.Produces;

import io.prometheus.client.exemplars.ExemplarSampler;

public class EmptyExemplarSamplerProvider {

    @Produces
    public Optional exemplarSampler() {
        return Optional.empty();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy