i
Introduction To Apache JMeter
Apache JMeter Explained
Apache JMeter Working
Apache JMeter Knowledge Required
Apache JMeter Environment Setup
Apache JMeter Download And Install
Apache JMeter on Windows/LINUX
Apache JMeter Run
Thread Group
Ramp-Up Period
Loop Count
Scheduling Test in Jmeter
Samplers in JMeter
Pre-Processor
Post-Processor
Listeners
Assertions
Logical Controllers
Timers
HTTP Request Sampler
Active Threads Over Time
Transactions Per Second
Hits Per Second
Aggregate Graph
Bytes Throughput Over Time
Connect Times Over Time
Response Latencies Over Time
Response Code Per Second
Response Time Graph
Recording Controller
HTTP(S) Test Script Recorder
Configure Firefox To Use JMeter Proxy
Generate HTML Report With JMeter In Non GUI Mode
BeanShell Assertion
BSF Assertion
Compare Assertion
Duration Assertion
HTML Assertion
XML Assertion
XPath Assertion
Response Assertion
Size Assertion
Logic Controller
Recording Controller
Simple Controller
Loop Controller
Random Controller
Module Controller
Interleave Controller
Runtime Controller
Transaction Controller
Creating AWS Instances
Creating Docker-Containers
Port Mapping
java.rmi.server.hostname Property
Dockerfile for JMeter Client / Master
Dockerfile for JMeter Server / Slave
Random Controller
Random Controller creates all the user requests run in the random order in each loop period.
For example, you have three user requests to website http://www.abc.com in the following order:
HTTP request
FTP request
JDBC request
These three requests should run five times. Total 15 user requests will be sent JMeter.
In sequential order, requests are sent sequentially in following order:
HTTP request ->FTP request->JDBC request
for each loop.
In random order, requests are sent as randomly,
FTP request ->HTTP request->JDBC request
Or
JDBC request ->FTP request->HTTP request For each loop.
Don't miss out!