https://github.com/unasuke/udpbench
https://github.com/unasuke/udpbench
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/unasuke/udpbench
- Owner: unasuke
- License: mit
- Created: 2021-08-29T13:11:41.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-08-31T16:39:38.000Z (almost 5 years ago)
- Last Synced: 2025-01-25T20:32:48.090Z (over 1 year ago)
- Language: Go
- Size: 7.81 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# udpbench
`udpbench` is a UDP server benchmark tool.
Send a UUID to the server, then wait same UUID from server. (A server must return received UUID)
And then, `udpbench` prints total request count and duration.
## How to use
```shell
$ udpbench --help
Usage of ./udpbench:
--address string Server IP address (default "127.0.0.1")
--count int Number of request from a worker (default 10)
--parallelism int Worker parallelism number (default 10)
--port int Server port (default 8080)
pflag: help requested
```
## Example server
See [example](example)