diff --git a/README.md b/README.md index efbb09d..fc15357 100644 --- a/README.md +++ b/README.md @@ -60,8 +60,8 @@ You can find an example config structure in the [config.json](https://github.com "url": "https://example.com", "no_proxy_check": false, "timeout": 2000, - "dodos_count": 10, - "request_count": 1000, + "dodos": 10, + "requests": 1000, "params": {}, "headers": {}, "cookies": {}, @@ -108,8 +108,8 @@ If the Headers, Params, Cookies and Body fields have multiple values, each reque | Yes | - | --yes | -y | Boolean | Answer yes to all questions | false | | URL | url | --url | -u | String | URL to send the request to | - | | Method | method | --method | -m | String | HTTP method | GET | -| Request count | request_count | --request-count | -r | Integer | Total number of requests to send | 1000 | -| Dodos count (Threads) | dodos_count | --dodos-count | -d | Integer | Number of dodos (threads) to send requests in parallel | 1 | +| Requests | requests | --requests | -r | Integer | Total number of requests to send | 1000 | +| Dodos (Threads) | dodos | --dodos | -d | Integer | Number of dodos (threads) to send requests in parallel | 1 | | Timeout | timeout | --timeout | -t | Integer | Timeout for canceling each request (milliseconds) | 10000 | | No Proxy Check | no_proxy_check | --no-proxy-check| - | Boolean | Disable proxy check | false | | Params | params | - | - | Key-Value {String: [String]} | Request parameters | - | diff --git a/config.json b/config.json index ad5e1f9..7e18d93 100644 --- a/config.json +++ b/config.json @@ -3,8 +3,8 @@ "url": "https://example.com", "no_proxy_check": false, "timeout": 10000, - "dodos_count": 1, - "request_count": 1, + "dodos": 1, + "requests": 1, "params": {}, "headers": {}, "cookies": {},