Skip to content

Instantly share code, notes, and snippets.

@ppcano
Created July 5, 2017 13:25
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 ppcano/37229c3966ad6f6f7570dcc6a3539d35 to your computer and use it in GitHub Desktop.
Save ppcano/37229c3966ad6f6f7570dcc6a3539d35 to your computer and use it in GitHub Desktop.
import http from "k6/http";
export let options = {
vus: 50,
duration: "10s",
thresholds: {
http_req_duration: ["p(95)<1000"]
}
};
export default function() {
http.get("http://test.loadimpact.com/");
http.get("http://territoriohuelva.com/");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment