[jboss-cvs] jboss-profiler/examples/jboss-4.0/deploy/jboss-profiler.aop/META-INF ...
Takuro Okada
t2-okada at nri.co.jp
Mon Feb 19 05:55:58 EST 2007
User: tokada
Date: 07/02/19 05:55:58
Added: examples/jboss-4.0/deploy/jboss-profiler.aop/META-INF Tag:
JBossProfiler_Expansion jboss-aop.xml
Log:
Modified some interfaces
Revision Changes Path
No revision
No revision
1.1.2.1 +79 -0 jboss-profiler/examples/jboss-4.0/deploy/jboss-profiler.aop/META-INF/Attic/jboss-aop.xml
(In the diff below, changes in quantity of whitespace are not shown.)
Index: jboss-aop.xml
===================================================================
RCS file: jboss-aop.xml
diff -N jboss-aop.xml
--- /dev/null 1 Jan 1970 00:00:00 -0000
+++ jboss-aop.xml 19 Feb 2007 10:55:58 -0000 1.1.2.1
@@ -0,0 +1,79 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE aop PUBLIC
+ "-//JBoss//DTD JBOSS AOP 1.0//EN"
+ "http://www.jboss.org/aop/dtd/jboss-aop_1_0.dtd">
+
+<aop>
+
+ <!-- ##### JBoss Profiler : AOP Interceptor ##### -->
+
+ <stack name="StatisticsInterceptors">
+ <interceptor name="ExecutionAopInterceptor"
+ class="org.jboss.profiler.exp.agent.interceptor.jbossaop.AopInterceptor"
+ scope="PER_VM">
+ <attribute name="CollectorFactoryName">
+ org.jboss.profiler.exp.agent.collector.ExecutionMetricCollectorFactory
+ </attribute>
+ <attribute name="Category">Application Components</attribute>
+ <!--
+ <attribute name="CollectorPoolSize">1</attribute>
+ <attribute name="CollectorQueueSize">10000</attribute>
+ -->
+ </interceptor>
+ <interceptor name="ConcurrentAopInterceptor"
+ class="org.jboss.profiler.exp.agent.interceptor.jbossaop.AopInterceptor"
+ scope="PER_VM">
+ <attribute name="CollectorFactoryName">
+ org.jboss.profiler.exp.agent.collector.ConcurrentMetricCollectorFactory
+ </attribute>
+ <attribute name="Category">Application Components</attribute>
+ <!--
+ <attribute name="CollectorPoolSize">1</attribute>
+ <attribute name="CollectorQueueSize">10000</attribute>
+ -->
+ </interceptor>
+ <interceptor name="MemoryAopInterceptor"
+ class="org.jboss.profiler.exp.agent.interceptor.jbossaop.AopInterceptor"
+ scope="PER_VM">
+ <attribute name="CollectorFactoryName">
+ org.jboss.profiler.exp.agent.collector.MemoryMetricCollectorFactory
+ </attribute>
+ <attribute name="Category">Application Components</attribute>
+ <!--
+ <attribute name="CollectorPoolSize">1</attribute>
+ <attribute name="CollectorQueueSize">10000</attribute>
+ -->
+ </interceptor>
+ </stack>
+
+ <interceptor name="AnalyzeInterceptor"
+ class="org.jboss.profiler.exp.agent.interceptor.jbossaop.AopInterceptor"
+ scope="PER_VM">
+ <attribute name="CollectorFactoryName">
+ org.jboss.profiler.exp.agent.collector.ThreadMetricCollectorFactory
+ </attribute>
+ <attribute name="Category">Beans</attribute>
+ <!--
+ <attribute name="CollectorPoolSize">1</attribute>
+ <attribute name="CollectorQueueSize">10000</attribute>
+ -->
+ </interceptor>
+
+
+ <!-- ##### JBoss Profiler : Pointcuts ##### -->
+
+ <!-- SAMPLE: The expression set for the Spring Framework JPetStore -->
+ <bind pointcut="execution(* org.springframework.samples.jpetstore.web.spring.*->handleRequest(..)) OR execution(* org.springframework.samples.jpetstore.web.spring.*->processFinish(..))">
+ <stack-ref name="StatisticsInterceptors"/>
+ <interceptor-ref name="AnalyzeInterceptor"/>
+ </bind>
+ <bind pointcut="execution(* org.springframework.samples.jpetstore.domain.logic.PetStoreImpl->*(..))">
+ <stack-ref name="StatisticsInterceptors"/>
+ <interceptor-ref name="AnalyzeInterceptor"/>
+ </bind>
+ <bind pointcut="execution(* org.springframework.samples.jpetstore.dao.ibatis.*Dao->*(..))">
+ <stack-ref name="StatisticsInterceptors"/>
+ <interceptor-ref name="AnalyzeInterceptor"/>
+ </bind>
+
+</aop>
More information about the jboss-cvs-commits
mailing list