hatoo
hatoo
Thanks for your report! I had some investigation and I found some weird huge memory consumption for `oha` against a specific HTTP server (such as node18's https module) backend although...
Thank you. It's very helpful! I've succeeded in reproducing. I will work on this Saturday.
Thanks for the issue! > Test was twice longer than requested (60 s instead of 30 s), "Requests/sec" is incorrect: test lasted 60 s instead of 30 s, made 301...
@Vanav I've fixed the duration of a test. Could you check it with the master branch?
Thanks. This issue was fixed and I've published v0.6.1 which contains the fix. see #255
Since `oha` is using https://blog.rust-lang.org/2024/03/21/Rust-1.77.0.html#support-for-recursion-in-async-fn You need rust 1.77 to compile it.
You can add a custom header using `-H` option and it overwrites the default header value. ``` oha -n 1 http://localhost:3000 -H "accept-encoding: gzip" ``` ``` ✦ ❯ nc -l...
I want to see a latency histogram. Could you add a full example of a run of `-q` version? (command and full output)
`--wait-ongoing-requests-after-deadline` doesn't ensure it will do `Qps * seconds` requests. It waits for requests that are started but not ended when the deadline is reached. So it is normal that...
Thank you, it looks that `oha` has done only 53 requests because the server isn't fast enough. > by deadline you mean -z? Can I configure it somehow to wait...