[jboss-cvs] jboss-profiler/exsamples/jboss-profiler.aop/META-INF ...

Takuro Okada t2-okada at nri.co.jp
Thu Oct 26 05:06:31 EDT 2006


  User: tokada  
  Date: 06/10/26 05:06:31

  Added:       exsamples/jboss-profiler.aop/META-INF  Tag:
                        JBossProfiler_Expansion jboss-aop.xml
  Log:
  
  
  Revision  Changes    Path
  No                   revision
  
  
  No                   revision
  
  
  1.1.2.1   +88 -0     jboss-profiler/exsamples/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	26 Oct 2006 09:06:31 -0000	1.1.2.1
  @@ -0,0 +1,88 @@
  +<?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 : Interceptors ##### -->
  +  
  +  <stack name="StatisticsInterceptors">
  +    <interceptor name="ExecutionAopInterceptor"
  +                 class="org.jboss.profiler.exp.agent.interceptor.AopInterceptor"
  +                 scope="PER_VM">
  +      <attribute name="ProfilerServiceName">jboss.profiler:service=ProfilerService</attribute>
  +      <!--<attribute name="ProfilerServiceAddress">jnp://192.168.0.1:1099</attribute>-->
  +      <attribute name="CollectorFactoryName">org.jboss.profiler.exp.agent.collector.ExecutionMetricCollectorFactory</attribute>
  +      <attribute name="Category">Beans</attribute>
  +      <attribute name="Async">true</attribute>
  +      <attribute name="CollectorPoolSize">10</attribute>
  +    </interceptor>
  +    <interceptor name="ConcurrentAopInterceptor"
  +                 class="org.jboss.profiler.exp.agent.interceptor.AopInterceptor"
  +                 scope="PER_VM">
  +      <attribute name="ProfilerServiceName">jboss.profiler:service=ProfilerService</attribute>
  +      <!--<attribute name="ProfilerServiceAddress">jnp://192.168.0.1:1099</attribute>-->
  +      <attribute name="CollectorFactoryName">org.jboss.profiler.exp.agent.collector.ConcurrentMetricCollectorFactory</attribute>
  +      <attribute name="Category">Beans</attribute>
  +      <attribute name="Async">true</attribute>
  +      <attribute name="CollectorPoolSize">10</attribute>
  +    </interceptor>
  +    <interceptor name="MemoryAopInterceptor"
  +                 class="org.jboss.profiler.exp.agent.interceptor.AopInterceptor"
  +                 scope="PER_VM">
  +      <attribute name="ProfilerServiceName">jboss.profiler:service=ProfilerService</attribute>
  +      <!--<attribute name="ProfilerServiceAddress">jnp://192.168.0.1:1099</attribute>-->
  +      <attribute name="CollectorFactoryName">org.jboss.profiler.exp.agent.collector.MemoryMetricCollectorFactory</attribute>
  +      <attribute name="Category">Beans</attribute>
  +      <attribute name="Async">true</attribute>
  +      <attribute name="CollectorPoolSize">10</attribute>
  +    </interceptor>
  +  </stack>
  +  
  +  <interceptor name="AnalyzeInterceptor"
  +               class="org.jboss.profiler.exp.agent.interceptor.AopInterceptor"
  +               scope="PER_VM">
  +    <attribute name="ProfilerServiceName">jboss.profiler:service=ProfilerService</attribute>
  +    <!--<attribute name="ProfilerServiceAddress">jnp://192.168.0.1:1099</attribute>-->
  +    <attribute name="CollectorFactoryName">org.jboss.profiler.exp.agent.collector.ThreadMetricCollectorFactory</attribute>
  +    <attribute name="Category">Beans</attribute>
  +    <attribute name="Async">true</attribute>
  +    <attribute name="CollectorPoolSize">10</attribute>
  +  </interceptor>
  +  
  +  <!--
  +  <interceptor name="StackTraceAopInterceptor"
  +               class="org.jboss.profiler.exp.agent.interceptor.AopInterceptor"
  +               scope="PER_VM">
  +    <attribute name="ProfilerServiceName">jboss.profiler:service=ProfilerService</attribute>
  +    <attribute name="CollectorFactoryName">org.jboss.profiler.exp.agent.collector.StackTraceMetricCollectorFactory</attribute>
  +    <attribute name="Category">Beans</attribute>
  +    <attribute name="Async">true</attribute>
  +    <attribute name="CollectorPoolSize">10</attribute>
  +  </interceptor>
  +  
  +  <interceptor name="PassageAopInterceptor"
  +               class="org.jboss.profiler.exp.agent.interceptor.AopInterceptor"
  +               scope="PER_VM">
  +    <attribute name="ProfilerServiceName">jboss.profiler:service=ProfilerService</attribute>
  +    <attribute name="CollectorFactoryName">org.jboss.profiler.exp.agent.collector.TimeScaleMetricCollectorFactory</attribute>
  +    <attribute name="Category">Beans</attribute>
  +    <attribute name="Async">true</attribute>
  +    <attribute name="CollectorPoolSize">10</attribute>
  +  </interceptor>
  +  -->
  +  
  +  
  +  <!-- ##### JBoss Profiler : Pointcuts ##### -->
  +  
  +  <bind pointcut="execution(* org.jboss.profiler.exp.test.target.logic.*->*(..))">
  +    <stack-ref name="StatisticsInterceptors"/>
  +    <interceptor-ref name="AnalyzeInterceptor"/>
  +  </bind>
  +  <bind pointcut="execution(* org.jboss.profiler.exp.test.target.dao.*->*(..))">
  +    <stack-ref name="StatisticsInterceptors"/>
  +    <interceptor-ref name="AnalyzeInterceptor"/>
  +  </bind>
  +
  +</aop>
  
  
  



More information about the jboss-cvs-commits mailing list