You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jmeter-dev@jakarta.apache.org by se...@apache.org on 2006/03/28 03:31:04 UTC

svn commit: r389349 - in /jakarta/jmeter/branches/rel-2-1/bin: jmeter-n.bat jmeter.properties

Author: sebb
Date: Mon Mar 27 17:31:01 2006
New Revision: 389349

URL: http://svn.apache.org/viewcvs?rev=389349&view=rev
Log:
Document environment variables; add JVM_ARGS to Unix script

Modified:
    jakarta/jmeter/branches/rel-2-1/bin/jmeter-n.bat
    jakarta/jmeter/branches/rel-2-1/bin/jmeter.properties

Modified: jakarta/jmeter/branches/rel-2-1/bin/jmeter-n.bat
URL: http://svn.apache.org/viewcvs/jakarta/jmeter/branches/rel-2-1/bin/jmeter-n.bat?rev=389349&r1=389348&r2=389349&view=diff
==============================================================================
--- jakarta/jmeter/branches/rel-2-1/bin/jmeter-n.bat (original)
+++ jakarta/jmeter/branches/rel-2-1/bin/jmeter-n.bat Mon Mar 27 17:31:01 2006
@@ -48,6 +48,6 @@
 goto :EOF
 :winNT3
 
-jmeter -n -t %1 -l %~dpn1.jtl
-
+call jmeter -n -t %1 -l %~dpn1.jtl
+pause
 :END

Modified: jakarta/jmeter/branches/rel-2-1/bin/jmeter.properties
URL: http://svn.apache.org/viewcvs/jakarta/jmeter/branches/rel-2-1/bin/jmeter.properties?rev=389349&r1=389348&r2=389349&view=diff
==============================================================================
--- jakarta/jmeter/branches/rel-2-1/bin/jmeter.properties (original)
+++ jakarta/jmeter/branches/rel-2-1/bin/jmeter.properties Mon Mar 27 17:31:01 2006
@@ -45,6 +45,10 @@
 # XML Reader(Parser) - Must implement SAX 2 specs
 xml.parser=org.apache.xerces.parsers.SAXParser
 
+#---------------------------------------------------------------------------
+# SSL configuration
+#---------------------------------------------------------------------------
+
 #Classname of the ssl provider to be used (to enable testing of https urls)
 #And the package name where Stream Handlers can be found
 #These provided defaults can be uncommented, and they will work if you are using
@@ -74,6 +78,10 @@
 #JSSE, it needs to be done from the Java command (i.e. -Djavax.net.debug=all)
 javax.net.debug=all
 
+#---------------------------------------------------------------------------
+# Look and Feel configuration
+#---------------------------------------------------------------------------
+
 #Classname of the Swing default UI
 #Installed Look and Feel classes on Windows are:
 #  Metal   = javax.swing.plaf.metal.MetalLookAndFeel
@@ -87,6 +95,13 @@
 # alternate:
 #jmeter.icons=org/apache/jmeter/images/icon_1.properties
 
+#Components to not display in JMeter GUI
+not_in_menu=Remote Method Configuration,JNDI Configuration,JNDI Lookup Configuration,JNDI Request,Default Controller,org.apache.jmeter.control.DynamicController, org.apache.jmeter.protocol.http.control.Cookie,org.apache.jmeter.protocol.http.control.Authorization,org.apache.jmeter.config.LoginConfig,Header,org.apache.jmeter.protocol.http.config.MultipartUrlConfig
+
+#---------------------------------------------------------------------------
+# Remote hosts and RMI configuration
+#---------------------------------------------------------------------------
+
 # Remote Hosts - comma delimited
 remote_hosts=127.0.0.1
 #remote_hosts:localhost:1099,localhost:2010
@@ -94,8 +109,9 @@
 # RMI port to be used by the server
 #server_port=1099
 
-#Components to not display in JMeter GUI
-not_in_menu=Remote Method Configuration,JNDI Configuration,JNDI Lookup Configuration,JNDI Request,Default Controller,org.apache.jmeter.control.DynamicController, org.apache.jmeter.protocol.http.control.Cookie,org.apache.jmeter.protocol.http.control.Authorization,org.apache.jmeter.config.LoginConfig,Header,org.apache.jmeter.protocol.http.config.MultipartUrlConfig
+# Change default port used by server (need to start rmiregistry with same port)
+#server.rmi.port=1099
+
 
 #---------------------------------------------------------------------------
 #         Logging Configuration
