Class AbstractPrometheusReporter

    • Field Detail

      • log

        protected final org.slf4j.Logger log
    • Constructor Detail

      • AbstractPrometheusReporter

        public AbstractPrometheusReporter()
    • Method Detail

      • open

        public void open​(MetricConfig config)
        Description copied from interface: MetricReporter
        Configures this reporter.

        If the reporter was instantiated generically and hence parameter-less, this method is the place where the reporter sets it's basic fields based on configuration values. Otherwise, this method will typically be a no-op since resources can be acquired in the constructor.

        This method is always called first on a newly instantiated reporter.

        Specified by:
        open in interface MetricReporter
        Parameters:
        config - A properties object that contains all parameters set for this reporter.
      • close

        public void close()
        Description copied from interface: MetricReporter
        Closes this reporter. Should be used to close channels, streams and release resources.
        Specified by:
        close in interface MetricReporter
      • notifyOfAddedMetric

        public void notifyOfAddedMetric​(Metric metric,
                                        String metricName,
                                        MetricGroup group)
        Description copied from interface: MetricReporter
        Called when a new Metric was added.
        Specified by:
        notifyOfAddedMetric in interface MetricReporter
        Parameters:
        metric - the metric that was added
        metricName - the name of the metric
        group - the group that contains the metric
      • notifyOfRemovedMetric

        public void notifyOfRemovedMetric​(Metric metric,
                                          String metricName,
                                          MetricGroup group)
        Description copied from interface: MetricReporter
        Called when a Metric was removed.
        Specified by:
        notifyOfRemovedMetric in interface MetricReporter
        Parameters:
        metric - the metric that should be removed
        metricName - the name of the metric
        group - the group that contains the metric