36 questions
0 votes
0 answers
15 views
NEST Network Emulation: httperf parser fails with AttributeError: 'NoneType' object has no attribute 'group
markdown I'm trying to run HTTP emulation experiments using NEST (Network Emulation and Simulation Testbed) but encountering parser errors with httperf output due to regex pattern mismatches. Problem ...
5 votes
0 answers
800 views
Compiling httperf on Mac
Wondering if anyone can tell what's going on? After slogging through compilation trial and error all day, I've got a httperf that compiles and runs yet fails to connect to anything. It now barfs with "...
0 votes
1 answer
925 views
Usage of httperf
I had installed httperf on Fedora 21/Ubuntu 12.04 and tried to make a simple test with following command: httperf --server www.google.com It always gives me the following result: httperf --client=0/...
1 vote
1 answer
503 views
Httperf file descriptor limit
My problem is the same as this question and this question I basicly want trying to run httperf with 10000 connection in parallel like this [httperf --uri / --server 192.168.1.2 --port 8080 --num-...
0 votes
1 answer
1k views
how to pass multiple uri's or more number of requests in a file in httperf tool
I need to do load testing for my application using httperf where i need to send multiple requests to the server and not just one webservice. How do i pass multiple uri's in httperf? Also how can i put ...
3 votes
0 answers
683 views
Gatling vs httperf
I am trying to stress test one simple server with 10K connections per seconds; it's pretty dummy server so this should be possible. When I run gatling, the best I can get is 7K, at 8K we start to ...
0 votes
2 answers
503 views
Is it possible to log request results in httperf?
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 ...
0 votes
1 answer
154 views
Httperf Configuration
I want to configure httperf in a way that it wait for page to load all attached files. In my case, there are 2 Javascript files which are attached with this page. What should its command in this case. ...
2 votes
2 answers
2k views
httperf: connection failed with unexpected error 0
Has anybody seen "httperf: connection failed with unexpected error 0" when running httperf with --ssl? This is blocking my test on that domain. When I tested --ssl on https://google.com it worked ...
5 votes
0 answers
773 views
httperf benchmarking for file upload using POST
I want to benchmark uploading of files to a remote server using HTTPERF I know that there is a wsesslog option where I can give entries for form data. But can I send a post request for a file as ...
1 vote
1 answer
872 views
Need help in understanding httperf num_calls and num_conns
When I run httperf with following options, the output is easy to understand. Options: Make total 10 connections (num-conns) at rate of 10 (rate) connections/second with 2 request calls per connection ...
0 votes
2 answers
411 views
httperf for bechmarking web-servers
I am using httperf to benchmark web-servers. My configuration, i5 processor and 4GB RAM. How to stress this configuration to get accurate results...? I mean I have to put 100% load on this server(12....
1 vote
1 answer
3k views
Httperf wsesslog Understanding
I have file by the name sessions.txt which has contents: url1 url2 url3 That means in the file I have 3 sessions with burst of length 1 The Httperf command I ran is httperf --server=localhost --...
0 votes
1 answer
647 views
Httperf: How to test REST api with endoded uri
I want to test my REST API which has a URI something like this: /myrestAPI/search?startTime=0&endTime=10&count=8&filters={"params": [{"field":"Topic","value":"Algorithms","type":"...
4 votes
1 answer
611 views
Rails load testing with httperf
I'm trying to load test my Rails (3.2.13) application with httperf. It worked very well for the pages which don't require cookies. But, I couldn't make it working for the pages which require cookies. ...