aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/legacy-test/scala/kamon
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2017-05-25 16:52:52 +0200
committerIvan Topolnjak <ivantopo@gmail.com>2017-05-25 16:52:52 +0200
commita3d78ef61a277b0b62dc93daf84756dfa7625d3d (patch)
tree4fee7ce93ecfb4e32c7aaaa22efb75ed07c667f6 /kamon-core/src/legacy-test/scala/kamon
parent22379d3f318b2cd3a4c995ff1c45bda33d935a46 (diff)
downloadKamon-a3d78ef61a277b0b62dc93daf84756dfa7625d3d.tar.gz
Kamon-a3d78ef61a277b0b62dc93daf84756dfa7625d3d.tar.bz2
Kamon-a3d78ef61a277b0b62dc93daf84756dfa7625d3d.zip
trying to flatten out the structure and eliminate the notion of entitites
Diffstat (limited to 'kamon-core/src/legacy-test/scala/kamon')
-rw-r--r--kamon-core/src/legacy-test/scala/kamon/KamonLifecycleSpec.scala2
-rw-r--r--kamon-core/src/legacy-test/scala/kamon/testkit/BaseKamonSpec.scala2
-rw-r--r--kamon-core/src/legacy-test/scala/kamon/util/executors/ExecutorServiceMetricsSpec.scala2
3 files changed, 3 insertions, 3 deletions
diff --git a/kamon-core/src/legacy-test/scala/kamon/KamonLifecycleSpec.scala b/kamon-core/src/legacy-test/scala/kamon/KamonLifecycleSpec.scala
index 2fbd1b71..3847d6b8 100644
--- a/kamon-core/src/legacy-test/scala/kamon/KamonLifecycleSpec.scala
+++ b/kamon-core/src/legacy-test/scala/kamon/KamonLifecycleSpec.scala
@@ -4,7 +4,7 @@ import akka.actor.ActorSystem
import akka.testkit.{TestKitBase, TestProbe}
import com.typesafe.config.ConfigFactory
import kamon.metric.SubscriptionsDispatcher.TickMetricSnapshot
-import kamon.metric.{EntitySnapshot, SubscriptionsDispatcher}
+import kamon.metric.SubscriptionsDispatcher
import kamon.util.LazyActorRef
import org.scalatest.{Matchers, WordSpecLike}
import org.scalactic.TimesOnInt._
diff --git a/kamon-core/src/legacy-test/scala/kamon/testkit/BaseKamonSpec.scala b/kamon-core/src/legacy-test/scala/kamon/testkit/BaseKamonSpec.scala
index 995f15fa..6899d4e3 100644
--- a/kamon-core/src/legacy-test/scala/kamon/testkit/BaseKamonSpec.scala
+++ b/kamon-core/src/legacy-test/scala/kamon/testkit/BaseKamonSpec.scala
@@ -20,7 +20,7 @@ import akka.actor.ActorSystem
import akka.testkit.{ImplicitSender, TestKitBase}
import com.typesafe.config.Config
import kamon.{ActorSystemTools, Kamon}
-import kamon.metric.{Entity, EntitySnapshot, SubscriptionsDispatcher}
+import kamon.metric.SubscriptionsDispatcher
import kamon.trace.TraceContext
import kamon.util.LazyActorRef
import org.scalatest.{BeforeAndAfterAll, Matchers, WordSpecLike}
diff --git a/kamon-core/src/legacy-test/scala/kamon/util/executors/ExecutorServiceMetricsSpec.scala b/kamon-core/src/legacy-test/scala/kamon/util/executors/ExecutorServiceMetricsSpec.scala
index 4e5394f8..3f1d418a 100644
--- a/kamon-core/src/legacy-test/scala/kamon/util/executors/ExecutorServiceMetricsSpec.scala
+++ b/kamon-core/src/legacy-test/scala/kamon/util/executors/ExecutorServiceMetricsSpec.scala
@@ -19,7 +19,7 @@ package kamon.util.executors
import java.util.concurrent.Executors
import kamon.Kamon
-import kamon.metric.{Entity, EntityRecorder}
+import kamon.metric.EntityRecorder
import kamon.testkit.BaseKamonSpec
class ExecutorServiceMetricsSpec extends BaseKamonSpec("executor-service-metrics-spec") {