aboutsummaryrefslogtreecommitdiff
path: root/src/test/scala/kamon/instrumentation/ActorSystemInstrumentationSpec.scala
diff options
context:
space:
mode:
authorIvan Topolnak <ivantopo@gmail.com>2013-07-15 18:14:07 -0300
committerIvan Topolnak <ivantopo@gmail.com>2013-07-15 18:14:07 -0300
commitafda5a6ac02a5cd314638e40250b49f66cf3b419 (patch)
treed0f2337f570d883497e78c482629f2af60c95366 /src/test/scala/kamon/instrumentation/ActorSystemInstrumentationSpec.scala
parente8dd6c83986f1ecd2d717c39bffe900b23b68854 (diff)
downloadKamon-afda5a6ac02a5cd314638e40250b49f66cf3b419.tar.gz
Kamon-afda5a6ac02a5cd314638e40250b49f66cf3b419.tar.bz2
Kamon-afda5a6ac02a5cd314638e40250b49f66cf3b419.zip
still a disaster, need to sync
Diffstat (limited to 'src/test/scala/kamon/instrumentation/ActorSystemInstrumentationSpec.scala')
-rw-r--r--src/test/scala/kamon/instrumentation/ActorSystemInstrumentationSpec.scala23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/test/scala/kamon/instrumentation/ActorSystemInstrumentationSpec.scala b/src/test/scala/kamon/instrumentation/ActorSystemInstrumentationSpec.scala
new file mode 100644
index 00000000..489f3c1c
--- /dev/null
+++ b/src/test/scala/kamon/instrumentation/ActorSystemInstrumentationSpec.scala
@@ -0,0 +1,23 @@
+package kamon.instrumentation
+
+import org.scalatest.{Matchers, WordSpec}
+import akka.actor.ActorSystem
+import kamon.Kamon
+
+class ActorSystemInstrumentationSpec extends WordSpec with Matchers {
+
+ // TODO: Selection filters to exclude unwanted actor systems. Read from configuration.
+
+ "the actor system instrumentation" should {
+ "register all actor systems created" in {
+ val as1 = ActorSystem("as1")
+ val as2 = ActorSystem("as2")
+
+
+ Kamon.Metric.actorSystem("as1") should not be (None)
+ Kamon.Metric.actorSystem("as2") should not be (None)
+ /*assert(Kamon.Metric.actorSystem("as2") != null)
+ assert(Kamon.Metric.actorSystem("as3") === null)*/
+ }
+ }
+}