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 e93773a commit a900054Copy full SHA for a900054
src/main/java/com/cisco/trex/stateless/model/stats/LatencyStatLat.java
@@ -22,6 +22,9 @@ public class LatencyStatLat {
22
@JsonProperty("total_max")
23
private long totalMax = 0;
24
25
+ @JsonProperty("total_min")
26
+ private long totalMin = 0;
27
+
28
@JsonProperty("average")
29
public double getAverage() {
30
return average;
@@ -71,4 +74,14 @@ public long getTotalMax() {
71
74
public void setTotalMax(final long totalMax) {
72
75
this.totalMax = totalMax;
73
76
}
77
78
79
+ public long getTotalMin() {
80
+ return totalMin;
81
+ }
82
83
84
+ public void setTotalMin(final long totalMin) {
85
+ this.totalMin = totalMin;
86
87
0 commit comments