Skip to content

Instantly share code, notes, and snippets.

@V3ckt0r
Created January 17, 2018 16:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save V3ckt0r/7b7741b657695fbfec4d2d477b474e47 to your computer and use it in GitHub Desktop.
Save V3ckt0r/7b7741b657695fbfec4d2d477b474e47 to your computer and use it in GitHub Desktop.
k6 test
import http from "k6/http";
import { sleep } from "k6";
export let options = {
vus: 10,
duration: "30s"
};
export default function() {
http.get("http://test.loadimpact.com");
sleep(1);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment