aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/resources
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2014-01-25 02:27:47 -0300
committerIvan Topolnjak <ivantopo@gmail.com>2014-01-25 02:27:47 -0300
commitf341a9f01aa53bb79dbbc8a2cccd652c03ae5267 (patch)
treecb2f6d9409a3a8f771d0adf239e3a144c3b0ba28 /kamon-core/src/main/resources
parentc140f7530b80b597ab52b08c41e8f56b52ba22ed (diff)
downloadKamon-f341a9f01aa53bb79dbbc8a2cccd652c03ae5267.tar.gz
Kamon-f341a9f01aa53bb79dbbc8a2cccd652c03ae5267.tar.bz2
Kamon-f341a9f01aa53bb79dbbc8a2cccd652c03ae5267.zip
fix include directives in aop.xml files
Diffstat (limited to 'kamon-core/src/main/resources')
-rw-r--r--kamon-core/src/main/resources/META-INF/aop.xml42
1 files changed, 19 insertions, 23 deletions
diff --git a/kamon-core/src/main/resources/META-INF/aop.xml b/kamon-core/src/main/resources/META-INF/aop.xml
index 1448f22f..e7c5836a 100644
--- a/kamon-core/src/main/resources/META-INF/aop.xml
+++ b/kamon-core/src/main/resources/META-INF/aop.xml
@@ -1,31 +1,27 @@
<!DOCTYPE aspectj PUBLIC "-//AspectJ//DTD//EN" "http://www.eclipse.org/aspectj/dtd/aspectj.dtd">
<aspectj>
- <weaver options="-verbose -showWeaveInfo">
- <!-- In case you want to see the weaved classes -->
- <!--<dump within="*"/>-->
- </weaver>
+ <aspects>
+ <!-- Actors -->
+ <aspect name="akka.instrumentation.RepointableActorRefTraceContextMixin"/>
+ <aspect name="akka.instrumentation.SystemMessageTraceContextMixin"/>
+ <aspect name="akka.instrumentation.ActorSystemMessagePassingTracing"/>
+ <aspect name="akka.instrumentation.EnvelopeTraceContextMixin"/>
+ <aspect name="akka.instrumentation.BehaviourInvokeTracing"/>
+ <aspect name="kamon.instrumentation.ActorLoggingTracing"/>
- <aspects>
- <!-- Actors -->
- <aspect name="akka.instrumentation.RepointableActorRefTraceContextMixin"/>
- <aspect name="akka.instrumentation.SystemMessageTraceContextMixin"/>
- <aspect name="akka.instrumentation.ActorSystemMessagePassingTracing"/>
- <aspect name="akka.instrumentation.EnvelopeTraceContextMixin"/>
- <aspect name="akka.instrumentation.BehaviourInvokeTracing"/>
- <aspect name="kamon.instrumentation.ActorLoggingTracing"/>
+ <!-- Futures -->
+ <aspect name="kamon.instrumentation.FutureTracing"/>
- <!-- Futures -->
- <aspect name="kamon.instrumentation.FutureTracing"/>
+ <!-- Patterns -->
+ <aspect name="akka.instrumentation.AskPatternTracing"/>
+ </aspects>
- <!-- Patterns -->
- <aspect name="akka.instrumentation.AskPatternTracing"/>
-
-
- <include within="scala.concurrent..*"/>
- <include within="akka..*"/>
- <include within="spray..*"/>
- <include within="kamon..*"/>
- </aspects>
+ <weaver options="-verbose -showWeaveInfo">
+ <include within="scala.concurrent..*"/>
+ <include within="akka..*"/>
+ <include within="spray..*"/>
+ <include within="kamon..*"/>
+ </weaver>
</aspectj> \ No newline at end of file