0

I'm using httperf for load testing. I have two HTTP endpoints to be tested. However, the second endpoint needs the result of the first one. That is, requests to the second endpoint need to pass a parameter which is generated by the first endpoint.

So, I have to log the response of the first endpoint. Then I will generate the request URI for my second call using this log.

Is it possible to log the results of the tested requests in httperf? If not, can you recommend me an alternative way or testing tool?

ovunccetin
  • 8,443
  • 5
  • 42
  • 53

2 Answers2

0

AFAIK this is not possible with httperf, have a look to Tsung https://tsung.readthedocs.org/en/latest/ or Gatling http://gatling.io/ eventualy JMeter http://jmeter.apache.org/ all these third tools have this beehaviour.

Regards

Rodolphe
  • 848
  • 4
  • 15
0

You can use the option [−−print−reply [header|body]]
Check manpage for more details.

Martin Brisiak
  • 3,872
  • 12
  • 37
  • 51
coder
  • 39
  • 6