View | Details | Raw Unified | Return to bug 65109
Collapse All | Expand All

(-)a/xdocs/css/new-style.css (+7 lines)
Lines 428-433 table { Link Here
428
  background-color: white;
428
  background-color: white;
429
}
429
}
430
430
431
.placeholder {
432
  font-style: italic;
433
  font-weight: normal;
434
  text-decoration-line: underline;
435
  text-decoration-style: dashed;
436
}
437
431
@media screen and (max-width: 1000px) {
438
@media screen and (max-width: 1000px) {
432
  .nav {
439
  .nav {
433
  width: 100%;
440
  width: 100%;
(-)a/xdocs/css/style.css (+6 lines)
Lines 48-50 a[name]:hover:after{ Link Here
48
.guimenuitem {
48
.guimenuitem {
49
  font-style: italic;
49
  font-style: italic;
50
}
50
}
51
52
.placeholder {
53
  font-style: italic;
54
  font-weight: bold;
55
  color: darkgreen;
56
}
(-)a/xdocs/stylesheets/site_printable.vsl (+6 lines)
Lines 339-344 Contributed by $id.getAttributeValue("name") <$id.getAttributeValue("mail")&g Link Here
339
#guimenuitem ($node)
339
#guimenuitem ($node)
340
#elseif ($node.getName().equals("description"))
340
#elseif ($node.getName().equals("description"))
341
#description ($node)
341
#description ($node)
342
#elseif ($node.getName().equals("placeholder"))
343
#placeholder ($node)
342
#else
344
#else
343
#outputTag($node)
345
#outputTag($node)
344
#runloop($node)
346
#runloop($node)
Lines 370-375 Contributed by $id.getAttributeValue("name") <$id.getAttributeValue("mail")&g Link Here
370
</$tag.getName()>##
372
</$tag.getName()>##
371
#end
373
#end
372
374
375
#macro (placeholder $node)
376
<span class="placeholder">#runloop($node)</span>##
377
#end
378
373
#macro (menuchoice $items)
379
#macro (menuchoice $items)
374
 <span class="menuchoice">
380
 <span class="menuchoice">
375
 #foreach ($item in $items.getChildren("guimenuitem"))#guimenuitem($item)#if ($foreach.hasNext)&nbsp;&rarr;&nbsp;#end#end
381
 #foreach ($item in $items.getChildren("guimenuitem"))#guimenuitem($item)#if ($foreach.hasNext)&nbsp;&rarr;&nbsp;#end#end
(-)a/xdocs/stylesheets/website-style.xsl (+4 lines)
Lines 689-692 Link Here
689
    </span>
689
    </span>
690
  </xsl:template>
690
  </xsl:template>
691
691
692
  <xsl:template match="placeholder">
693
    <span class="placeholder"><xsl:apply-templates /></span>
694
  </xsl:template>
695
692
</xsl:stylesheet>
696
</xsl:stylesheet>
(-)a/xdocs/usermanual/curl.xml (-28 / +28 lines)
Lines 55-69 Create a Test Plan From a cURL Command Link Here
55
<subsection name="&sect-num;.2 Curl options supported" anchor="curl_options">
55
<subsection name="&sect-num;.2 Curl options supported" anchor="curl_options">
56
56
57
<dl>
57
<dl>
58
  <dt><code>-H</code>, <code>--header &lt;header&gt;</code></dt>
58
  <dt><code>-H</code>, <code>--header <placeholder>header</placeholder></code></dt>
59
  <dd>Extra header to use when getting a web page.</dd>
59
  <dd>Extra header to use when getting a web page.</dd>
60
  <dt><code>-X</code>, <code>--request &lt;command&gt;</code></dt>
60
  <dt><code>-X</code>, <code>--request <placeholder>command</placeholder></code></dt>
61
  <dd>Specifies a custom request method to use when communicating with the HTTP server.</dd>
61
  <dd>Specifies a custom request method to use when communicating with the HTTP server.</dd>
62
  <dt><code>--compressed</code></dt>
62
  <dt><code>--compressed</code></dt>
63
  <dd>Request a compressed response using one of the algorithms curl supports, and return the uncompressed document.</dd>
63
  <dd>Request a compressed response using one of the algorithms curl supports, and return the uncompressed document.</dd>
64
  <dt><code>-A</code>, <code>--user-agent &lt;agent string&gt;</code></dt>
64
  <dt><code>-A</code>, <code>--user-agent <placeholder>agent string</placeholder></code></dt>
65
  <dd>Specify the User-Agent string to send to the HTTP server.</dd>
65
  <dd>Specify the User-Agent string to send to the HTTP server.</dd>
66
  <dt><code>-b</code>, <code>--cookie &lt;name=data&gt;</code></dt>
66
  <dt><code>-b</code>, <code>--cookie <placeholder>name=data</placeholder></code></dt>
67
  <dd>Pass the data to the HTTP server as a cookie.</dd>
67
  <dd>Pass the data to the HTTP server as a cookie.</dd>
68
  <dt><code>-d</code> and friends</dt>
68
  <dt><code>-d</code> and friends</dt>
69
  <dd><p>Sending data via POST request</p>
69
  <dd><p>Sending data via POST request</p>
Lines 72-88 Create a Test Plan From a cURL Command Link Here
72
    separating '<code>&amp;</code>' character. Thus, using '<code>-d name=daniel -d skill=lousy</code>' would generate a POST
72
    separating '<code>&amp;</code>' character. Thus, using '<code>-d name=daniel -d skill=lousy</code>' would generate a POST
73
    chunk that looks like '<code>name=daniel&amp;skill=lousy</code>'.</p>
73
    chunk that looks like '<code>name=daniel&amp;skill=lousy</code>'.</p>
74
    <dl>
74
    <dl>
75
      <dt><code>-d</code>, <code>--data &lt;data&gt;</code>, <code>--data-ascii &lt;data&gt;</code></dt>
75
      <dt><code>-d</code>, <code>--data <placeholder>data</placeholder></code>, <code>--data-ascii <placeholder>data</placeholder></code></dt>
76
      <dd>use <code>@</code> to upload a file</dd>
76
      <dd>use <code>@</code> to upload a file</dd>
77
      <dt><code>--data-raw &lt;data&gt;</code>gt;</dt>
77
      <dt><code>--data-raw <placeholder>data</placeholder></code></dt>
78
      <dd></dd>
78
      <dd></dd>
79
      <dt><code>--data-raw &lt;data&gt;</code></dt>
79
      <dt><code>--data-raw <placeholder>data</placeholder></code></dt>
80
      <dd>This posts data exactly as specified with no extra processing whatsoever.
80
      <dd>This posts data exactly as specified with no extra processing whatsoever.
81
        If you start the data with the character <code>@,</code> the rest should be a filename.</dd>
81
        If you start the data with the character <code>@,</code> the rest should be a filename.</dd>
82
      <dt><code>--data-raw &lt;data&gt;</code>ta&gt;</dt>
82
      <dt><code>--data-raw <placeholder>data</placeholder></code></dt>
83
      <dd>This posts data, similar to the other <code>--data</code> options with the exception that this performs
83
      <dd>This posts data, similar to the other <code>--data</code> options with the exception that this performs
84
        URL-encoding.</dd>
84
        URL-encoding.</dd>
85
      <dt><code>--data-raw &lt;data&gt;</code></dt>
85
      <dt><code>--data-raw <placeholder>data</placeholder></code></dt>
86
      <dd>This posts data similarly to <code>--data</code> but without the special interpretation
86
      <dd>This posts data similarly to <code>--data</code> but without the special interpretation
87
        of the <code>@</code> character.</dd>
87
        of the <code>@</code> character.</dd>
88
    </dl>
88
    </dl>
Lines 91-103 Create a Test Plan From a cURL Command Link Here
91
  <dd>
91
  <dd>
92
    <p>This lets curl emulate a filled-in form in which a user has pressed the submit button.</p>
92
    <p>This lets curl emulate a filled-in form in which a user has pressed the submit button.</p>
93
    <dl>
93
    <dl>
94
      <dt><code>-F</code>, <code>--form &lt;name=content&gt;</code></dt>
94
      <dt><code>-F</code>, <code>--form <placeholder>name=content</placeholder></code></dt>
95
      <dd>use <code>@</code> to upload a file</dd>
95
      <dd>use <code>@</code> to upload a file</dd>
96
      <dt><code>--form-string &lt;name=content&gt;</code></dt>
96
      <dt><code>--form-string <placeholder>name=content</placeholder></code></dt>
97
      <dd></dd>
97
      <dd></dd>
98
    </dl>
98
    </dl>
99
  </dd>
99
  </dd>
100
  <dt><code>-u</code>, --user &lt;user:password &gt;</dt>
100
  <dt><code>-u</code>, --user <placeholder>user:password </placeholder></dt>
101
  <dd>Specify user and password to use for server authentication.</dd>
101
  <dd>Specify user and password to use for server authentication.</dd>
102
  <dt><code>--basic</code>, <code>--digest</code></dt>
102
  <dt><code>--basic</code>, <code>--digest</code></dt>
103
  <dd>Tells curl to use HTTP authentication.</dd>
103
  <dd>Tells curl to use HTTP authentication.</dd>
Lines 105-139 Create a Test Plan From a cURL Command Link Here
105
  <dd>
105
  <dd>
106
    <p>Tells curl to use the specified client certificate file when getting a file with HTTPS</p>
106
    <p>Tells curl to use the specified client certificate file when getting a file with HTTPS</p>
107
    <dl>
107
    <dl>
108
      <dt><code>--cacert &lt;CA certificate&gt;</code></dt>
108
      <dt><code>--cacert <placeholder>CA certificate</placeholder></code></dt>
109
      <dt><code>--capath  &lt;CA certificate directory&gt;</code></dt>
109
      <dt><code>--capath  <placeholder>CA certificate directory</placeholder></code></dt>
110
      <dt><code>--ciphers &lt;list of ciphers&gt;</code></dt>
110
      <dt><code>--ciphers <placeholder>list of ciphers</placeholder></code></dt>
111
      <dt><code>--cert-status</code></dt>
111
      <dt><code>--cert-status</code></dt>
112
      <dt><code>--cert-type &lt;type&gt;</code></dt>
112
      <dt><code>--cert-type <placeholder>type</placeholder></code></dt>
113
    </dl>
113
    </dl>
114
  </dd>
114
  </dd>
115
  <dt><code>-G</code>, <code>--get</code></dt>
115
  <dt><code>-G</code>, <code>--get</code></dt>
116
  <dd>put the post data in the URL and use get to replace post.</dd>
116
  <dd>put the post data in the URL and use get to replace post.</dd>
117
  <dt><code>--no-keepalive</code></dt>
117
  <dt><code>--no-keepalive</code></dt>
118
  <dd>Disables the use of keepalive messages on the TCP connection.</dd>
118
  <dd>Disables the use of keepalive messages on the TCP connection.</dd>
119
  <dt><code>-e</code>, <code>--referer &lt;URL&gt;</code></dt>
119
  <dt><code>-e</code>, <code>--referer <placeholder>URL</placeholder></code></dt>
120
  <dd>Sends the <em>Referer Page</em> information to the HTTP server.</dd>
120
  <dd>Sends the <em>Referer Page</em> information to the HTTP server.</dd>
121
  <dt><code>-L</code>, <code>--location</code></dt>
121
  <dt><code>-L</code>, <code>--location</code></dt>
122
  <dd>If the server reports that the requested page has moved to a different location
122
  <dd>If the server reports that the requested page has moved to a different location
123
    this option will make curl redo the request on the new place.</dd>
123
    this option will make curl redo the request on the new place.</dd>
124
  <dt><code>-i</code>, <code>--include</code></dt>
124
  <dt><code>-i</code>, <code>--include</code></dt>
125
  <dd>Include the HTTP-header in the output.</dd>
125
  <dd>Include the HTTP-header in the output.</dd>
126
  <dt><code>--connect-timeout &lt;seconds&gt;</code></dt>
126
  <dt><code>--connect-timeout <placeholder>seconds</placeholder></code></dt>
127
  <dd>Maximum time in seconds that the connection to the server may take.</dd>
127
  <dd>Maximum time in seconds that the connection to the server may take.</dd>
128
  <dt><code>--keepalive-time &lt;seconds&gt;</code></dt>
128
  <dt><code>--keepalive-time <placeholder>seconds</placeholder></code></dt>
129
  <dd>This option sets the time a connection needs to remain idle before sending keepalive probes
129
  <dd>This option sets the time a connection needs to remain idle before sending keepalive probes
130
    and the time between individual keepalive probes.</dd>
130
    and the time between individual keepalive probes.</dd>
131
  <dt><code>-m</code>, <code>--max-time  &lt;seconds&gt;</code></dt>
131
  <dt><code>-m</code>, <code>--max-time  <placeholder>seconds</placeholder></code></dt>
132
  <dd>Maximum time in seconds that you allow the whole operation to take.</dd>
132
  <dd>Maximum time in seconds that you allow the whole operation to take.</dd>
133
  <dt><code>-x</code>, <code>--proxy &lt;[protocol://][user:password@]proxyhost[:port]&gt;</code></dt>
133
  <dt><code>-x</code>, <code>--proxy <placeholder>[protocol://][user:password@]proxyhost[:port]</placeholder></code></dt>
134
  <dd>Use the specified HTTP proxy. If the port number is not specified,
134
  <dd>Use the specified HTTP proxy. If the port number is not specified,
135
    it is assumed at port <code>1080</code>.</dd>
135
    it is assumed at port <code>1080</code>.</dd>
136
  <dt><code>-U</code>, <code>--proxy-user  &lt;user:password&gt;</code></dt>
136
  <dt><code>-U</code>, <code>--proxy-user  <placeholder>user:password</placeholder></code></dt>
137
  <dd>Specify user and password to use for proxy authentication.</dd>
137
  <dd>Specify user and password to use for proxy authentication.</dd>
138
  <dt><code>-k</code>, <code>--insecure</code></dt>
138
  <dt><code>-k</code>, <code>--insecure</code></dt>
139
  <dd>This option explicitly allows curl to perform <em>insecure</em> SSL connections and transfers.</dd>
139
  <dd>This option explicitly allows curl to perform <em>insecure</em> SSL connections and transfers.</dd>
Lines 141-159 Create a Test Plan From a cURL Command Link Here
141
  <dd>When used, it disables all internal HTTP decoding of content or transfer encodings and instead makes them passed on unaltered,raw.</dd>
141
  <dd>When used, it disables all internal HTTP decoding of content or transfer encodings and instead makes them passed on unaltered,raw.</dd>
142
  <dt><code>-I</code>, <code>--head</code></dt>
142
  <dt><code>-I</code>, <code>--head</code></dt>
143
  <dd>Fetch the HTTP-header only. HTTP-servers feature the method <code>HEAD</code> which this uses to get nothing but the header of a document.</dd>
143
  <dd>Fetch the HTTP-header only. HTTP-servers feature the method <code>HEAD</code> which this uses to get nothing but the header of a document.</dd>
144
  <dt><code>--interface &lt;name&gt;</code></dt>
144
  <dt><code>--interface <placeholder>name</placeholder></code></dt>
145
  <dd>Perform an operation using a specified interface. You can enter interface name, IP address or host name.</dd>
145
  <dd>Perform an operation using a specified interface. You can enter interface name, IP address or host name.</dd>
146
  <dt><code>--proxy-ntlm</code>/<code>--proxy-negotiate</code></dt>
146
  <dt><code>--proxy-ntlm</code>/<code>--proxy-negotiate</code></dt>
147
  <dd>Tells curl to use HTTP BASIC/NTLM/Digest authentication when communicating with the given proxy.</dd>
147
  <dd>Tells curl to use HTTP BASIC/NTLM/Digest authentication when communicating with the given proxy.</dd>
148
  <dt><code>--dns-servers &lt;addresses&gt;</code></dt>
148
  <dt><code>--dns-servers <placeholder>addresses</placeholder></code></dt>
149
  <dd>Resolve host name over DOH.</dd>
149
  <dd>Resolve host name over DOH.</dd>
150
  <dt><code>--resolve &lt;host:port:address&gt;</code></dt>
150
  <dt><code>--resolve <placeholder>host:port:address</placeholder></code></dt>
151
  <dd>Provide a custom address for a specific host and port pair.</dd>
151
  <dd>Provide a custom address for a specific host and port pair.</dd>
152
  <dt><code>--limit-rate &lt;speed&gt;</code></dt>
152
  <dt><code>--limit-rate <placeholder>speed</placeholder></code></dt>
153
  <dd>Specify the maximum transfer rate you want curl to use.</dd>
153
  <dd>Specify the maximum transfer rate you want curl to use.</dd>
154
  <dt><code>--max-redirs &lt;num&gt;</code></dt>
154
  <dt><code>--max-redirs <placeholder>num</placeholder></code></dt>
155
  <dd>Set maximum number of redirections which may be followed.</dd>
155
  <dd>Set maximum number of redirections which may be followed.</dd>
156
  <dt><code>--noproxy &lt;no-proxy-list&gt;</code></dt>
156
  <dt><code>--noproxy <placeholder>no-proxy-list</placeholder></code></dt>
157
  <dd>Comma-separated list of hosts which do not use a proxy, if one is specified.</dd>
157
  <dd>Comma-separated list of hosts which do not use a proxy, if one is specified.</dd>
158
</dl>
158
</dl>
159
159
(-)a/xdocs/usermanual/generating-dashboard.xml (-8 / +8 lines)
Lines 279-292 jmeter.save.saveservice.timestamp_format = ms Link Here
279
                    <subsection name="&sect-num;.2.3.2 Specific properties" anchor="specific_graph_properties">
279
                    <subsection name="&sect-num;.2.3.2 Specific properties" anchor="specific_graph_properties">
280
                        <p>
280
                        <p>
281
                            Specific graph properties must use the prefix:
281
                            Specific graph properties must use the prefix:
282
                            <source>jmeter.reportgenerator.graph.&lt;graph_id&gt;.property</source>
282
                            <source>jmeter.reportgenerator.graph.<placeholder>graph_id</placeholder>.property</source>
283
                            The name of the property will be mapped using camel case
283
                            The name of the property will be mapped using camel case
284
                            transformation and the matching method of the class will be
284
                            transformation and the matching method of the class will be
285
                            called with the property value as argument.
285
                            called with the property value as argument.
286
                        </p>
286
                        </p>
287
                        <p>
287
                        <p>
288
                            E.g.:
288
                            E.g.:
289
                            <source>jmeter.reportgenerator.graph.&lt;graph_id&gt;.property.set_granularity=150</source>
289
                            <source>jmeter.reportgenerator.graph.<placeholder>graph_id</placeholder>.property.set_granularity=150</source>
290
                            induces the call of the method <code>setGranularity(150)</code> on the
290
                            induces the call of the method <code>setGranularity(150)</code> on the
291
                            instance of the graph.
291
                            instance of the graph.
292
                        </p>
292
                        </p>
Lines 332-338 jmeter.save.saveservice.timestamp_format = ms Link Here
332
                    <subsection name="&sect-num;.2.4.2 Specific properties" anchor="specific_export_properties">
332
                    <subsection name="&sect-num;.2.4.2 Specific properties" anchor="specific_export_properties">
333
                        <p>
333
                        <p>
334
                            Specific exporter properties must use the prefix
334
                            Specific exporter properties must use the prefix
335
                            <source>jmeter.reportgenerator.exporter.&lt;exporter_id&gt;.property</source>
335
                            <source>jmeter.reportgenerator.exporter.<placeholder>exporter_id</placeholder>.property</source>
336
                        </p>
336
                        </p>
337
                        <properties>
337
                        <properties>
338
                            <property name="output_dir" required="No">
338
                            <property name="output_dir" required="No">
Lines 352-358 jmeter.save.saveservice.timestamp_format = ms Link Here
352
                            Graph properties allow exporters to overwrite some graph data.
352
                            Graph properties allow exporters to overwrite some graph data.
353
                            <br />
353
                            <br />
354
                            They must use the prefix:
354
                            They must use the prefix:
355
                            <source>jmeter.reportgenerator.exporter.&lt;exporter_id&gt;.graph_options.&lt;graph_id&gt;</source>
355
                            <source>jmeter.reportgenerator.exporter.<placeholder>exporter_id</placeholder>.graph_options.<placeholder>graph_id</placeholder></source>
356
                        </p>
356
                        </p>
357
                        <properties>
357
                        <properties>
358
                            <property name="minX" required="No">Sets the minimum
358
                            <property name="minX" required="No">Sets the minimum
Lines 587-600 jmeter.reportgenerator.exporter.html.filters_only_sample_series=true Link Here
587
                <subsection name="&sect-num;.3.1 Generation from an existing sample CSV log file" anchor="report_only">
587
                <subsection name="&sect-num;.3.1 Generation from an existing sample CSV log file" anchor="report_only">
588
                    <p>
588
                    <p>
589
                        Use the following command:
589
                        Use the following command:
590
                        <source>jmeter -g &lt;log file&gt; -o &lt;Path to output folder&gt;</source>
590
                        <source>jmeter -g <placeholder>log file</placeholder> -o <placeholder>Path to output folder</placeholder></source>
591
                    </p>
591
                    </p>
592
                </subsection>
592
                </subsection>
593
593
594
                <subsection name="&sect-num;.3.2 Generation after load test" anchor="report_after_load_test">
594
                <subsection name="&sect-num;.3.2 Generation after load test" anchor="report_after_load_test">
595
                    <p>
595
                    <p>
596
                        Use the following command:
596
                        Use the following command:
597
                        <source>jmeter -n -t &lt;test JMX file&gt; -l &lt;test log file&gt; -e -o &lt;Path to output folder&gt;</source>
597
                        <source>jmeter -n -t <placeholder>test JMX file</placeholder> -l <placeholder>test log file</placeholder> -e -o <placeholder>Path to output folder</placeholder></source>
598
                    </p>
598
                    </p>
599
                </subsection>
599
                </subsection>
600
            </subsection>
600
            </subsection>
Lines 742-750 jmeter.reportgenerator.exporter.html.filters_only_sample_series=true Link Here
742
                            by settings their properties in the user.properties file.
742
                            by settings their properties in the user.properties file.
743
                            <br />
743
                            <br />
744
                            They must use the id prefix <code>custom_</code>:
744
                            They must use the id prefix <code>custom_</code>:
745
                            <source>jmeter.reportgenerator.graph.custom_&lt;your_graph_name_id&gt;.property.&lt;your_option_name&gt;</source>
745
                            <source>jmeter.reportgenerator.graph.custom_<placeholder>your_graph_name_id</placeholder>.property.<placeholder>your_option_name</placeholder></source>
746
                            To specify that this graph is a customized one :
746
                            To specify that this graph is a customized one :
747
                            <source>jmeter.reportgenerator.graph.custom_&lt;your_graph_name_id&gt;.classname=org.apache.jmeter.report.processor.graph.impl.CustomGraphConsumer</source>
747
                            <source>jmeter.reportgenerator.graph.custom_<placeholder>your_graph_name_id</placeholder>.classname=org.apache.jmeter.report.processor.graph.impl.CustomGraphConsumer</source>
748
                        </p>
748
                        </p>
749
                        <properties>
749
                        <properties>
750
                            <property name="set_X_Axis" required="Yes">Sets the X axis name of the graph.</property>
750
                            <property name="set_X_Axis" required="Yes">Sets the X axis name of the graph.</property>
(-)a/xdocs/usermanual/get-started.xml (-21 / +20 lines)
Lines 748-806 These are shown below.</p> Link Here
748
        print usage information and exit
748
        print usage information and exit
749
    -v, --version
749
    -v, --version
750
        print the version information and exit
750
        print the version information and exit
751
    -p, --propfile &lt;argument&gt;
751
    -p, --propfile <placeholder>argument</placeholder>
752
        the jmeter property file to use
752
        the jmeter property file to use
753
    -q, --addprop &lt;argument&gt;
753
    -q, --addprop <placeholder>argument</placeholder>
754
        additional JMeter property file(s)
754
        additional JMeter property file(s)
755
    -t, --testfile &lt;argument&gt;
755
    -t, --testfile <placeholder>argument</placeholder>
756
        the jmeter test(.jmx) file to run
756
        the jmeter test(.jmx) file to run
757
    -l, --logfile &lt;argument&gt;
757
    -l, --logfile <placeholder>argument</placeholder>
758
        the file to log samples to
758
        the file to log samples to
759
    -i, --jmeterlogconf &lt;argument&gt;
759
    -i, --jmeterlogconf <placeholder>argument</placeholder>
760
        jmeter logging configuration file (log4j2.xml)
760
        jmeter logging configuration file (log4j2.xml)
761
    -j, --jmeterlogfile &lt;argument&gt;
761
    -j, --jmeterlogfile <placeholder>argument</placeholder>
762
        jmeter run log file (jmeter.log)
762
        jmeter run log file (jmeter.log)
763
    -n, --nongui
763
    -n, --nongui
764
        run JMeter in nongui mode
764
        run JMeter in nongui mode
765
    -s, --server
765
    -s, --server
766
        run the JMeter server
766
        run the JMeter server
767
    -H, --proxyHost &lt;argument&gt;
767
    -H, --proxyHost <placeholder>argument</placeholder>
768
        Set a proxy server for JMeter to use
768
        Set a proxy server for JMeter to use
769
    -P, --proxyPort &lt;argument&gt;
769
    -P, --proxyPort <placeholder>argument</placeholder>
770
        Set proxy server port for JMeter to use
770
        Set proxy server port for JMeter to use
771
    -N, --nonProxyHosts &lt;argument&gt;
771
    -N, --nonProxyHosts <placeholder>argument</placeholder>
772
        Set nonproxy host list (e.g. *.apache.org|localhost)
772
        Set nonproxy host list (e.g. *.apache.org|localhost)
773
    -u, --username &lt;argument&gt;
773
    -u, --username <placeholder>argument</placeholder>
774
        Set username for proxy server that JMeter is to use
774
        Set username for proxy server that JMeter is to use
775
    -a, --password &lt;argument&gt;
775
    -a, --password <placeholder>argument</placeholder>
776
        Set password for proxy server that JMeter is to use
776
        Set password for proxy server that JMeter is to use
777
    -J, --jmeterproperty &lt;argument&gt;=&lt;value&gt;
777
    -J, --jmeterproperty <placeholder>argument</placeholder>=<placeholder>value</placeholder>
778
        Define additional JMeter properties
778
        Define additional JMeter properties
779
    -G, --globalproperty &lt;argument&gt;=&lt;value&gt;
779
    -G, --globalproperty <placeholder>argument</placeholder>=<placeholder>value</placeholder>
780
        Define Global properties (sent to servers)
780
        Define Global properties (sent to servers)
781
        e.g. -Gport=123
781
        e.g. -Gport=123
782
         or -Gglobal.properties
782
         or -Gglobal.properties
783
    -D, --systemproperty &lt;argument&gt;=&lt;value&gt;
783
    -D, --systemproperty <placeholder>argument</placeholder>=<placeholder>value</placeholder>
784
        Define additional system properties
784
        Define additional system properties
785
    -S, --systemPropertyFile &lt;argument&gt;
785
    -S, --systemPropertyFile <placeholder>argument</placeholder>
786
        additional system property file(s)
786
        additional system property file(s)
787
    -f, --forceDeleteResultFile
787
    -f, --forceDeleteResultFile
788
        force delete existing results files and web report folder if present before starting the test
788
        force delete existing results files and web report folder if present before starting the test
789
    -L, --loglevel &lt;argument&gt;=&lt;value&gt;
789
    -L, --loglevel <placeholder>argument</placeholder>=<placeholder>value</placeholder>
790
        [category=]level e.g. jorphan=INFO, jmeter.util=DEBUG or com.example.foo=WARN
790
        [category=]level e.g. jorphan=INFO, jmeter.util=DEBUG or com.example.foo=WARN
791
    -r, --runremote
791
    -r, --runremote
792
        Start remote servers (as defined in remote_hosts)
792
        Start remote servers (as defined in remote_hosts)
793
    -R, --remotestart &lt;argument&gt;
793
    -R, --remotestart <placeholder>argument</placeholder>
794
        Start these remote servers (overrides remote_hosts)
794
        Start these remote servers (overrides remote_hosts)
795
    -d, --homedir &lt;argument&gt;
795
    -d, --homedir <placeholder>argument</placeholder>
796
        the jmeter home directory to use
796
        the jmeter home directory to use
797
    -X, --remoteexit
797
    -X, --remoteexit
798
        Exit the remote servers at end of test (CLI mode)
798
        Exit the remote servers at end of test (CLI mode)
799
    -g, --reportonly &lt;argument&gt;
799
    -g, --reportonly <placeholder>argument</placeholder>
800
        generate report dashboard only, from a test results file
800
        generate report dashboard only, from a test results file
801
    -e, --reportatendofloadtests
801
    -e, --reportatendofloadtests
802
        generate report dashboard after load test
802
        generate report dashboard after load test
803
    -o, --reportoutputfolder &lt;argument&gt;
803
    -o, --reportoutputfolder <placeholder>argument</placeholder>
804
        output folder for report dashboard
804
        output folder for report dashboard
805
</source>
805
</source>
806
<p>
806
<p>
807
- 

Return to bug 65109