File tree Expand file tree Collapse file tree 3 files changed +18
-4
lines changed
adminapi/src/main/java/io/minio/admin/messages/info Expand file tree Collapse file tree 3 files changed +18
-4
lines changed Original file line number Diff line number Diff line change @@ -34,6 +34,20 @@ public class DiskMetrics {
3434 @ JsonProperty ("apiCalls" )
3535 private Map <String , String > apiCalls ;
3636
37+ @ JsonProperty ("totalErrorsAvailability" )
38+ private Integer totalErrorsAvailability ;
39+
40+ @ JsonProperty ("totalErrorsTimeout" )
41+ private Integer totalErrorsTimeout ;
42+
43+ public Integer totalErrorsAvailability () {
44+ return totalErrorsAvailability ;
45+ }
46+
47+ public Integer totalErrorsTimeout () {
48+ return totalErrorsTimeout ;
49+ }
50+
3751 public Map <String , TimedAction > lastMinute () {
3852 return Collections .unmodifiableMap (lastMinute );
3953 }
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ public class GCStats {
3737 private Integer numGC ;
3838
3939 @ JsonProperty ("pause_total" )
40- private Integer pauseTotal ;
40+ private Long pauseTotal ;
4141
4242 @ JsonProperty ("pause" )
4343 private List <Integer > pause ;
@@ -53,7 +53,7 @@ public Integer numGC() {
5353 return numGC ;
5454 }
5555
56- public Integer pauseTotal () {
56+ public Long pauseTotal () {
5757 return pauseTotal ;
5858 }
5959
Original file line number Diff line number Diff line change 2929@ JsonIgnoreProperties (ignoreUnknown = true )
3030public class Usage {
3131 @ JsonProperty ("size" )
32- private Integer size ;
32+ private Long size ;
3333
3434 @ JsonProperty ("error" )
3535 private String error ;
3636
37- public Integer size () {
37+ public Long size () {
3838 return size ;
3939 }
4040
You can’t perform that action at this time.
0 commit comments