aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/resources/META-INF/aop.xml
blob: c63e17e5743c59c61fdfc53f79d21c3ddef1b622 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!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.instrumentation.EnvelopeTracingContext"/>
        <aspect name="kamon.instrumentation.ActorCellInvokeInstrumentation"/>
        <aspect name="kamon.trace.instrumentation.RunnableTracing" />
        <aspect name="kamon.instrumentation.SprayRequestContextTracing"/>
        <aspect name="kamon.instrumentation.SprayOpenRequestContextTracing"/>
        <aspect name = "kamon.instrumentation.SprayServerInstrumentation"/>
        <aspect name="kamon.instrumentation.ActorSystemInstrumentation"/>
        <aspect name="kamon.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>