aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/test/scala/kamon/testkit
diff options
context:
space:
mode:
authorDiego <diegolparra@gmail.com>2016-04-01 01:52:41 -0300
committerDiego <diegolparra@gmail.com>2016-04-22 00:57:52 -0300
commit9bdb042fc802fbed07ac428dfe10405da638e86e (patch)
treeb563211833e6a946cba6592085f948b60b9ec160 /kamon-core/src/test/scala/kamon/testkit
parenta96d9e0ac5fafd29e2bfc2e4ae10a673690f1e42 (diff)
downloadKamon-9bdb042fc802fbed07ac428dfe10405da638e86e.tar.gz
Kamon-9bdb042fc802fbed07ac428dfe10405da638e86e.tar.bz2
Kamon-9bdb042fc802fbed07ac428dfe10405da638e86e.zip
Add tags for traces and closes #327
Diffstat (limited to 'kamon-core/src/test/scala/kamon/testkit')
-rw-r--r--kamon-core/src/test/scala/kamon/testkit/BaseKamonSpec.scala7
1 files changed, 5 insertions, 2 deletions
diff --git a/kamon-core/src/test/scala/kamon/testkit/BaseKamonSpec.scala b/kamon-core/src/test/scala/kamon/testkit/BaseKamonSpec.scala
index f23d974c..497cb77d 100644
--- a/kamon-core/src/test/scala/kamon/testkit/BaseKamonSpec.scala
+++ b/kamon-core/src/test/scala/kamon/testkit/BaseKamonSpec.scala
@@ -20,8 +20,8 @@ import akka.testkit.{ ImplicitSender, TestKitBase }
import akka.actor.ActorSystem
import com.typesafe.config.{ Config, ConfigFactory }
import kamon.Kamon
-import kamon.metric.{ Entity, SubscriptionsDispatcher, EntitySnapshot }
-import kamon.trace.TraceContext
+import kamon.metric.{ Entity, EntitySnapshot, SubscriptionsDispatcher }
+import kamon.trace.{ TraceContext, Tracer }
import kamon.util.LazyActorRef
import org.scalatest.{ BeforeAndAfterAll, Matchers, WordSpecLike }
@@ -41,6 +41,9 @@ abstract class BaseKamonSpec(actorSystemName: String) extends TestKitBase with W
def newContext(name: String, token: String): TraceContext =
Kamon.tracer.newContext(name, Option(token))
+ def newContext(name: String, token: String, tags: Map[String, String]): TraceContext =
+ Kamon.tracer.newContext(name, Option(token), tags)
+
def takeSnapshotOf(name: String, category: String): EntitySnapshot = {
val recorder = Kamon.metrics.find(name, category).get
recorder.collect(collectionContext)