[jboss-svn-commits] JBL Code SVN: r36326 - labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jprofiler.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Thu Dec 9 14:05:52 EST 2010


Author: whitingjr
Date: 2010-12-09 14:05:52 -0500 (Thu, 09 Dec 2010)
New Revision: 36326

Modified:
   labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jprofiler/ant-profiler.xml
Log:
Fixed profiler task to extract results.

Modified: labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jprofiler/ant-profiler.xml
===================================================================
--- labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jprofiler/ant-profiler.xml	2010-12-09 19:05:00 UTC (rev 36325)
+++ labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jprofiler/ant-profiler.xml	2010-12-09 19:05:52 UTC (rev 36326)
@@ -33,13 +33,22 @@
 
    <target name="process-profiling-data">
       <export snapshotfile="${profiler.data.jps.dir}/${profiler.data.jps.file}">
-         <view name="CallTree" file="${output.directory}/calltree.html"/>
+         <view name="CallTree" file="${output.directory}/calltree.html">
+      	  <option name="viewfilters" value="org.jboss.jbossts.performance.jdbc.JDBCTask"/>
+      	</view>
          <view name="CallTree" file="${output.directory}/calltree.xml">
             <option name="viewfilters" value="org.jboss.jbossts.performance.jdbc.JDBCTask"/>
          </view>
-         
       </export>
-            
    </target>
+	
+	<target name="generate-report" if="snapshot.file.isAvailable">
 
+	</target>
+   
+   <target name="extract-timings">
+   	<style in="${output.directory}/calltree.xml" out="${output.directory}/timings.xml" style="src/main/resources/xsl/profiler/${profiler}.xsl"/>
+   </target>
+   
+
 </project>
\ No newline at end of file



More information about the jboss-svn-commits mailing list