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

sirius.kernel.health.metrics.MetricProvider Maven / Gradle / Ivy

/*
 * Made with all the love in the world
 * by scireum in Remshalden, Germany
 *
 * Copyright by scireum GmbH
 * http://www.scireum.de - [email protected]
 */

package sirius.kernel.health.metrics;

/**
 * Provides metrics to the metrics system.
 * 

* Instances of this class can be registered using the {@link sirius.kernel.di.std.Register} annotation which then * can provide metrics for various areas of the system. */ public interface MetricProvider { /** * Invoked roughly every minute to collect all available metrics. * * @param collector the interface used to provide metrics */ void gather(MetricsCollector collector); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy