aboutsummaryrefslogtreecommitdiff
path: root/kamon-play/src/test/scala/kamon/play/instrumentation
diff options
context:
space:
mode:
authorDiego <diegolparra@gmail.com>2014-03-09 15:01:51 -0300
committerDiego <diegolparra@gmail.com>2014-03-09 15:01:51 -0300
commit04550ce1daff2b3d13aa85931686a303bf93fbd8 (patch)
treea9be0d45072915d4f3c10e7cdc50052f7ef7d445 /kamon-play/src/test/scala/kamon/play/instrumentation
parentb8a26e0f173a528c700a3d0cfa4ed2f8079a7ae1 (diff)
downloadKamon-04550ce1daff2b3d13aa85931686a303bf93fbd8.tar.gz
Kamon-04550ce1daff2b3d13aa85931686a303bf93fbd8.tar.bz2
Kamon-04550ce1daff2b3d13aa85931686a303bf93fbd8.zip
Play Integration with: X-Trace-Token, WebExternal Time and Error publishing in Akka EventStream
Diffstat (limited to 'kamon-play/src/test/scala/kamon/play/instrumentation')
-rw-r--r--kamon-play/src/test/scala/kamon/play/instrumentation/FakeRequestIntrumentation.scala26
1 files changed, 26 insertions, 0 deletions
diff --git a/kamon-play/src/test/scala/kamon/play/instrumentation/FakeRequestIntrumentation.scala b/kamon-play/src/test/scala/kamon/play/instrumentation/FakeRequestIntrumentation.scala
new file mode 100644
index 00000000..55b72908
--- /dev/null
+++ b/kamon-play/src/test/scala/kamon/play/instrumentation/FakeRequestIntrumentation.scala
@@ -0,0 +1,26 @@
+/* ===================================================
+ * 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.play.instrumentation
+
+import org.aspectj.lang.annotation.{ DeclareMixin, Aspect }
+import kamon.trace.TraceContextAware
+
+@Aspect
+class FakeRequestIntrumentation {
+ @DeclareMixin("play.api.test.FakeRequest")
+ def mixinContextAwareNewRequest: TraceContextAware = TraceContextAware.default
+}