Skip to content

Instantly share code, notes, and snippets.

@hanikhan
Created October 22, 2018 10:24
Show Gist options
  • Save hanikhan/c8b0120e9139d069be31336cda0b78c4 to your computer and use it in GitHub Desktop.
Save hanikhan/c8b0120e9139d069be31336cda0b78c4 to your computer and use it in GitHub Desktop.
loadimpact k6 sample 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