Skip to content

msradam/k6port

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 

History

7 Commits
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

k6port

Grafana k6 is a modern load testing tool built for testing APIs, microservices, and websites.

Installation

zopen install k6

Usage

Create test.js:

import http from 'k6/http';
import { check, sleep } from 'k6';

export const options = {
  vus: 10,
  duration: '30s',
};

export default function () {
  const res = http.get('https://test-api.k6.io/public/crocodiles/');
  check(res, { 'status is 200': (r) => r.status === 200 });
  sleep(1);
}

Run:

k6 run test.js

z/OS Notes

Tag scripts with UTF-8 encoding:

chtag -tc 1208 test.js

Build from Source

git clone https://github.com/msradam/k6port.git
cd k6port
zopen build

References

About

๐Ÿš€ Grafana k6 load testing tool for z/OS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages