Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ public void testRelativeWindowDisabledWhenNotConfigured() throws InterruptedExce
System.out.println("relativeWindowDisabledWhenNotConfigured");
System.clearProperty("auto_stopped");
AutoStop instance = new AutoStop();
// Rank blank, window and threshold set (Andrei's reproduction case)
// Rank blank, window and threshold set: must not fall back to comparing P0
instance.setRelWindowSecs("1");
instance.setRelThresholdPct("10");
instance.testStarted();
Expand Down
2 changes: 1 addition & 1 deletion site/dat/wiki/AutoStop.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ To disable auto-stop on rate criteria, just set error rate to zero.

## AutoStop on Percentile Response Time

Percentile rank and threshold specified in milliseconds.
Percentile rank specified as a number, e.g. 90 for P90; the threshold is specified in milliseconds.
Test will be stopped only if specified percentile response time exceeded for *sequentially* N seconds.

## AutoStop on Relative Window Percentile Degradation
Expand Down
Loading