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
|
|
|
|
2015-12-08 00:57:16 +08:00
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
# Reporting configuration
|
|
|
|
#---------------------------------------------------------------------------
|
|
|
|
|
2016-04-15 22:33:32 +08:00
|
|
|
# Configure this property to change the report title
|
|
|
|
#jmeter.reportgenerator.report_title=Apache JMeter Dashboard
|
|
|
|
|
2016-08-08 04:53:07 +08:00
|
|
|
# Used to generate a report based on a date range if needed
|
2016-09-12 02:33:18 +08:00
|
|
|
# Default date format (from SimpleDateFormat Java API and Locale.ENGLISH)
|
|
|
|
#jmeter.reportgenerator.date_format=yyyyMMddHHmmss
|
|
|
|
# Date range start date using date_format property
|
2016-08-08 04:53:07 +08:00
|
|
|
#jmeter.reportgenerator.start_date=
|
2016-09-12 02:33:18 +08:00
|
|
|
# Date range end date using date_format property
|
2016-08-08 04:53:07 +08:00
|
|
|
#jmeter.reportgenerator.end_date=
|
|
|
|
|
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-10-21 04:23:49 +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.
|
2016-10-21 04:23:49 +08:00
|
|
|
#jmeter.reportgenerator.apdex_tolerated_threshold=1500
|
2015-12-08 00:57:16 +08:00
|
|
|
|
|
|
|
# Indicates which graph series are filtered (regular expression)
|
2016-05-08 04:05:57 +08:00
|
|
|
# In the below example we filter on Search and Order samples
|
2017-02-11 23:15:14 +08:00
|
|
|
# Note that the end of the pattern should always include ((-success$|-failure$)|$)
|
2016-05-08 19:04:14 +08:00
|
|
|
# TransactionsPerSecondGraphConsumer suffixes transactions with "-success" or "-failure" depending
|
2016-04-03 04:17:57 +08:00
|
|
|
# on the result
|
2017-02-11 23:15:14 +08:00
|
|
|
#jmeter.reportgenerator.exporter.html.series_filter=((^Search)|(^Order))((-success$|-failure$)|$)
|
2016-04-03 04:17:57 +08:00
|
|
|
|
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
|