Skip to content

Instantly share code, notes, and snippets.

@ppcano
Created November 16, 2016 14:23
Show Gist options
  • Save ppcano/512046dec5c263b96267202f53fcfb82 to your computer and use it in GitHub Desktop.
Save ppcano/512046dec5c263b96267202f53fcfb82 to your computer and use it in GitHub Desktop.
var time = xxxx;
option A
result.custom_metric("metric1", time)
{
"thresholds": {
"metric1",
"< 100"
0.5
}
}
option B
result.custom_metric("metric1", time)
if ENV.london {
checks("metric1", time < 100, 0.5)
} else {
checks("metric2", time < 100, 0.5)
}
checks(time < ENV.london ? 100 : 200, 0.5)
test({
after: function(metrics) {
checks("vu load time". metrics.vuLoadTime < 100, 0.5);
}
})
checks(req, {
"metric1", time < 100, 0.5
}
[1,1,1, 1, 1, 1, 1, 1]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment