aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon/metric/EntitySnapshot.scala
diff options
context:
space:
mode:
Diffstat (limited to 'kamon-core/src/main/scala/kamon/metric/EntitySnapshot.scala')
-rw-r--r--kamon-core/src/main/scala/kamon/metric/EntitySnapshot.scala11
1 files changed, 11 insertions, 0 deletions
diff --git a/kamon-core/src/main/scala/kamon/metric/EntitySnapshot.scala b/kamon-core/src/main/scala/kamon/metric/EntitySnapshot.scala
new file mode 100644
index 00000000..e51e80cc
--- /dev/null
+++ b/kamon-core/src/main/scala/kamon/metric/EntitySnapshot.scala
@@ -0,0 +1,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]
+} \ No newline at end of file