|
@@ -34,6 +34,8 @@ public class ApiStatusInfo {
|
|
|
|
|
|
private Long errorCount;
|
|
|
|
|
|
+ private double errorMeanRate;
|
|
|
+
|
|
|
private double errorPercent;
|
|
|
|
|
|
public String getMapping() {
|
|
@@ -164,6 +166,14 @@ public class ApiStatusInfo {
|
|
|
this.errorCount = errorCount;
|
|
|
}
|
|
|
|
|
|
+ public double getErrorMeanRate() {
|
|
|
+ return errorMeanRate;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setErrorMeanRate(double errorMeanRate) {
|
|
|
+ this.errorMeanRate = errorMeanRate;
|
|
|
+ }
|
|
|
+
|
|
|
public double getErrorPercent() {
|
|
|
return errorPercent;
|
|
|
}
|