@@ -248,16 +264,28 @@
 #jmeter.save.saveservice.default_delimiter=,
 #jmeter.save.saveservice.print_field_names=true
 
+#---------------------------------------------------------------------------
+# Upgrade property
+#---------------------------------------------------------------------------
+
 # File that holds a record of name changes for backward compatibility issues
 upgrade_properties=/bin/upgrade.properties
 
+#---------------------------------------------------------------------------
+# JMeter Proxy recorder configuration
+#---------------------------------------------------------------------------
+
 # If the proxy detects a gap of at least 1s (default) between HTTP requests,
 # it assumes that the user has clicked a new URL
 #proxy.pause=1000
 
 # Add numeric prefix to Sampler names (default false)
 #proxy.number.requests=true
-#
+
+#---------------------------------------------------------------------------
+# HTML Parser configuration
+#---------------------------------------------------------------------------
+
 # Define the HTML parser to be used.
 # Default parser:
 #htmlParser.className=org.apache.jmeter.protocol.http.parser.HtmlParserHTMLParser
@@ -265,16 +293,9 @@
 #htmlParser.className=org.apache.jmeter.protocol.http.parser.JTidyHTMLParser
 #htmlParser.className=org.apache.jmeter.protocol.http.parser.RegexpHTMLParser
 
-# Maximum redirects to follow in a single sequence (default 5)
-#httpsampler.max_redirects=5
-# Maximum frame/iframe nesting depth (default 5)
-#httpsampler.max_frame_depth=5
-
-# Put the start time stamp in logs instead of the end
-sampleresult.timestamp.start=true
-
-# The encoding to be used if none is provided (default ISO-8859-1)
-#sampleresult.default.encoding=ISO-8859-1
+#---------------------------------------------------------------------------
+# Remote batching configuration
+#---------------------------------------------------------------------------
 
 # Remote batching support
 # default is Standard, which returns each sample
@@ -297,7 +318,10 @@
 # To set the Monitor Health Visualiser buffer size, enter the desired value
 # monitor.buffer.size=800
 
-#TCP sampler
+#---------------------------------------------------------------------------
+# TCP Sampler configuration
+#---------------------------------------------------------------------------
+
 # The default handler class
 #tcp.handler=TCPClientImpl
 #
@@ -311,6 +335,10 @@
 # status.properties = property file to convert codes to messages
 #tcp.status.properties=mytestfiles/tcpstatus.properties
 
+#---------------------------------------------------------------------------
+# Summariser configuration
+#---------------------------------------------------------------------------
+
 # Summariser settings
 #
 # Define the following property to automatically start a summariser with that name
@@ -325,6 +353,10 @@
 # Write messages to System.out
 #summariser.out=true
 
+#---------------------------------------------------------------------------
+# BeanShell configuration
+#---------------------------------------------------------------------------
+
 # BeanShell Server properties
 #
 # Define the port number as non-zero to start the server on that port
@@ -354,6 +386,10 @@
 # Number of failed samples before a message is sent
 #mailer.failurelimit=2
 
+#---------------------------------------------------------------------------
+# CSVRead configuration
+#---------------------------------------------------------------------------
+
 # CSVRead delimiter setting (default ",")
 # Make sure that there are no trailing spaces or tabs after the delimiter
 # characters, or these will be included in the list of valid delimiters
@@ -364,6 +400,22 @@
 # The following line has a tab after the =
 #csvread.delimiter=	
 
+#---------------------------------------------------------------------------
+# Miscellaneous configuration
+#---------------------------------------------------------------------------
+
+
+# Maximum redirects to follow in a single sequence (default 5)
+#httpsampler.max_redirects=5
+# Maximum frame/iframe nesting depth (default 5)
+#httpsampler.max_frame_depth=5
+
+# Put the start time stamp in logs instead of the end
+sampleresult.timestamp.start=true
+
+# The encoding to be used if none is provided (default ISO-8859-1)
+#sampleresult.default.encoding=ISO-8859-1
+
 # CookieManager behaviour - should cookies with null/empty values be deleted?
 # Default is true. Use false to revert to original behaviour
 #CookieManager.delete_null_cookies=true
@@ -373,9 +425,6 @@
 # In case this causes problems, the previous behaviour can be restored by uncommenting
 # the following line.
 #jmeterthread.startearlier=false
-
-# Change default port used by server (need to start rmiregistry with same port)
-#server.rmi.port=1099
 
 # Users can define additional classpath items by setting the property below
 # Paths with spaces may cause problems for the JVM



---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org