https://github.com/iskorotkov/chaos-server
Simple app used in chaos testing as a potential target. It manages value of a counter and allows to access it via REST API
https://github.com/iskorotkov/chaos-server
chaos-engineering docker golang
Last synced: about 1 month ago
JSON representation
Simple app used in chaos testing as a potential target. It manages value of a counter and allows to access it via REST API
- Host: GitHub
- URL: https://github.com/iskorotkov/chaos-server
- Owner: iskorotkov
- Created: 2020-11-01T12:01:04.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-02-12T11:46:37.000Z (over 5 years ago)
- Last Synced: 2025-07-12T22:39:12.269Z (12 months ago)
- Topics: chaos-engineering, docker, golang
- Language: Go
- Homepage:
- Size: 2.93 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chaos Server
Simple app used in chaos testing as a potential target. It manages value of a counter and allows to access it via REST API.
- [Chaos Server](#chaos-server)
- [REST API](#rest-api)
- [Development](#development)
## REST API
- /counter
- GET: returns counter value
- POST: increments counter value by one
## Development
To build project:
```shell
go build ./...
```