aboutsummaryrefslogtreecommitdiff
path: root/kamon-core
diff options
context:
space:
mode:
authorIvan Topolnak <ivantopo@gmail.com>2013-11-12 18:15:00 -0300
committerIvan Topolnak <ivantopo@gmail.com>2013-11-12 18:15:00 -0300
commitef8ef647162b5f3eb9033bafb87805e2de5f576e (patch)
treeb7c0d86e6519b497903152d23c307652f0e3a2f5 /kamon-core
parent5c8eb362ea6a957449419cec6c48b54159d4c68e (diff)
downloadKamon-ef8ef647162b5f3eb9033bafb87805e2de5f576e.tar.gz
Kamon-ef8ef647162b5f3eb9033bafb87805e2de5f576e.tar.bz2
Kamon-ef8ef647162b5f3eb9033bafb87805e2de5f576e.zip
Initial ask pattern tracing
Diffstat (limited to 'kamon-core')
-rw-r--r--kamon-core/src/main/resources/META-INF/aop.xml17
1 files changed, 7 insertions, 10 deletions
diff --git a/kamon-core/src/main/resources/META-INF/aop.xml b/kamon-core/src/main/resources/META-INF/aop.xml
index 3532b19b..af1dad7c 100644
--- a/kamon-core/src/main/resources/META-INF/aop.xml
+++ b/kamon-core/src/main/resources/META-INF/aop.xml
@@ -2,7 +2,7 @@
<aspectj>
<weaver options="-verbose -showWeaveInfo">
- <!--<dump within="*" beforeandafter="true"/>-->
+ <!--<dump within="*"/>-->
</weaver>
<aspects>
@@ -12,7 +12,7 @@
<aspect name="kamon.trace.instrumentation.RunnableTracing" />
<aspect name="kamon.instrumentation.ActorSystemInstrumentation"/>
<aspect name="kamon.trace.instrumentation.ActorLoggingInstrumentation"/>
-
+ <aspect name="akka.pattern.tracing.AskPatternTracing"/>
<!--<aspect name="kamon.instrumentation.MessageQueueInstrumentation" />-->
<!--<aspect name="kamon.instrumentation.InceptionAspect"/>-->
<!-- ExecutorService Instrumentation for Akka. -->
@@ -21,14 +21,11 @@
<!--<aspect name ="kamon.instrumentation.ForkJoinPoolInstrumentation"/>-->
- <include within="*"/>
- <exclude within="javax..*"/>
- <exclude within="com.newrelic..*"/>
- <exclude within="org.aspectj..*"/>
- <exclude within="scala..*"/>
- <exclude within="scalaz..*"/>
- <exclude within="scalad..*"/>
- <exclude within="play..*"/>
+ <!--<exclude within="*"/>-->
+ <include within="scala.concurrent..*"/>
+ <include within="akka..*"/>
+ <include within="spray..*"/>
+ <include within="kamon..*"/>
</aspects>
</aspectj>