Packages

trait Reporter extends AnyRef

User API for adding Coda Hale metric reporters.

Make sure that your reporter implements this interface.

The constructor of your reporter class must have one of the following constructors:


public YourReporter(com.codahale.metrics.MetricRegistry registry)
public YourReporter(com.codahale.metrics.MetricRegistry registry, com.lightbend.cinnamon.chmetrics.reporter.ReporterContext)

Errors will be logged if the class does not have any accepted constructors of if it does not implement this interface.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Reporter
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def start(): Unit

    Life cycle method called when telemetry is initiated.

  2. abstract def stop(): Unit

    Life cycle method called when telemetry is stopped.