Jmeter: how to extract json object of array from repsosne using beanshell post process

Im new to jmeter and wanted to extract the array data from json object i have a Json as below { "error": false, "data": { "seq": [ "71128dfa", "cbfda925", "9d9bfa68", "0ca86cf2", "8bc3cfa7", "4ea9aee3" ], "request_id": "1db799cf-8f2b-4982-a23e-b2fb95b609b9" } } i need to get the data which is under seq array >Solution : You can use Json… Read More Jmeter: how to extract json object of array from repsosne using beanshell post process

How to measure response size data for individual sampler during load test

How to measure size of response data of multiple http samplers in JMeter. I need to find the individual size of all http sampler during the load, not for overall. I am using Beanshell sampler but it is giving overall size not individual for each sampler. import java.util.io.*; import java.lang.io.*; test = prev.getResponseDataAsString().length(); text =… Read More How to measure response size data for individual sampler during load test

bash shell script transmission variable value space processing, how to space data it

bash shell script transmission variable value space processing, how to space data it **#FileList. list.txt Delivery list belowt** $1 $2 $3 xxxx1.com_1 Hello_2 Hello_3 – Hello xxxx2.com_1 Hello_2 Hello_3 – Hello get_list() { now_list=${1} #Pass list while read -r line; do #Circular reading now_list_url=$(echo "${line}"|awk -F ‘ ‘ ‘{print $1}’) #url variable1 now_list_keyword=$(echo "${line}"|awk -F… Read More bash shell script transmission variable value space processing, how to space data it