Created
November 16, 2016 14:23
-
-
Save ppcano/512046dec5c263b96267202f53fcfb82 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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