A collection of JMeter scripts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

11 lines
318 B

#!/bin/sh
set -e # Do not update graphs if jmeter fails
: ${JMETER:=jmeter}
: ${GNUPLOT:=gnuplot}
HEAP="-Xms1g -Xmx1g -XX:MaxMetaspaceSize=256m"
date="$(date +%F-%H-%M-%S)"
rm -f response-time.csv tps.csv
$JMETER -n -t nginx-static.jmx -l "results-$date.csv" -e -o "report-$date"
#$GNUPLOT -p response-time.gnuplot