Questions tagged [autobench]

10 questions
3
votes
1 answer

autobench on HTTPS endpoint

How do I set in autobench that I'm testing an HTTPS (port 443) URL? When I call it with: autobench --single_host --host1 host.com --port1 443 --uri1 /hello --num_conn 1000 --timeout 5 --low_rate 10 --high_rate 50 --rate_step 10 --num_call 10 --quiet…
Mark
  • 67,098
  • 47
  • 117
  • 162
3
votes
3 answers

Trouble deciphering Autobench output

I'm trying to benchmark a simple webserver I wrote, but I'm having trouble deciphering what Autobench has outputted. I've been googling all over for help on this (even going through the autobench and httperf source code) but haven't been able to…
Dave DeLong
  • 242,470
  • 58
  • 448
  • 498
2
votes
0 answers

Is there a way to compare Haskell and C functions via AutoBench?

I am used to benchmark Haskell functions via AutoBench but I haven't found so far any info about comparing Haskell and C with it. In particular, I need to benchmark 2 functions and feed them with a random Int list (or array in C). From what I have…
Gianmarco
  • 69
  • 1
  • 3
1
vote
0 answers

Autobench how to define a decreasing profil load

I'm currently using autobench to test a personal web server. I want to define a scenario with 3 main steps: Step 1: generate an increasing request load. For example from low_rate=10 to high_rate=100 with a rate=10 ==> Everything is OK here Step 2: I…
lyapma
  • 21
  • 1
  • 3
1
vote
2 answers

Can autobench do basic authentication?

How can I run the autobench tool using basic authentication? I can run httperf with basic auth but I have not been able to run autobench using it. Thank you.
Brandon
  • 6,832
  • 11
  • 38
  • 50
1
vote
1 answer

Invalid Criterion report when testing on large inputs with AutoBench

I am working with AutoBench since a few days testing performances of Euler's sieve on different input sizes. My tests simply asks for the nth prime inside the list generated by Euler's sieve. While Criterion works well on small inputs for n, it…
1
vote
1 answer

Specifying --host1 as localhost with port 8983 in autobench

I am using autobench for benchmarking in ubuntu 8.10 autobench --single_host --host1 localhost --uri1 /solr/admin --low_rate 20 --high_rate 200 --rate_step 20 --num_call 10 --num_conn 5000 --timeout 5 --file bench1.tsv This is the command which I…
mamatha
  • 49
  • 5
1
vote
0 answers

Trouble with Autobench and setting httperf_add-header

I want to load test my application and need a Cookie for it. I've looked all of the other questions and have tried this: In autobench.conf httperf_add-header = "Cookie: cookie_name=cookie_string\n" Still not working. I believed is ignored. But, when…
gracegimon
  • 35
  • 6
0
votes
1 answer

giving a query as part of a uri in autobench

I am using autobench for doing becnhmark. An example of autobench command is as shown below. autobench --single_host --host1 testhost.foo.com --uri1 /index.html --quiet --timeout 5 --low_rate 20 --high_rate 200 --rate_step 20 --num_call…
Deepika
  • 11
  • 3
0
votes
1 answer

Difference in Autobench between num_conn and low_rate / high_rate?

I'm running a load test using Autobench and httperf, and am having trouble understanding the example they give on their site. The example uses the flags --low_rate 20 --high_rate 40 --rate_step 5 --num_call 10 --num_conn 5000 I get that this will…
Aaron Marks
  • 375
  • 2
  • 7
  • 19