Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/iskorotkov/chaos-client
Simple app used in chaos testing as a potential target. It can ping specified server at a fixed rate using /counter endpoint
https://github.com/iskorotkov/chaos-client
chaos-engineering docker golang
Last synced: 3 days ago
JSON representation
Simple app used in chaos testing as a potential target. It can ping specified server at a fixed rate using /counter endpoint
- Host: GitHub
- URL: https://github.com/iskorotkov/chaos-client
- Owner: iskorotkov
- Created: 2020-11-01T11:59:04.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-12T11:46:36.000Z (almost 4 years ago)
- Last Synced: 2024-06-19T14:56:18.619Z (7 months ago)
- Topics: chaos-engineering, docker, golang
- Language: Go
- Homepage:
- Size: 3.91 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chaos Client
Simple app used in chaos testing as a potential target. It can ping specified server at a fixed rate using /counter endpoint.
- [Chaos Client](#chaos-client)
- [Command line arguments](#command-line-arguments)
- [Development](#development)## Command line arguments
Service supports several command line arguments set (example values are provided in parentheses):
- `host` — server to ping (`server:80`);
- `verb` — request verb to use (`get`); `get` if not specified;
- `rate` — requests per second (`1`); 0 to send 1 request and close.## Development
To build project:
```shell
go build ./...
```