You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jmeter-dev@jakarta.apache.org by se...@apache.org on 2005/06/18 20:04:45 UTC

cvs commit: jakarta-jmeter/xdocs/usermanual build-monitor-test-plan.xml build-ws-test-plan.xml build-jms-topic-test-plan.xml

sebb        2005/06/18 11:04:45

  Modified:    xdocs/usermanual build-monitor-test-plan.xml
                        build-ws-test-plan.xml
                        build-jms-topic-test-plan.xml
  Log:
  Fix forward/backward links and make section number a variable
  
  Revision  Changes    Path
  1.8       +15 -11    jakarta-jmeter/xdocs/usermanual/build-monitor-test-plan.xml
  
  Index: build-monitor-test-plan.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/xdocs/usermanual/build-monitor-test-plan.xml,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- build-monitor-test-plan.xml	18 Jun 2005 02:17:26 -0000	1.7
  +++ build-monitor-test-plan.xml	18 Jun 2005 18:04:45 -0000	1.8
  @@ -15,7 +15,11 @@
      See the License for the specific language governing permissions and
      limitations under the License.
   -->
  -<document prev="build-ws-test-plan.html" next="listeners.html" date="$Date$">
  +<!DOCTYPE document
  +[
  +<!ENTITY sect-num '13'>
  +]>
  +<document prev="build-jms-topic-test-plan.html" next="listeners.html" date="$Date$">
   
   <properties>
     <title>User's Manual: Building a Monitor Test Plan</title>
  @@ -23,7 +27,7 @@
   
   <body>
   
  -<section name="13. Building a Monitor Test Plan" anchor="building">
  +<section name="&sect-num;. Building a Monitor Test Plan" anchor="building">
   <p>In this section, you will learn how to create a 
   <a href="build-test-plan.html">Test Plan</a> to monitor webservers. Monitors
   are useful for a stress testing and system management. Used with stress
  @@ -41,7 +45,7 @@
   
   </section>
   
  -<section name="13.1 Adding A Server" anchor="adding_server">
  +<section name="&sect-num;.1 Adding A Server" anchor="adding_server">
   <p>The first step is to add a <a href="test_plan.html#thread_group">Thread Group</a>
   element.  The Thread Group tells JMeter the number of threads you want. Always use
   1, since we are using JMeter as a monitor. This is very important for those not
  @@ -63,7 +67,7 @@
   
   </section>
   
  -<section name="13.2 HTTP Auth Manager" anchor="adding_auth">
  +<section name="&sect-num;.2 HTTP Auth Manager" anchor="adding_auth">
   <p>Add the <complink name="HTTP Authorization Manager"/> to the Thread Group element
   (Add --&gt; Config element --&gt; HTTP Authorization Manager). Enter the username
   and password for your webserver. Important note: the monitor only works with
  @@ -76,7 +80,7 @@
   </ol>
   </section>
   
  -<section name="13.3 Adding HTTP Request" anchor="adding_request">
  +<section name="&sect-num;.3 Adding HTTP Request" anchor="adding_request">
   
   <p>Add the <complink name="HTTP Request"/> to the Thread Group element
   (Add --&gt; Sampler --&gt; HTTP Request). Then, select the HTTP Request element
  @@ -94,7 +98,7 @@
   
   </section>
   
  -<section name="13.4 Adding Constant Timer" anchor="adding_timer">
  +<section name="&sect-num;.4 Adding Constant Timer" anchor="adding_timer">
   
   <p>Add a timer to this thread group (Add --&gt; Timer --&gt; Constant Timer).
   Enter 5000 milliseconds in the "Thread Delay" box. In general, using intervals shorter
  @@ -103,7 +107,7 @@
   
   </section>
   
  -<section name="13.5 Adding a Listener to Store the Results" anchor="adding_listener">
  +<section name="&sect-num;.5 Adding a Listener to Store the Results" anchor="adding_listener">
   <p>If you want to save the raw results from the server, add a simple data
    <a href="component_reference.html#listeners">Listener</a>. If you want to save the
    calculated statistics, enter a filename in the listener. If you want to save both
  @@ -116,7 +120,7 @@
   
   </section>
   
  -<section name="13.6 Adding Monitor Results" anchor="add_monitor_listener">
  +<section name="&sect-num;.6 Adding Monitor Results" anchor="add_monitor_listener">
   
   <p>Add the <a href="component_reference.html#listeners">Listener</a> by selecting the
   test plan element (Add --&gt; Listener -- &gt; Monitor Results). There are two tabs in
  @@ -147,7 +151,7 @@
   
   </section>
   
  -<section name="13.7 Saving the Test Plan" anchor="saving">
  +<section name="&sect-num;.7 Saving the Test Plan" anchor="saving">
   <p>Although it is not required, we recommend that you save the Test Plan to a
   file before running it.  To save the Test Plan, select Save Test Plan from the
   File menu (with the latest release, it is no longer necessary to select the
  @@ -163,7 +167,7 @@
   
   </section>
   
  -<section name="13.8 Running the Test Plan" anchor="running">
  +<section name="&sect-num;.8 Running the Test Plan" anchor="running">
   
   <p>From the Run menu, select Run.</p>
   
  
  
  
  1.12      +20 -16    jakarta-jmeter/xdocs/usermanual/build-ws-test-plan.xml
  
  Index: build-ws-test-plan.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/xdocs/usermanual/build-ws-test-plan.xml,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- build-ws-test-plan.xml	18 Jun 2005 02:17:26 -0000	1.11
  +++ build-ws-test-plan.xml	18 Jun 2005 18:04:45 -0000	1.12
  @@ -1,7 +1,7 @@
   <?xml version="1.0"?>
   <!--
      $Header$
  -   Copyright 2001-2004 The Apache Software Foundation
  +   Copyright 2001-2005 The Apache Software Foundation
    
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
  @@ -15,7 +15,11 @@
      See the License for the specific language governing permissions and
      limitations under the License.
   -->
  -<document prev="build-ldap-test-plan.html" next="build-jms-test-plan.html" date="$Date$">
  +<!DOCTYPE document
  +[
  +<!ENTITY sect-num '10'>
  +]>
  +<document prev="build-ldapext-test-plan.html" next="build-jms-point-to-point-test-plan.html" date="$Date$">
   
   <properties>
     <title>User's Manual: Building a WebService Test Plan</title>
  @@ -23,7 +27,7 @@
   
   <body>
   
  -<section name="10. Building a WebService Test Plan" anchor="building">
  +<section name="&sect-num;. Building a WebService Test Plan" anchor="building">
   <p>In this section, you will learn how to create a 
   <a href="build-test-plan.html">Test Plan</a> to test a WebService. You will
   create five users that send requests to One page.
  @@ -49,7 +53,7 @@
   
   </section>
   
  -<section name="10.1 Adding Users" anchor="adding_users">
  +<section name="&sect-num;.1 Adding Users" anchor="adding_users">
   <p>The first step you want to do with every JMeter Test Plan is to add a
   <a href="test_plan.html#thread_group">Thread Group</a> element.  The Thread Group tells
   JMeter the number of users you want to simulate, how often the users should send
  @@ -65,11 +69,11 @@
   
   <p>Next, you need to modify the default properties.  Select the Thread Group element
   in the tree, if you have not already selected it. You should now see the Thread
  -Group Control Panel in the right section of the JMeter window (see Figure 10.1
  +Group Control Panel in the right section of the JMeter window (see Figure &sect-num;.1
   below)</p>
   
   <figure image="webtest/threadgroup.png">
  -Figure 10.1. Thread Group with Default Values</figure>
  +Figure &sect-num;.1. Thread Group with Default Values</figure>
   
   <p>Start by providing a more descriptive name for our Thread Group. In the name
   field, enter Jakarta Users.</p>
  @@ -96,14 +100,14 @@
   name of an element, the tree will be updated with the new text after you
   leave the Control Panel (for example, when selecting another tree element).</note>
   
  -<p>See Figure 10.2 for the completed Jakarta Users Thread Group.</p>
  +<p>See Figure &sect-num;.2 for the completed Jakarta Users Thread Group.</p>
   
   <figure image="webtest/threadgroup2.png">
  -Figure 10.2. Jakarta Users Thread Group</figure>
  +Figure &sect-num;.2. Jakarta Users Thread Group</figure>
   
   </section>
   
  -<section name="10.2 Adding WebService Requests" anchor="adding_requests">
  +<section name="&sect-num;.2 Adding WebService Requests" anchor="adding_requests">
   
   <p>In our Test Plan, we will use a .NET webservice. Since you're using
   the webservice sampler, we won't go into the details of writing a
  @@ -120,7 +124,7 @@
   to the Jakarta Users element (Add --&gt; Sampler --&gt; WebService(SOAP) Request
    (Beta Code) ).
   Then, select the webservice Request element in the tree and edit the following properties
  -(see Figure 10.5):
  +(see Figure &sect-num;.5):
   <ol>
   <li>Change the Name field to "WebService(SOAP) Request (Beta Code)".</li>
   <li>Enter the WSDL URL and click "Load WSDL".</li>
  @@ -128,7 +132,7 @@
   </p>
   
   <figure image="webservice_sampler.png">
  -Figure 10.3. Webservice Request</figure>
  +Figure &sect-num;.3. Webservice Request</figure>
   
   <p>If the WSDL file was loaded correctly, the "Web Methods" drop down should 
   be populated. If the drop down remains blank, it means there was a problem
  @@ -166,7 +170,7 @@
   
   </section>
   
  -<section name="10.3 Adding a Listener to View Store the Test Results" anchor="adding_listener">
  +<section name="&sect-num;.3 Adding a Listener to View Store the Test Results" anchor="adding_listener">
   <p>The final element you need to add to your Test Plan is a
    <a href="component_reference.html#listeners">Listener</a>. This element is
   responsible for storing all of the results of your HTTP requests in a file and presenting
  @@ -178,11 +182,11 @@
   Browse button and browse to a directory and then enter a filename.</p>
   
   <figure image="graph_results.png">
  -Figure 10.7. Graph Results Listener</figure>
  +Figure &sect-num;.7. Graph Results Listener</figure>
   
   </section>
   
  -<section name="10.4 Saving the Test Plan" anchor="saving">
  +<section name="&sect-num;.4 Saving the Test Plan" anchor="saving">
   <p>Although it is not required, we recommend that you save the Test Plan to a
   file before running it.  To save the Test Plan, select Save Test Plan from the
   File menu (with the latest release, it is no longer necessary to select the
  @@ -198,7 +202,7 @@
   
   </section>
   
  -<section name="10.5 Running the Test Plan" anchor="running">
  +<section name="&sect-num;.5 Running the Test Plan" anchor="running">
   
   <p>From the Run menu, select Run.</p>
   
  
  
  
  1.5       +19 -15    jakarta-jmeter/xdocs/usermanual/build-jms-topic-test-plan.xml
  
  Index: build-jms-topic-test-plan.xml
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/xdocs/usermanual/build-jms-topic-test-plan.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- build-jms-topic-test-plan.xml	18 Jun 2005 02:17:26 -0000	1.4
  +++ build-jms-topic-test-plan.xml	18 Jun 2005 18:04:45 -0000	1.5
  @@ -1,7 +1,7 @@
   <?xml version="1.0"?>
   <!--
      $Header$
  -   Copyright 2001-2004 The Apache Software Foundation
  +   Copyright 2001-2005 The Apache Software Foundation
    
      Licensed under the Apache License, Version 2.0 (the "License");
      you may not use this file except in compliance with the License.
  @@ -15,7 +15,11 @@
      See the License for the specific language governing permissions and
      limitations under the License.
   -->
  -<document prev="build-ws-jms-point-to-point-test-plan.html" next="build-monitor-test-plan.html" date="$Date$">
  +<!DOCTYPE document
  +[
  +<!ENTITY sect-num '12'>
  +]>
  +<document prev="build-jms-point-to-point-test-plan.html" next="build-monitor-test-plan.html" date="$Date$">
   
   <properties>
     <title>User's Manual: Building a JMS (Java Messaging Service) Test Plan</title>
  @@ -23,7 +27,7 @@
   
   <body>
   
  -<section name="12. Building a JMS Topic Test Plan" anchor="building">
  +<section name="&sect-num;. Building a JMS Topic Test Plan" anchor="building">
   <p>In this section, you will learn how to create a 
   <a href="build-test-plan.html">Test Plan</a> to test JMS Providers. You will
   create five subscribers and one publisher. You will create 2 thread groups and set
  @@ -45,7 +49,7 @@
   
   </section>
   
  -<section name="12.1 Adding Users" anchor="adding_users">
  +<section name="&sect-num;.1 Adding Users" anchor="adding_users">
   <p>The first step is add a <a href="test_plan.html#thread_group">Thread Group</a>
    element.  The Thread Group tells JMeter the number of users you want to simulate,
    how often the users should send requests, and the how many requests they should 
  @@ -61,11 +65,11 @@
   
   <p>Next, you need to modify the default properties.  Select the Thread Group element
   in the tree, if you have not already selected it. You should now see the Thread
  -Group Control Panel in the right section of the JMeter window (see Figure 12.1
  +Group Control Panel in the right section of the JMeter window (see Figure &sect-num;.1
   below)</p>
   
   <figure image="webtest/threadgroup.png">
  -Figure 12.1. Thread Group with Default Values</figure>
  +Figure &sect-num;.1. Thread Group with Default Values</figure>
   
   <p>Start by providing a more descriptive name for our Thread Group. In the name
   field, enter Subscribers.</p>
  @@ -87,7 +91,7 @@
   checkbox.</p>
   
   <p>Repeat the process and add another thread group. For the second thread
  -group, leave the number of threads 1 and change the iteration to 12.</p>
  +group, leave the number of threads 1 and change the iteration to 10.</p>
   
   <note>In most applications, you have to manually accept
   changes you make in a Control Panel.  However, in JMeter, the Control Panel
  @@ -98,7 +102,7 @@
   
   </section>
   
  -<section name="12.2 Adding JMS Subscriber and Publisher" anchor="adding_subscriber_publisher">
  +<section name="&sect-num;.2 Adding JMS Subscriber and Publisher" anchor="adding_subscriber_publisher">
   
   <p>Make sure the required jar files are in JMeter's lib directory. If they are
   not, shutdown JMeter, copy the jar files over and restart JMeter.</p>
  @@ -128,7 +132,7 @@
   </p>
   
   <figure image="jms/jms_sub.png">
  -Figure 12.2. JMS Subscriber</figure>
  +Figure &sect-num;.2. JMS Subscriber</figure>
   
   <ol>
   <li>Change the Name field to "sample publisher".</li>
  @@ -152,12 +156,12 @@
   </ol>
   <p></p>
   <figure image="jms/jms_pub.png">
  -Figure 12.3. JMS Publisher</figure>
  +Figure &sect-num;.3. JMS Publisher</figure>
   
   
   </section>
   
  -<section name="12.3 Adding a Listener to View Store the Test Results" anchor="adding_listener">
  +<section name="&sect-num;.3 Adding a Listener to View Store the Test Results" anchor="adding_listener">
   <p>The final element you need to add to your Test Plan is a
    <a href="component_reference.html#listeners">Listener</a>. This element is
   responsible for storing all of the results of your HTTP requests in a file and presenting
  @@ -169,11 +173,11 @@
   Browse button and browse to a directory and then enter a filename.</p>
   
   <figure image="graph_results.png">
  -Figure 12.4. Graph Results Listener</figure>
  +Figure &sect-num;.4. Graph Results Listener</figure>
   
   </section>
   
  -<section name="12.4 Saving the Test Plan" anchor="saving">
  +<section name="&sect-num;.4 Saving the Test Plan" anchor="saving">
   <p>Although it is not required, we recommend that you save the Test Plan to a
   file before running it.  To save the Test Plan, select Save Test Plan from the
   File menu (with the latest release, it is no longer necessary to select the
  @@ -189,7 +193,7 @@
   
   </section>
   
  -<section name="12.5 Running the Test Plan" anchor="running">
  +<section name="&sect-num;.5 Running the Test Plan" anchor="running">
   
   <p>From the Run menu, select Run.</p>
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org