aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/resources/META-INF/aop.xml
diff options
context:
space:
mode:
authorIvan Topolnak <ivantopo@gmail.com>2013-11-07 18:41:33 -0300
committerIvan Topolnak <ivantopo@gmail.com>2013-11-07 18:41:33 -0300
commit136fb4f454bfacc98f0d0ea8a82fbd1d35338715 (patch)
tree5f49fdcaebf607802153fe1646974f7881403712 /kamon-core/src/main/resources/META-INF/aop.xml
parent26003feac484c971abf7639dc3adb628c5f118c3 (diff)
downloadKamon-136fb4f454bfacc98f0d0ea8a82fbd1d35338715.tar.gz
Kamon-136fb4f454bfacc98f0d0ea8a82fbd1d35338715.tar.bz2
Kamon-136fb4f454bfacc98f0d0ea8a82fbd1d35338715.zip
halfway to our own NewRelic Agent
Diffstat (limited to 'kamon-core/src/main/resources/META-INF/aop.xml')
-rw-r--r--kamon-core/src/main/resources/META-INF/aop.xml34
1 files changed, 34 insertions, 0 deletions
diff --git a/kamon-core/src/main/resources/META-INF/aop.xml b/kamon-core/src/main/resources/META-INF/aop.xml
new file mode 100644
index 00000000..3532b19b
--- /dev/null
+++ b/kamon-core/src/main/resources/META-INF/aop.xml
@@ -0,0 +1,34 @@
+<!DOCTYPE aspectj PUBLIC "-//AspectJ//DTD//EN" "http://www.eclipse.org/aspectj/dtd/aspectj.dtd">
+
+<aspectj>
+ <weaver options="-verbose -showWeaveInfo">
+ <!--<dump within="*" beforeandafter="true"/>-->
+ </weaver>
+
+ <aspects>
+
+ <aspect name="kamon.trace.instrumentation.EnvelopeTracingContext"/>
+ <aspect name="kamon.trace.instrumentation.ActorCellInvokeInstrumentation"/>
+ <aspect name="kamon.trace.instrumentation.RunnableTracing" />
+ <aspect name="kamon.instrumentation.ActorSystemInstrumentation"/>
+ <aspect name="kamon.trace.instrumentation.ActorLoggingInstrumentation"/>
+
+ <!--<aspect name="kamon.instrumentation.MessageQueueInstrumentation" />-->
+ <!--<aspect name="kamon.instrumentation.InceptionAspect"/>-->
+ <!-- ExecutorService Instrumentation for Akka. -->
+<!-- <aspect name="kamon.instrumentation.ExecutorServiceFactoryProviderInstrumentation"/>
+ <aspect name="kamon.instrumentation.NamedExecutorServiceFactoryDelegateInstrumentation"/>-->
+ <!--<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..*"/>
+ </aspects>
+
+</aspectj>