Interface UploadStatisticsMXBean
- All Known Implementing Classes:
UploadStatistics
public interface UploadStatisticsMXBean
JMX Bean interface exposing upload statistics.
-
Method Summary
Modifier and TypeMethodDescriptionlongGets the total number of uploaded bytes in the last fifteen minuteslongGets the total number of uploaded bytes in the last five minuteslongGets the total number of uploaded bytes in the last minuteintGets the number of failed upload operationsintGets the number of successful upload operationslongGets the total number of uploaded bytes
-
Method Details
-
getSuccessfulUploadOperations
int getSuccessfulUploadOperations()Gets the number of successful upload operations- Returns:
- the number of upload operations
-
getFailedUploadOperations
int getFailedUploadOperations()Gets the number of failed upload operations- Returns:
- the number of upload operations
-
getTotalBytes
long getTotalBytes()Gets the total number of uploaded bytes- Returns:
- the number of bytes
-
getBytesInLastMinute
long getBytesInLastMinute()Gets the total number of uploaded bytes in the last minute- Returns:
- the number of bytes
-
getBytesInLastFiveMinutes
long getBytesInLastFiveMinutes()Gets the total number of uploaded bytes in the last five minutes- Returns:
- the number of bytes
-
getBytesInLastFifteenMinutes
long getBytesInLastFifteenMinutes()Gets the total number of uploaded bytes in the last fifteen minutes- Returns:
- the number of bytes
-