aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/scala/kamon/trace/logging
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/src/main/scala/kamon/trace/logging
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/src/main/scala/kamon/trace/logging')
-rw-r--r--kamon-core/src/main/scala/kamon/trace/logging/MdcKeysSupport.scala39
1 files changed, 39 insertions, 0 deletions
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]
+ }
+}