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