Author: sebb
Date: Fri May 6 16:29:59 2016
New Revision: 1742562
URL: http://svn.apache.org/viewvc?rev=1742562&view=rev
Log:
What 'a' means
Modified:
jmeter/trunk/xdocs/usermanual/realtime-results.xml
Modified: jmeter/trunk/xdocs/usermanual/realtime-results.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/usermanual/realtime-results.xml?rev=1742562&r1=1742561&r2=1742562&view=diff
==============================================================================
--- jmeter/trunk/xdocs/usermanual/realtime-results.xml (original)
+++ jmeter/trunk/xdocs/usermanual/realtime-results.xml Fri May 6 16:29:59 2016
@@ -52,7 +52,7 @@ In this document we will present the con
<subsection name="§-num;.1 Metrics exposed" anchor="metrics">
<subsection name="§-num;.1.1 Thread/Virtual Users metrics" anchor="metrics-threads">
<p>
- Threads metrics are the following:
+ Thread metrics are the following:
</p>
<dl>
<dt><code><rootMetricsPrefix>test.minAT</code></dt><dd>Min
active threads</dd>
@@ -84,13 +84,13 @@ In this document we will present the con
<dt><code><rootMetricsPrefix><samplerName>.ko.pct<percentileValue></code></dt>
<dd>Percentile computed for failed responses of sampler name. There will be one
metric for each calculated value.</dd>
<dt><code><rootMetricsPrefix><samplerName>.a.count</code></dt>
- <dd>Number of responses for sampler name</dd>
+ <dd>Number of responses for sampler name (sum of ok.count and ko.count)</dd>
<dt><code><rootMetricsPrefix><samplerName>.a.min</code></dt>
- <dd>Min response time for responses of sampler name</dd>
+ <dd>Min response time for responses of sampler name (min of ok.count and ko.count)</dd>
<dt><code><rootMetricsPrefix><samplerName>.a.max</code></dt>
- <dd>Max response time for responses of sampler name</dd>
+ <dd>Max response time for responses of sampler name (max of ok.count and ko.count)</dd>
<dt><code><rootMetricsPrefix><samplerName>.a.pct<percentileValue></code></dt>
- <dd>Percentile computed for responses of sampler name. There will be one metric
for each calculated value.</dd>
+ <dd>Percentile computed for responses of sampler name. There will be one metric
for each calculated value. (calculated on the totals for OK and failed samples)</dd>
</dl>
<p>
The default <code>percentiles</code> setting on the <complink name="Backend
Listener"/> is "90;95;99",
|