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

import kamon.metric.instrument.{DistributionSnapshot, SingleValueSnapshot}

trait EntitySnapshot {
  def entity: Entity
  def histograms: Seq[DistributionSnapshot]
  def minMaxCounters: Seq[DistributionSnapshot]
  def gauges: Seq[SingleValueSnapshot]
  def counters: Seq[SingleValueSnapshot]
}