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.scala14
1 files changed, 7 insertions, 7 deletions
diff --git a/kamon-core/src/main/scala/kamon/metric/EntitySnapshot.scala b/kamon-core/src/main/scala/kamon/metric/EntitySnapshot.scala
index e51e80cc..a7db93eb 100644
--- a/kamon-core/src/main/scala/kamon/metric/EntitySnapshot.scala
+++ b/kamon-core/src/main/scala/kamon/metric/EntitySnapshot.scala
@@ -2,10 +2,10 @@ 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
+class EntitySnapshot(
+ val entity: Entity,
+ val histograms: Seq[DistributionSnapshot],
+ val minMaxCounters: Seq[DistributionSnapshot],
+ val gauges: Seq[SingleValueSnapshot],
+ val counters: Seq[SingleValueSnapshot]
+) \ No newline at end of file