aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon/metric/MetricsSubscriber.scala
blob: dbdfde9d27b8b4532000e43dbe8bc3f6cf4e459d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package kamon.metric

import com.typesafe.config.Config

trait MetricsSubscriber {
  def reconfigure(config: Config): Unit

  def start(config: Config): Unit
  def shutdown(): Unit

  def processTick(snapshot: String)
}