We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e550c5d commit 9ca4f5fCopy full SHA for 9ca4f5f
validator/src/main/java/com/amazon/aoc/models/PerformanceResult.java
@@ -27,6 +27,7 @@ public class PerformanceResult implements Serializable {
27
@NonNull private String testingAmi;
28
29
@NonNull private String dataType;
30
+ @NonNull private String dataMode;
31
@NonNull private Integer dataRate;
32
33
// Calculated average statistics
validator/src/main/java/com/amazon/aoc/validators/PerformanceValidator.java
@@ -112,6 +112,7 @@ public void validate() throws Exception {
112
validationConfig.getInstanceType(),
113
validationConfig.getTestingAmi(),
114
validationConfig.getDataType(),
115
+ validationConfig.getDataMode(),
116
validationConfig.getDataRate(),
117
avgCpu,
118
avgMemory,
0 commit comments