Class Slf4jReporter.Builder

  • Enclosing class:
    Slf4jReporter

    public static class Slf4jReporter.Builder
    extends Object
    A builder for Slf4jReporter instances. Defaults to logging to metrics, not using a marker, converting rates to events/second, converting durations to milliseconds, and not filtering metrics.
    • Method Detail

      • shutdownExecutorOnStop

        public Slf4jReporter.Builder shutdownExecutorOnStop​(boolean shutdownExecutorOnStop)
        Specifies whether or not, the executor (used for reporting) will be stopped with same time with reporter. Default value is true. Setting this parameter to false, has the sense in combining with providing external managed executor via scheduleOn(ScheduledExecutorService).
        Parameters:
        shutdownExecutorOnStop - if true, then executor will be stopped in same time with this reporter
        Returns:
        this
      • scheduleOn

        public Slf4jReporter.Builder scheduleOn​(ScheduledExecutorService executor)
        Specifies the executor to use while scheduling reporting of metrics. Default value is null. Null value leads to executor will be auto created on start.
        Parameters:
        executor - the executor to use while scheduling reporting of metrics.
        Returns:
        this
      • outputTo

        public Slf4jReporter.Builder outputTo​(org.slf4j.Logger logger)
        Log metrics to the given logger.
        Parameters:
        logger - an SLF4J Logger
        Returns:
        this
      • markWith

        public Slf4jReporter.Builder markWith​(org.slf4j.Marker marker)
        Mark all logged metrics with the given marker.
        Parameters:
        marker - an SLF4J Marker
        Returns:
        this
      • prefixedWith

        public Slf4jReporter.Builder prefixedWith​(String prefix)
        Prefix all metric names with the given string.
        Parameters:
        prefix - the prefix for all metric names
        Returns:
        this
      • convertRatesTo

        public Slf4jReporter.Builder convertRatesTo​(TimeUnit rateUnit)
        Convert rates to the given time unit.
        Parameters:
        rateUnit - a unit of time
        Returns:
        this
      • convertDurationsTo

        public Slf4jReporter.Builder convertDurationsTo​(TimeUnit durationUnit)
        Convert durations to the given time unit.
        Parameters:
        durationUnit - a unit of time
        Returns:
        this