Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ricardoapaes/k6-example

Exemplo de uso K6
https://github.com/ricardoapaes/k6-example

Last synced: 11 days ago
JSON representation

Exemplo de uso K6

Awesome Lists containing this project

README

        

# K6

Vamos usar o `https://k6.io/` e criar um script de exemplo.

Para rodar o script de exemplo usar o seguinte comando:

```shell
docker run --rm \
-v ${PWD}:/k6/ \
-w /k6/ \
-e PROTOCOL=https \
-e HOST=crn1.com.br \
grafana/k6:latest \
run index.js
```

OU

```shell
k6 run \
-e PROTOCOL=https \
-e HOST=crn1.com.br \
index.js
```

## Duvidas

Acesse a documentação oficial no link: