Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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'
```