How to force Jmeter proxy server to listen only for specified page -


i using jmeter proxy record steps take in browser. there possibility set proxy server listen 1 specific page?

i want record steps taken on www.test123.com

thanks

use include pattern restrict requests recorded.

as per http://jmeter.apache.org/usermanual/component_reference.html#http_proxy_server

the include , exclude patterns treated regular expressions (using jakarta oro). matched against host name, port (actual or implied) path , query (if any) of each browser request. if url browsing "http://jmeter.apache.org/jmeter/index.html?username=xxxx" , regular expression tested against string: "jmeter.apache.org:80/jmeter/index.html?username=xxxx" . thus, if want include .html files, regular expression might like: ".*\.html(\?.*)?" - or ".*\.html" if know there no query string or want html pages without query strings.

"www.test123.com.*" should record requests given url.


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -