Jmeter Monitoring | jMeter Monitor Test Plan - jmeter - jmeter tutorial



What is jMeter Monitor Test Plan?

  • Monitors are useful for a stress testing and system management. Used with stress testing, the monitor provides additional information about server performance.
  • It also makes it easier to see the relationship between server performance and response time on the client side.
  • As a system administration tool, the monitor provides an easy way to monitor multiple servers from one console.
  • learn apache jmeter tutorials - monitoring

    learn apache jmeter tutorials - monitoring Example

  • The monitor was designed to work with the status servlet in Tomcat 5. In theory, any servlet container that supports JMX (Java Management Extension) can port the status servlet to provide the same information.
  • In this chapter, we will discuss how to create a Test Plan using JMeter to monitor webservers. The uses of monitor tests are as follows

    • Monitors are useful for a stress testing and system management.
    • Used with stress testing, the monitor provides additional information about server performance.
    • Monitors make it easier to see the relationship between server performance and response time on the client side.
    • As a system administration tool, the monitor provides an easy way to monitor multiple servers from one console.
  • We need Tomcat 5 or above for monitoring. For our test purpose, we will monitor Tomcat 7.0.42 server.
  • You can test any servlet container that supports Java Management Extension (JMX).
  • Let us write a test case to monitor the Tomcat server. Let us first set up our tomcat server.

Setup Tomcat Server

  • We start with opening the Tomcat service status. To do this, edit the configuration file for users, <TOMCAT_HOME>/conf/tomcat-users.xml. This file contains a tomcat-users section (commented) as shown
<tomcat-users>

<!--
   <role rolename="tomcat"/>
   <role rolename="role1"/>
   <user username="tomcat" password="tomcat" roles="tomcat"/>
   <user username="both" password="tomcat" roles="tomcat,role1"/>
   <user username="role1" password="tomcat" roles="role1"/>
-->

</tomcat-users>
  • We need to change this section to add the admin roles, manager, manager-gui and assign the user "admin". The revised file is as follows

<tomcat-users>

   <role rolename="manager-gui"/>
   <role rolename="manager-script"/>
   <role rolename="manager-jmx"/>
   <role rolename="manager-status"/>
   <user username="admin" password="admin" roles="manager-gui,manager-script,manager-jmx,manager-status"/>

</tomcat-users>
  • Now start the tomcat server <TOMCAT_HOME>/bin/startup.sh for Linux and <TOMCAT_HOME>/bin/startup.bat for windows. Once started, check that the Tomcat supervision works by entering the following link in your browser- http://localhost:8080/manager/status?XML=true

  • An authentication window appears in the browser. Enter the tomcat login and password associated (in our case it is admin). Then, the browser shows the execution status of Tomcat as below −
 setup in tomcat server
  • From the above screenshot, we can note a few things
    • In the URL, note that XML = true (note the case sensitivity) allows a clean display of the supervisory Tomcat necessary for the JMeter functioning.
    • Also note that there are default two connectors. The AJP connector used in general coupled with the mod_jk Apache HTTPD front module and the HTTP connector which is commonly used connector for direct access to Tomcat via port 8080.
jmeter tutorials - jmeter load testing - jmeter download - download jmeter - apache jmeter

Write JMeter Test Plan

  • Let us monitor the Tomcat server by writing a test plan

Rename Test Plan

  • Open the JMeter window by clicking /home/manisha/apache-jmeter2.9/bin/jmeter.sh.
  • Click the Test Plan node.
  • Add a thread group as explained in the next step.

Add Thread Group

  • Right-click on Test Plan > Add > Threads(Users) > Thread Group. Thread Group will get added under the Test Plan node.
  • Change the loop count to forever (or some large number) so that enough samples are generated.
 add threadgroup in monitor test plan
jmeter tutorials - jmeter load testing - jmeter download - download jmeter - apache jmeter

HTTP Authorization Manager

  • Add HTTP Authorization Manager to the Thread Group element by selecting Add > Config element > HTTP Authorization Manager. This element manages authentication requested by the browser to see the Tomcat server status. Select the HTTP Authorization Manager. Edit the following details
    • Username − admin (depending on the configuration in tomcat-users.xml file)
    • Password − admin (depending on the configuration in the tomcatusers.xml file)
    • The other fields are left empty.
 http authorisation manager in monitor test plan

Add Sampler-HTTP Request

  • Now that we have defined our users, it is time to define the tasks that they will be performing. We add HTTP Request element.
    • Right click the mouse button to get the Add menu.
    • Select Add > Sampler > HTTP Request.
    • Then, select the HTTP Request element in the tree.
    • Edit the following properties as in the image below −
    • The following details are entered in this element −
  • Name − Server Status
  • Server Name or IP − localhost
  • Port − 8080
  • Path − /manager/status
  • Parameters − Add a request parameter named "XML" in uppercase. Give it a value of "true" in lowercase.
  • Optional Tasks − Check "Use as Monitor" at the bottom of the sampler.
 http request in monitor test plan

Add a Constant Timer

  • To request the status of the server periodically, add a Constant Timer which will allow a time interval between each request. Add a timer to this thread group by selecting Add > Timer > Constant Timer.
  • Enter 5000 milliseconds in the Thread Delay box. In general, using intervals shorter than 5 seconds may add stress to your server. Find out what is an acceptable interval before you deploy the monitor in your production environment.
 constant timer in monitor test plan
jmeter tutorials - jmeter load testing - jmeter download - download jmeter - apache jmeter

Add Listener

  • The final element you need to add to your Test Plan is a Listener. We add two types of listeners. One that stores results in a file and second that shows the graphical view of the results.
    • Select the thread group element.
    • Add a Simple Data Writer listener Add > Listener > Simple Data Writer.
    • Specify a directory and filename of the output file (in our case, it is /home/manisha/work/sample.csv)
 simple data listener in monitor test plan
  • Let us add another listener by selecting the test plan element Add > Listener > Monitor Results.
 monitor listener in monitor test plan

Run the Test Plan

  • Now save the above test plan as monitor_test.jmx. Execute this test plan using Run > Start option.

View the Output

  • Results will be saved in /home/manisha/work/sample.csv file. You can also see a graphical result in the Monitor result listener as in the image below.
 result listener in monitor test

 result graph in monitor test
  • Note the graph has captions on both sides of the graph. On the left is percent and the right is dead/healthy.
  • If the memory line spikes up and down rapidly, it could indicate memory thrashing. In those situations, it is a good idea to profile the application with Borland OptimizeIt or JProbe.
  • What you want to see is a regular pattern for load, memory and threads. Any erratic behavior usually indicates poor performance or a bug of some sort.

This jmeter tutorial site provides you to the following keypoints on meter interview questions , apache jmeter download , apache jmeter , jmeter load testing , jmeter plugins , jmeter download , download jmeter , jmeter tutorials , load testing jmeter , jmeter summary report , jmeter apache , jmeter api testing , what is jmeter , jmeter load testing example , learn jmeter , how jmeter works , jmeter web service testing , jmeter example , jmeter load testing tutorial , install jmeter , load testing with jmeter , download jmeter for windows , performance testing using jmeter , jmeter functions , mobile app performance testing using jmeter , jmeter gui , install jmeter ubuntu , jmeter stress test , how to use jmeter

Related Searches to Jmeter Monitoring | jMeter Monitor Test Plan