aboutsummaryrefslogtreecommitdiff
path: root/kamon-core/src/main/resources/META-INF/aop.xml
blob: 47ce11d8f6c0f725df51ce69b26313b1ab139228 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE aspectj PUBLIC "-//AspectJ//DTD//EN" "http://www.eclipse.org/aspectj/dtd/aspectj.dtd">

<aspectj>
  <aspects>
    <!-- Disable AspectJ Weaver not present error -->
    <aspect name="kamon.instrumentation.AspectJWeaverMissingWarning"/>

    <!-- Futures -->
    <aspect name="kamon.instrumentation.scala.FutureInstrumentation"/>
    <aspect name="kamon.instrumentation.scalaz.FutureInstrumentation"/>

  </aspects>

  <weaver>
    <include within="scala.concurrent..*"/>
    <include within="scalaz.concurrent..*"/>
    <include within="spray..*"/>
    <include within="kamon..*"/>
  </weaver>

</aspectj>