Might works some native operating system commands, like netstat. In Unix-like systems, you can look each connection that your system make to web application. For example:
IP= Web applications target $ while(true) do netstat -na | grep ESTA | grep $IP | wc -l; sleep 1; done I hope this help you. Greetings 2012/9/3 Divya <[email protected]> > Hello Users, > > I am creating a Test Plan in JMeter to load test a web application and want > to ensure that the load script will dispatch the requests to all the web > servers behind the Load Balancer, such that all the web servers are > utilized in processing the requests. > > Is this achievable with JMeter? How? > > Thanks, > D >
