Runtime tools : Runtime Tools : Operation monitor : Implementing monitoring method : Dynamic weaving
  
Dynamic weaving
In dynamic weaving, aspects definitions will be in aop.xml and functions inside aspect will not change. However, dynamic weaving may experience notable performance downgrade according to aspectJ methodology.
1 Edit aop.xml to define aspect and parent class.
Parent class must be abstract class. You can just edit BTTMonitorExt\aj files.
2 Use JVM parameter to refer AspectJ
-javaagent:PathTo\org.aspectj.weaver_1.7.0.20120703164200\aspectjweaver.jar
3 Customized monitoring is the same as static weaving.
Go up to
Implementing monitoring method