mirror of https://github.com/apache/jmeter.git
Correct typo before release fixes the spelling of the property.
Patch by Irek Pastusiak (the.automatic.tester at gmail.com)
Closes #205
git-svn-id: https://svn.apache.org/repos/asf/jmeter/trunk@1741062 13f79535-47bb-0310-9956-ffa450edef68
Former-commit-id: bf580db385
This commit is contained in:
parent
2c9565f287
commit
af7c18aaab
|
@ -1188,7 +1188,7 @@ classfinder.functions.notContain=.gui.
|
|||
#---------------------------------------------------------------------------
|
||||
|
||||
# Sets the satisfaction threshold for the APDEX calculation (in milliseconds).
|
||||
#jmeter.reportgenerator.apdex_statisfied_threshold=500
|
||||
#jmeter.reportgenerator.apdex_satisfied_threshold=500
|
||||
|
||||
# Sets the tolerance threshold for the APDEX calculation (in milliseconds).
|
||||
#jmeter.reportgenerator.apdex_tolerated_threshold=1500
|
||||
|
@ -1327,4 +1327,4 @@ system.properties=system.properties
|
|||
#testplan_validation.ignore_timers=true
|
||||
|
||||
# Number of iterations to use to validate a Thread Group
|
||||
#testplan_validation.number_iterations=1
|
||||
#testplan_validation.number_iterations=1
|
||||
|
|
|
@ -89,7 +89,7 @@
|
|||
#jmeter.reportgenerator.sample_filter=
|
||||
|
||||
# Change this parameter if you want to override the APDEX satisfaction threshold.
|
||||
#jmeter.reportgenerator.apdex_statisfied_threshold=500
|
||||
#jmeter.reportgenerator.apdex_satisfied_threshold=500
|
||||
|
||||
# Change this parameter if you want to override the APDEX tolerance threshold.
|
||||
#jmeter.reportgenerator.apdex_tolerated_threshold=1500
|
||||
|
@ -106,4 +106,4 @@
|
|||
#jmeter.reportgenerator.exporter.html.filters_only_sample_series=false
|
||||
|
||||
# Indicates whether only controller samples are displayed on graphs that support it.
|
||||
#jmeter.reportgenerator.exporter.html.show_controllers_only=false
|
||||
#jmeter.reportgenerator.exporter.html.show_controllers_only=false
|
||||
|
|
|
@ -52,9 +52,9 @@ public class ReportGeneratorConfiguration {
|
|||
private static final File REPORT_GENERATOR_KEY_TEMP_DIR_DEFAULT = new File(
|
||||
"temp");
|
||||
|
||||
// Apdex Satified Threshold
|
||||
// Apdex Satisfied Threshold
|
||||
private static final String REPORT_GENERATOR_KEY_APDEX_SATISFIED_THRESHOLD = REPORT_GENERATOR_KEY_PREFIX
|
||||
+ KEY_DELIMITER + "apdex_statisfied_threshold";
|
||||
+ KEY_DELIMITER + "apdex_satisfied_threshold";
|
||||
private static final Long REPORT_GENERATOR_KEY_APDEX_SATISFIED_THRESHOLD_DEFAULT = Long.valueOf(500L);
|
||||
|
||||
// Apdex Tolerated Threshold
|
||||
|
|
|
@ -632,6 +632,7 @@ Deprecated Libraries dropped or replaced by up to date ones:
|
|||
<li>David Coppens (d.l.coppens at gmail.com)</li>
|
||||
<li>Luca Maragnani (luca dot maragnani at gmail dot com)</li>
|
||||
<li>Philip Helger (http://www.helger.com) for his <a href="https://github.com/phax" target="_blank">CSS Parser</a> and for taking into account our bug reports very rapidly</li>
|
||||
<li>Irek Pastusiak (the.automatic.tester at gmail.com)</li>
|
||||
</ul>
|
||||
|
||||
<br/>
|
||||
|
|
|
@ -99,7 +99,7 @@ jmeter.save.saveservice.timestamp_format = yyyy/MM/dd HH:mm:ss (or any other for
|
|||
<source>jmeter.reportgenerator.</source>
|
||||
</note>
|
||||
<properties>
|
||||
<property name="apdex_statisfied_threshold" required="No">
|
||||
<property name="apdex_satisfied_threshold" required="No">
|
||||
Sets the satisfaction threshold for the
|
||||
<a href="https://en.wikipedia.org/wiki/Apdex" target="_blank">APDEX</a>
|
||||
calculation (in ms).
|
||||
|
@ -446,7 +446,7 @@ jmeter.reportgenerator.overall_granularity=60000
|
|||
#jmeter.reportgenerator.graph.responseTimeDistribution.property.set_granularity=500
|
||||
|
||||
# Change this parameter if you want to override the APDEX satisfaction threshold.
|
||||
jmeter.reportgenerator.apdex_statisfied_threshold=1500
|
||||
jmeter.reportgenerator.apdex_satisfied_threshold=1500
|
||||
|
||||
# Change this parameter if you want to override the APDEX tolerance threshold.
|
||||
jmeter.reportgenerator.apdex_tolerated_threshold=3000
|
||||
|
|
|
@ -638,7 +638,7 @@ log_level.org.apache.http.client=DEBUG
|
|||
</section>
|
||||
<section name="§-num;.37 Reporting configuration" anchor="reporting">
|
||||
<properties>
|
||||
<property name="jmeter.reportgenerator.apdex_statisfied_threshold"> Sets the satisfaction threshold for the APDEX calculation (in milliseconds).<br/>, defaults to:500</property>
|
||||
<property name="jmeter.reportgenerator.apdex_satisfied_threshold"> Sets the satisfaction threshold for the APDEX calculation (in milliseconds).<br/>, defaults to:500</property>
|
||||
<property name="jmeter.reportgenerator.apdex_tolerated_threshold"> Sets the tolerance threshold for the APDEX calculation (in milliseconds).<br/>, defaults to:1500</property>
|
||||
<property name="jmeter.reportgenerator.sample_filter"> Regular Expression which Indicates which samples to keep for graphs and statistics generation.<br/> Empty value means no filtering<br/>, defaults to:</property>
|
||||
<property name="jmeter.reportgenerator.temp_dir"> Sets the temporary directory used by the generation processus if it needs file I/O operations.<br/>, defaults to:temp</property>
|
||||
|
|
Loading…
Reference in New Issue