https://github.com/genaker/magento-k6-performance
Magento K6 performance toolkit
https://github.com/genaker/magento-k6-performance
Last synced: about 1 year ago
JSON representation
Magento K6 performance toolkit
- Host: GitHub
- URL: https://github.com/genaker/magento-k6-performance
- Owner: Genaker
- Created: 2023-11-07T18:04:29.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-21T16:01:59.000Z (over 2 years ago)
- Last Synced: 2025-04-28T07:03:20.422Z (about 1 year ago)
- Language: JavaScript
- Size: 13.7 KB
- Stars: 17
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Magento 2 K6-performance toolkit
k6 Magento 2 is a modern performance under load-testing tool when more than one user hits your page, built on years of experience in the Magento 2 performance and testing industries. It's built to be powerful, extensible, and full-featured. The key design goal is to provide the best developer experience.

## Installation
## Linux
## Debian/Ubuntu
```
sudo gpg -k
sudo gpg --no-default-keyring --keyring /usr/share/keyrings/k6-archive-keyring.gpg --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys C5AD17C747E3415A3642D57D77C6C491D6AC1D69
echo "deb [signed-by=/usr/share/keyrings/k6-archive-keyring.gpg] https://dl.k6.io/deb stable main" | sudo tee /etc/apt/sources.list.d/k6.list
sudo apt-get update
sudo apt-get install k6
```
If you are behind a firewall or proxy
There have been reports of users being unable to download the key from Ubuntu's key-server using apt-key command due to firewalls or proxies blocking their requests. If you experience this issue, you may try this alternative approach instead:
```
wget -q -O - https://bintray.com/user/downloadSubjectPublicKey?username=bintray | sudo apt-key add -
```
or just install script
```
bash install-ubuntu.sh
```
## Red Hat/CentOS
```
wget https://bintray.com/loadimpact/rpm/rpm -O bintray-loadimpact-rpm.repo
sudo mv bintray-loadimpact-rpm.repo /etc/yum.repos.d/
sudo yum install k6
```
## Mac (brew)
## Brew
```
brew install k6
```
## Docker
```
docker pull loadimpact/k6
```
# Usage with Magento
```
k6 run magento.js -e url=https://example.com -u 200 -i 6000 --include-system-env-vars=false
```
Where:
magento.js - script name
-e url= site URL to test as env variable
-e sleep=0.2 etc. add sleep after HTTP response
-u virtual users / concurrency / threads
-i number of iteration
--include-system-env-vars=false - don't include OS/system env variables
# Full K6 documentation
[https://k6.io/docs/](https://k6.io/docs/)