balter
balter copied to clipboard
Load testing framework in Rust
Currently Balter has bare-minimum testing to verify that everything works together. However, this is limited in actually detecting flaws in the algorithms or control loops. Realistically this is going to...
Currently, `#[transaction]` can only be used on async functions which return a `Result`. This let's Balter keep track of the error-rate. ```rust #[transaction] async fn foo() -> Result { }...
Right now, the `#[scenario]` macro only works on functions which take no arguments and return no values. ```rust #[scenario] async fn scenario_a() { } ``` Allowing the user to use...
Supporting prometheus us great, but it would be really nice to have a way to get an html (or any format you like ) report locally after your run.
## 🤖 New release * `balter`: 0.8.2 -> 0.8.3 (✓ API compatible changes) Changelog ## [0.8.3](https://github.com/BalterLoadTesting/balter/compare/balter-v0.8.2...balter-v0.8.3) - 2025-02-11 ### Other - General cleanup --- This PR was generated with [release-plz](https://github.com/release-plz/release-plz/).