aboutsummaryrefslogtreecommitdiff
path: root/kamon-core
diff options
context:
space:
mode:
authorDiego <diegolparra@gmail.com>2014-11-19 22:09:41 -0300
committerDiego <diegolparra@gmail.com>2014-11-19 22:09:41 -0300
commitc03a0c5dd2a490d4b4ccbde58d18ceccc1867b44 (patch)
tree4030df619b2035db49f9b10e3c8396199f154904 /kamon-core
parentf6805411bbe80544d90736d560322fa6d6bd24e1 (diff)
downloadKamon-c03a0c5dd2a490d4b4ccbde58d18ceccc1867b44.tar.gz
Kamon-c03a0c5dd2a490d4b4ccbde58d18ceccc1867b44.tar.bz2
Kamon-c03a0c5dd2a490d4b4ccbde58d18ceccc1867b44.zip
+ core: refactor MDC facilities and closes #100
Diffstat (limited to 'kamon-core')
-rw-r--r--kamon-core/src/main/scala/kamon/instrumentation/akka/ActorLoggingInstrumentation.scala7
-rw-r--r--kamon-core/src/main/scala/kamon/trace/TraceLocal.scala18
-rw-r--r--kamon-core/src/main/scala/kamon/trace/logging/MdcKeysSupport.scala39
-rw-r--r--kamon-core/src/test/scala/kamon/instrumentation/akka/ActorLoggingInstrumentationSpec.scala25
-rw-r--r--kamon-core/src/test/scala/kamon/trace/TraceLocalSpec.scala37
5 files changed, 118 insertions, 8 deletions
diff --git a/kamon-core/src/main/scala/kamon/instrumentation/akka/ActorLoggingInstrumentation.scala b/kamon-core/src/main/scala/kamon/instrumentation/akka/ActorLoggingInstrumentation.scala
index 6b90a81e..e0e5d316 100644
--- a/kamon-core/src/main/scala/kamon/instrumentation/akka/ActorLoggingInstrumentation.scala
+++ b/kamon-core/src/main/scala/kamon/instrumentation/akka/ActorLoggingInstrumentation.scala
@@ -16,12 +16,13 @@
package akka.kamon.instrumentation
+import kamon.trace.logging.MdcKeysSupport
import kamon.trace.{ TraceContextAware, TraceRecorder }
import org.aspectj.lang.ProceedingJoinPoint
import org.aspectj.lang.annotation._
@Aspect
-class ActorLoggingInstrumentation {
+class ActorLoggingInstrumentation extends MdcKeysSupport {
@DeclareMixin("akka.event.Logging.LogEvent+")
def mixinTraceContextAwareToLogEvent: TraceContextAware = TraceContextAware.default
@@ -41,7 +42,9 @@ class ActorLoggingInstrumentation {
@Around("withMdcInvocation(logSource, logEvent, logStatement)")
def aroundWithMdcInvocation(pjp: ProceedingJoinPoint, logSource: String, logEvent: TraceContextAware, logStatement: () ⇒ _): Unit = {
TraceRecorder.withInlineTraceContextReplacement(logEvent.traceContext) {
- pjp.proceed()
+ withMdc {
+ pjp.proceed()
+ }
}
}
}
diff --git a/kamon-core/src/main/scala/kamon/trace/TraceLocal.scala b/kamon-core/src/main/scala/kamon/trace/TraceLocal.scala
index 0766af74..a7296c31 100644
--- a/kamon-core/src/main/scala/kamon/trace/TraceLocal.scala
+++ b/kamon-core/src/main/scala/kamon/trace/TraceLocal.scala
@@ -16,14 +16,28 @@
package kamon.trace
-import scala.collection.concurrent.TrieMap
import kamon.trace.TraceLocal.TraceLocalKey
+import scala.collection.concurrent.TrieMap
+
object TraceLocal {
+
trait TraceLocalKey {
type ValueType
}
+ trait AvailableToMdc extends TraceLocalKey {
+ override type ValueType = String
+ def mdcKey: String
+ }
+
+ object AvailableToMdc {
+ case class DefaultKeyAvailableToMdc(mdcKey: String) extends AvailableToMdc
+
+ def fromKey(mdcKey: String): AvailableToMdc = DefaultKeyAvailableToMdc(mdcKey)
+ def apply(mdcKey: String): AvailableToMdc = fromKey(mdcKey)
+ }
+
def store(key: TraceLocalKey)(value: key.ValueType): Unit = TraceRecorder.currentContext match {
case ctx: DefaultTraceContext ⇒ ctx.traceLocalStorage.store(key)(value)
case EmptyTraceContext ⇒ // Can't store in the empty context.
@@ -33,6 +47,8 @@ object TraceLocal {
case ctx: DefaultTraceContext ⇒ ctx.traceLocalStorage.retrieve(key)
case EmptyTraceContext ⇒ None // Can't retrieve anything from the empty context.
}
+
+ def storeForMdc(key: String, value: String): Unit = store(AvailableToMdc.fromKey(key))(value)
}
class TraceLocalStorage {
diff --git a/kamon-core/src/main/scala/kamon/trace/logging/MdcKeysSupport.scala b/kamon-core/src/main/scala/kamon/trace/logging/MdcKeysSupport.scala
new file mode 100644
index 00000000..d79a3ab6
--- /dev/null
+++ b/kamon-core/src/main/scala/kamon/trace/logging/MdcKeysSupport.scala
@@ -0,0 +1,39 @@
+/*
+ * =========================================================================================
+ * Copyright © 2013-2014 the kamon project <http://kamon.io/>
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software distributed under the
+ * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
+ * either express or implied. See the License for the specific language governing permissions
+ * and limitations under the License.
+ * =========================================================================================
+ */
+
+package kamon.trace.logging
+
+import kamon.trace.TraceLocal.AvailableToMdc
+import kamon.trace.{ EmptyTraceContext, DefaultTraceContext, TraceContext, TraceRecorder }
+
+import org.slf4j.MDC
+
+trait MdcKeysSupport {
+
+ def withMdc[A](thunk: ⇒ A): A = {
+ val keys = copyToMdc(TraceRecorder.currentContext)
+ try thunk finally keys.foreach(key ⇒ MDC.remove(key))
+ }
+
+ private[this] def copyToMdc(traceContext: TraceContext): Iterable[String] = traceContext match {
+ case ctx: DefaultTraceContext ⇒
+ ctx.traceLocalStorage.underlyingStorage.collect {
+ case (available: AvailableToMdc, value) ⇒ Map(available.mdcKey -> String.valueOf(value))
+ }.map { value ⇒ value.map { case (k, v) ⇒ MDC.put(k, v); k } }.flatten
+
+ case EmptyTraceContext ⇒ Iterable.empty[String]
+ }
+}
diff --git a/kamon-core/src/test/scala/kamon/instrumentation/akka/ActorLoggingInstrumentationSpec.scala b/kamon-core/src/test/scala/kamon/instrumentation/akka/ActorLoggingInstrumentationSpec.scala
index 3dab44bc..cef335e0 100644
--- a/kamon-core/src/test/scala/kamon/instrumentation/akka/ActorLoggingInstrumentationSpec.scala
+++ b/kamon-core/src/test/scala/kamon/instrumentation/akka/ActorLoggingInstrumentationSpec.scala
@@ -18,11 +18,14 @@ package kamon.instrumentation.akka
import akka.actor.{ Actor, ActorLogging, ActorSystem, Props }
import akka.event.Logging.LogEvent
import akka.testkit.TestKit
-import kamon.trace.{ TraceContextAware, TraceRecorder }
+import kamon.trace.TraceLocal.AvailableToMdc
+import kamon.trace.logging.MdcKeysSupport
+import kamon.trace.{TraceLocal, TraceContextAware, TraceRecorder}
import org.scalatest.{ Inspectors, Matchers, WordSpecLike }
+import org.slf4j.MDC
class ActorLoggingInstrumentationSpec extends TestKit(ActorSystem("actor-logging-instrumentation-spec")) with WordSpecLike
- with Matchers with Inspectors {
+ with Matchers with Inspectors with MdcKeysSupport {
"the ActorLogging instrumentation" should {
"attach the TraceContext (if available) to log events" in {
@@ -42,6 +45,24 @@ class ActorLoggingInstrumentationSpec extends TestKit(ActorSystem("actor-logging
case event: LogEvent ⇒ false
}
}
+
+ "allow retrieve a value from the MDC when was created a key of type AvailableToMdc" in {
+ val testString = "Hello World"
+ val SampleTraceLocalKeyAvailableToMDC = AvailableToMdc("some-cool-key")
+
+ val loggerActor = system.actorOf(Props[LoggerActor])
+ system.eventStream.subscribe(testActor, classOf[LogEvent])
+
+ TraceRecorder.withNewTraceContext("logging-with-mdc") {
+ TraceLocal.store(SampleTraceLocalKeyAvailableToMDC)(testString)
+
+ loggerActor ! "info"
+
+ withMdc {
+ MDC.get("some-cool-key") should equal(testString)
+ }
+ }
+ }
}
}
diff --git a/kamon-core/src/test/scala/kamon/trace/TraceLocalSpec.scala b/kamon-core/src/test/scala/kamon/trace/TraceLocalSpec.scala
index 927573c2..b23c1c03 100644
--- a/kamon-core/src/test/scala/kamon/trace/TraceLocalSpec.scala
+++ b/kamon-core/src/test/scala/kamon/trace/TraceLocalSpec.scala
@@ -16,13 +16,18 @@
package kamon.trace
-import akka.testkit.TestKit
import akka.actor.ActorSystem
-import org.scalatest.{ OptionValues, Matchers, WordSpecLike }
+import akka.testkit.TestKit
+import kamon.trace.TraceLocal.AvailableToMdc
+import kamon.trace.logging.MdcKeysSupport
import org.scalatest.concurrent.PatienceConfiguration
+import org.scalatest.{Matchers, OptionValues, WordSpecLike}
+import org.slf4j.MDC
class TraceLocalSpec extends TestKit(ActorSystem("trace-local-spec")) with WordSpecLike with Matchers
- with PatienceConfiguration with OptionValues {
+ with PatienceConfiguration with OptionValues with MdcKeysSupport {
+
+ val SampleTraceLocalKeyAvailableToMDC = AvailableToMdc("someKey")
object SampleTraceLocalKey extends TraceLocal.TraceLocalKey { type ValueType = String }
@@ -61,5 +66,31 @@ class TraceLocalSpec extends TestKit(ActorSystem("trace-local-spec")) with WordS
TraceLocal.retrieve(SampleTraceLocalKey).value should equal(testString)
}
}
+
+ "allow retrieve a value from the MDC when was created a key with AvailableToMdc(cool-key)" in {
+ TraceRecorder.withNewTraceContext("store-and-retrieve-trace-local-and-copy-to-mdc") {
+ val testString = "Hello MDC"
+
+ TraceLocal.store(SampleTraceLocalKeyAvailableToMDC)(testString)
+ TraceLocal.retrieve(SampleTraceLocalKeyAvailableToMDC).value should equal(testString)
+
+ withMdc {
+ MDC.get("someKey") should equal(testString)
+ }
+ }
+ }
+
+ "allow retrieve a value from the MDC when was created a key with AvailableToMdc.storeForMdc(String, String)" in {
+ TraceRecorder.withNewTraceContext("store-and-retrieve-trace-local-and-copy-to-mdc") {
+ val testString = "Hello MDC"
+
+ TraceLocal.storeForMdc("someKey", testString)
+ TraceLocal.retrieve(SampleTraceLocalKeyAvailableToMDC).value should equal(testString)
+
+ withMdc {
+ MDC.get("someKey") should equal(testString)
+ }
+ }
+ }
}
}