Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/ricardoapaes/k6-example
- Owner: ricardoapaes
- Created: 2023-10-30T14:14:14.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-30T19:09:42.000Z (about 1 year ago)
- Last Synced: 2024-11-08T10:53:58.747Z (2 months ago)
- Language: JavaScript
- Homepage:
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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: