Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andr-ll/punchy
Performance load tool for http(s) servers.
https://github.com/andr-ll/punchy
go golang performance-testing
Last synced: about 1 month ago
JSON representation
Performance load tool for http(s) servers.
- Host: GitHub
- URL: https://github.com/andr-ll/punchy
- Owner: andr-ll
- Created: 2022-12-13T15:24:30.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2023-01-23T15:42:38.000Z (about 2 years ago)
- Last Synced: 2024-06-19T19:30:37.023Z (7 months ago)
- Topics: go, golang, performance-testing
- Language: Go
- Homepage:
- Size: 108 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# punchy
Performance load tool for http(s) servers.
Inspired by [k6](https://github.com/grafana/k6) and [yandex-tank](https://github.com/yandex/yandex-tank).## ** IN DEVELOPMENT **
## Installation
Make sure your machine has [go1.19](https://go.dev/doc/install) (or higher) installed before running installation script.
### Linux or MacOS
Simply run:
```bash
curl -s -L 'https://raw.githubusercontent.com/andr-ii/punchy/master/scripts/install.sh' | bash
```Then add following line to your `.bashrc` | `.zshrc` | etc.
```bash
export PATH=$PATH:/home/$USER/punchy/bin
```Terminal **reload is required** after this. Then check current installed version:
```bash
# SHORT
punchy -v# LONG
punchy --version
```## Usage
Create a `plan.json` file (any name could be chosen).
To learn more abut available plans `see here`(**in development**).
Then start performance testing by running:
```bash
punchy ./plan.json # or path to your 'plan'
```