2006-06-02 02:12:40 +08:00
|
|
|
# Sample user.properties file
|
|
|
|
#
|
2007-02-03 05:12:01 +08:00
|
|
|
## Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
## contributor license agreements. See the NOTICE file distributed with
|
|
|
|
## this work for additional information regarding copyright ownership.
|
|
|
|
## The ASF 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.
|
2010-06-21 10:31:23 +08:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
# Classpath configuration
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
#
|
2013-08-30 03:12:58 +08:00
|
|
|
# List of paths (separated by ;) to search for additional JMeter plugin classes,
|
|
|
|
# for example new GUI elements and samplers.
|
|
|
|
# A path item can either be a jar file or a directory.
|
|
|
|
# Any jar file in such a directory will be automatically included,
|
|
|
|
# jar files in sub directories are ignored.
|
|
|
|
# The given value is in addition to any jars found in the lib/ext directory.
|
2015-08-30 00:02:41 +08:00
|
|
|
# Do not use this for utility or plugin dependency jars.
|
2010-06-21 10:31:23 +08:00
|
|
|
#search_paths=/app1/lib;/app2/lib
|
|
|
|
|
2013-08-30 03:12:58 +08:00
|
|
|
# List of paths that JMeter will search for utility and plugin dependency classes.
|
2015-08-30 00:02:41 +08:00
|
|
|
# Use your platform path separator (java.io.File.separatorChar in Java) to separate multiple paths.
|
2013-08-30 03:12:58 +08:00
|
|
|
# A path item can either be a jar file or a directory.
|
|
|
|
# Any jar file in such a directory will be automatically included,
|
|
|
|
# jar files in sub directories are ignored.
|
|
|
|
# The given value is in addition to any jars found in the lib directory.
|
|
|
|
# All entries will be added to the class path of the system class loader
|
|
|
|
# and also to the path of the JMeter internal loader.
|
2010-06-21 10:31:23 +08:00
|
|
|
# Paths with spaces may cause problems for the JVM
|
2015-08-30 00:02:41 +08:00
|
|
|
#Example for windows (; separator)
|
2013-08-30 03:12:58 +08:00
|
|
|
#user.classpath=../classes;../lib;../app1/jar1.jar;../app2/jar2.jar
|
2015-08-30 00:02:41 +08:00
|
|
|
#Example for linux (:separator)
|
|
|
|
#user.classpath=../classes:../lib:../app1/jar1.jar:../app2/jar2.jar
|
2013-08-30 03:12:58 +08:00
|
|
|
|
|
|
|
# List of paths (separated by ;) that JMeter will search for utility
|
|
|
|
# and plugin dependency classes.
|
|
|
|
# A path item can either be a jar file or a directory.
|
|
|
|
# Any jar file in such a directory will be automatically included,
|
|
|
|
# jar files in sub directories are ignored.
|
|
|
|
# The given value is in addition to any jars found in the lib directory
|
|
|
|
# or given by the user.classpath property.
|
|
|
|
# All entries will be added to the path of the JMeter internal loader only.
|
|
|
|
# For plugin dependencies using plugin_dependency_paths should be preferred over
|
|
|
|
# user.classpath.
|
|
|
|
#plugin_dependency_paths=../dependencies/lib;../app1/jar1.jar;../app2/jar2.jar
|
2010-06-29 05:58:07 +08:00
|
|
|
|
2010-06-21 10:31:23 +08:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
# Logging configuration
|
|
|
|
#---------------------------------------------------------------------------
|
2007-06-02 21:48:56 +08:00
|
|
|
#log_level.jorphan.reflect=DEBUG
|
|
|
|
# Warning: enabling the next debug line causes javax.net.ssl.SSLException: Received fatal alert: unexpected_message
|
|
|
|
# for certain sites when used with the default HTTP Sampler
|
|
|
|
#log_level.jmeter.util.HttpSSLProtocolSocketFactory=DEBUG
|
2009-08-05 21:21:44 +08:00
|
|
|
#log_level.jmeter.util.JsseSSLManager=DEBUG
|
|
|
|
|
|
|
|
# Enable Proxy request debug
|
2010-06-21 10:31:23 +08:00
|
|
|
#log_level.jmeter.protocol.http.proxy.HttpRequestHdr=DEBUG
|
2015-12-08 00:57:16 +08:00
|
|
|
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
# Reporting configuration
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
2016-02-24 04:28:31 +08:00
|
|
|
# If you want to debug reporting, uncomment this line
|
|
|
|
#log_level.jmeter.report=DEBUG
|
|
|
|
|
2016-04-15 22:33:32 +08:00
|
|
|
# Configure this property to change the report title
|
|
|
|
#jmeter.reportgenerator.report_title=Apache JMeter Dashboard
|
|
|
|
|
2015-12-08 00:57:16 +08:00
|
|
|
# Change this parameter if you want to change the granularity of over time graphs.
|
|
|
|
#jmeter.reportgenerator.overall_granularity=60000
|
|
|
|
|
2016-04-15 01:13:21 +08:00
|
|
|
# Change this parameter if you want to change the granularity of Response time distribution
|
|
|
|
# Set to 500 ms by default
|
|
|
|
#jmeter.reportgenerator.graph.responseTimeDistribution.property.set_granularity=500
|
|
|
|
|
2015-12-08 00:57:16 +08:00
|
|
|
# Change this parameter if you want to keep only some samples.
|
2016-04-16 20:35:29 +08:00
|
|
|
# Regular Expression which Indicates which samples to keep for graphs and statistics generation.
|
|
|
|
# Empty value means no filtering
|
2015-12-08 00:57:16 +08:00
|
|
|
#jmeter.reportgenerator.sample_filter=
|
|
|
|
|
|
|
|
# Change this parameter if you want to override the APDEX satisfaction threshold.
|
2016-04-27 01:12:48 +08:00
|
|
|
#jmeter.reportgenerator.apdex_satisfied_threshold=500
|
2015-12-08 00:57:16 +08:00
|
|
|
|
|
|
|
# Change this parameter if you want to override the APDEX tolerance threshold.
|
|
|
|
#jmeter.reportgenerator.apdex_tolerated_threshold=1500
|
|
|
|
|
|
|
|
# Indicates which graph series are filtered (regular expression)
|
2016-02-24 04:28:31 +08:00
|
|
|
# In the below example we filter on Sample1 and Sample2
|
2016-04-03 04:17:57 +08:00
|
|
|
# Note that the end of the pattern should always include (-success|-failure)?
|
|
|
|
# Transactions per second suffixes Transactions with "-success" or "-failure" depending
|
|
|
|
# on the result
|
|
|
|
#jmeter.reportgenerator.exporter.html.series_filter=((^Sample1)|(^Sample2))(-success|-failure)?
|
|
|
|
|
2015-12-08 00:57:16 +08:00
|
|
|
# Indicates whether only controller samples are displayed on graphs that support it.
|
2016-04-27 01:12:48 +08:00
|
|
|
#jmeter.reportgenerator.exporter.html.show_controllers_only=false
|
2016-05-03 19:33:46 +08:00
|
|
|
|
|
|
|
jmeter.save.saveservice.timestamp_format=dd/MM HH:mm:ss
|