Author: pmouawad
Date: Fri Apr 20 15:20:31 2018
New Revision: 1829663
URL: http://svn.apache.org/viewvc?rev=1829663&view=rev
Log:
Bug 62320 - Counter : Reference Name property is not clear
Bugzilla Id: 62320
Modified:
jmeter/trunk/src/core/org/apache/jmeter/resources/messages.properties
jmeter/trunk/xdocs/changes.xml
jmeter/trunk/xdocs/usermanual/component_reference.xml
Modified: jmeter/trunk/src/core/org/apache/jmeter/resources/messages.properties
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/resources/messages.properties?rev=1829663&r1=1829662&r2=1829663&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/resources/messages.properties (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/resources/messages.properties Fri Apr 20 15:20:31
2018
@@ -1302,7 +1302,7 @@ validate_threadgroup=Validate
value=Value
value_to_quote_meta=Value to escape from ORO Regexp meta chars
value_to_shift=Amount of seconds/minutes/hours/days to add (e.g. P2D \: plus two days) (optional)
-var_name=Reference Name
+var_name=Exported Variable Name
variable_name_param=Name of variable (may include variable and function references)
view_graph_tree_title=View Graph Tree
view_results_assertion_error=Assertion error:
Modified: jmeter/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml?rev=1829663&r1=1829662&r2=1829663&view=diff
==============================================================================
--- jmeter/trunk/xdocs/changes.xml [utf-8] (original)
+++ jmeter/trunk/xdocs/changes.xml [utf-8] Fri Apr 20 15:20:31 2018
@@ -113,6 +113,7 @@ this behaviour, set <code>httpclient.res
<h3>Timers, Assertions, Config, Pre- & Post-Processors</h3>
<ul>
+ <li><bug>62320</bug>Counter : Reference Name property is not clear</li>
</ul>
<h3>Functions</h3>
Modified: jmeter/trunk/xdocs/usermanual/component_reference.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/usermanual/component_reference.xml?rev=1829663&r1=1829662&r2=1829663&view=diff
==============================================================================
--- jmeter/trunk/xdocs/usermanual/component_reference.xml (original)
+++ jmeter/trunk/xdocs/usermanual/component_reference.xml Fri Apr 20 15:20:31 2018
@@ -4244,8 +4244,9 @@ with the start, continuing on like that
If there is a problem interpreting the format, then it is ignored.
[The default format is generated using <code>Long.toString()</code>]
</property>
- <property name="Reference Name" required="Yes">This controls how you refer
to this value in other elements. Syntax is
- as in <a href="functions.html">user-defined values</a>: <code>$(reference_name}</code>.</property>
+ <property name="Exported Variable Name" required="Yes">This will be the variable
name under which the counter value is available.
+ If you name it <code>counterA</code>, you can then access it using <code>${counterA}</code>
+ as explained in <a href="functions.html">user-defined values</a></property>
<property name="Track Counter Independently for each User" required="No">In
other words, is this a global counter, or does each user get their
own counter? If unchecked, the counter is global (i.e., user #1 will get value "<code>1</code>",
and user #2 will get value "<code>2</code>" on
the first iteration). If checked, each user has an independent counter.</property>
|