[jboss-svn-commits] JBL Code SVN: r34450 - in labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler: jbossprofiler and 1 other directory.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Mon Aug 2 05:22:02 EDT 2010


Author: whitingjr
Date: 2010-08-02 05:22:01 -0400 (Mon, 02 Aug 2010)
New Revision: 34450

Added:
   labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jbossprofiler/
   labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jbossprofiler/ant-profiler.xml
   labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jbossprofiler/configuration.properties
Log:
Added and updated jboss profiler configuration.

Added: labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jbossprofiler/ant-profiler.xml
===================================================================
--- labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jbossprofiler/ant-profiler.xml	                        (rev 0)
+++ labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jbossprofiler/ant-profiler.xml	2010-08-02 09:22:01 UTC (rev 34450)
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!--
+Copyright 2009 Red Hat, Inc.
+ Red Hat licenses this file to you under the Apache License, version
+ 2.0 (the "License"); you may not use this file except in compliance
+ with the License.  You may obtain a copy of the License at
+   http://www.apache.org/licenses/LICENSE-2.0
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied.  See the License for the specific language governing
+ permissions and limitations under the License.
+  -->
+
+<project name="JBoss TM: JProfiler Ant Import ">
+
+	<path id="jbossprofiler.ant.task.classpath">
+		<fileset dir="${profiler.agent.library.path}/bin">
+			<include name="jpexport" />
+			<include name="ant.jar" />
+		</fileset>
+		<fileset dir="lib/profilerdrivers/${profiler}">
+			<include name="*.jar" />
+		</fileset>
+	</path>
+
+	<taskdef name="enable" classpathref="jbossprofiler.ant.task.classpath" />
+	<taskdef name="disable" classname="org.jboss.profiler.ant.DisableProfilerTask" />
+	<taskdef name="startprofiler" classname="org.jboss.profiler.ant.StartProfilerTask" />
+	<taskdef name="stopprofiler" classname="org.jboss.profiler.ant.StopProfilerTask" />
+	<taskdef name="clearsnapshots" classname="org.jboss.profiler.ant.ClearSnapshotsTask" />
+	<taskdef name="gc" classname="org.jboss.profiler.ant.GCTask" />
+	<taskdef name="save" classname="org.jboss.profiler.ant.SaveTask" />
+	<taskdef name="add" classname="org.jboss.profiler.ant.AddClassesTask" />
+	<taskdef name="remove" classname="org.jboss.profiler.ant.RemoveClassesTask" />
+
+
+	<target name="process-profiling-data">
+	</target>
+
+</project>
\ No newline at end of file

Added: labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jbossprofiler/configuration.properties
===================================================================
--- labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jbossprofiler/configuration.properties	                        (rev 0)
+++ labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/profiler/jbossprofiler/configuration.properties	2010-08-02 09:22:01 UTC (rev 34450)
@@ -0,0 +1,45 @@
+
+# JBoss Profiler configuration properties
+
+profiler.library.name=jboss-profiler.jar
+
+# used in build.xml
+profiler.agent.argument=-javaagent:lib/profilerdrivers/${profiler}/${profiler.library.name}
+# used in build.xml
+profiler.vm.arguments=-Djboss-profiler.properties=build/classes/profile.properties
+
+profiler.controller=org.jboss.jbossts.performance.profiler.implementation.JBossProfiler
+
+protocol=socket
+host=localhost
+port=5400
+threshold=1.0
+savelocation=.
+plugin.1=org.jboss.profiler.plugins.Hibernate
+plugin.2=org.jboss.profiler.plugins.Seam
+
+
+enable=yes
+precompiled=no
+cpu=yes
+memory=yes
+includes=org.jboss.profiler.*
+excludes=*
+visibility=private
+save=yes
+savelocation=.
+startup=yes
+repository=no
+remote=yes
+store=memory
+location=.
+host=localhost
+port=5400
+ejb=yes
+servlet=yes
+jsf=yes
+jmx=yes
+rmi=yes
+corba=yes
+plugin.1=org.jboss.profiler.plugins.Hibernate
+plugin.2=org.jboss.profiler.plugins.Seam
\ No newline at end of file



More information about the jboss-svn-commits mailing list