Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 ./...
```