-
Notifications
You must be signed in to change notification settings - Fork 320
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can i input txt file with different URLs in it ? #30
Comments
Currently, there is no way to specify multiple URLs directly, but you could do something in the spirit of UNIX philosophy, i.e., given
you can then run: cat urls.txt | xargs -P 8 -i bombardier -q "{}" or, if you need outputs ( #!/usr/bin/env bash
while read -r url
do
(bombardier "$url" > "$url.txt") &
done < "${1:-/dev/stdin}" and then, But maybe, you could try another approach, like, disabling caching on a test server, if it's a feasible option. |
Thanks, looking in to it., right now i am on windows., so will work with batch scripting. |
Hey @codesenberg ! Do you thin there is any change this feature get added? I'm using bombardier to benchmark a system that If there was a way to tell bombardier to use a sequence, for example go from 1...1000 in a path like: drill, a benchmark tool written in rust has something similar to this. By the way, bombardier its an amazing tool! |
Thanks for providing an example of how this functionality might be implemented, @ericsouza. |
becuase there is caching enabled on my sites and i want to test different urls.,
as if url gets requested twice it gets cached.
so it would be great if we could provide txt file containing list of urls.
thanks
The text was updated successfully, but these errors were encountered: