drill icon indicating copy to clipboard operation
drill copied to clipboard

Drill is an HTTP load testing application written in Rust

Results 56 drill issues
Sort by recently updated
recently updated
newest added

Hi there! I found this feature very useful in the [GitHub CLI application](https://github.com/cli/cli/blob/trunk/internal/update/update.go) and [npm](https://github.com/npm/cli/blob/latest/lib/utils/update-notifier.js). I think it'll be useful for users who install `drill` using `cargo`. And this will...

Currently, the maximum bounds of `60*60*1000` is insufficient for requests that take longer than ~4000ms. Increasing the bounds of this by a factor of 10 should prevent this ever being...

> ansi_term is Unmaintained | Details | | | ------------------- | ---------------------------------------------- | | Status | unmaintained | | Package | `ansi_term` | | Version | `0.12.1` | | URL...

If a timeout occurs on some requests, the statistics will not be printed out. The program will then panic. TimeOut Log ``` Error connecting 'xxxxx': reqwest::Error { kind: Request, url:...

drill 0.8.3 ```yaml --- concurrency: 4 base: 'http://sarah.example.com:49161' iterations: 50 rampup: 4 plan: - name: Support for POST method request: url: /api/users method: POST body: foo=bar ``` the output is...

Sometimes it is helpful to test the behavior of a system under different loads. For example, testing scale up and scale down behavior. To do this, it is useful to...

The "worst case" value the statistics currently show is the 99.9th percentile. Unfortunately, this is often not sufficient to understand the behavior of a system. The max value is really...

Hi, thanks for making Drill, it's great! I'm testing on an M1 Mac with this config, ``` base: 'http://localhost:8080/api' concurrency: 1000 iterations: 100000 rampup: 2 ``` I'm testing one GET...

I see this PR: https://github.com/fcsonline/drill/issues/89 But when I do this very simple repro: ``` concurrency: 1 iterations: 1 plan: - name: Initial assignment for version {{ index }} assert: key:...

Hi! I am doing a research of Profile-Guided Optimization (PGO) benefits on different software (results are [here](https://github.com/zamazan4ik/awesome-pgo/)). I optimized `drill` with PGO too (via [cargo-pgo](https://github.com/Kobzol/cargo-pgo)) and want to share my...