Table des matières

, ,

Jmeter - notes

bin/jmeter.properties

summariser.name=summary
summariser.out=true
bin/jmeter -n -t Requête\ HTTP.jmx
 
bin/jmeter -n -t testplan.jmx -l testplan_01.jtl -j testplan_01.log

Voir :

bzt Requête\ HTTP.jmx
bzt NonGuiTestMonitoring.jmx -report

JMeter HTTP Proxy Server derrière un proxy HTTP

bin/jmeter --proxyHost 192.168.1.171 --proxyPort 8080 --username $USER --password "$(get_pass_ldap)"

BeanShell

ResponseCode = prev.getResponseCode();
log.info(ResponseCode);
print(ResponseCode);