Package org.apache.druid.segment.loading
Interface StorageLocationStats
- All Known Implementing Classes:
StorageLocation.StaticStats
public interface StorageLocationStats
-
Method Summary
Modifier and TypeMethodDescriptionlongNumber of bytes dropped during the measurement periodlongNumber of drop operations during the measurement periodlongNumber of bytes loaded during the measurement periodlongNumber of load operations during the measurement periodlongCurrent number of bytes stored at the time this measurement collection was created.
-
Method Details
-
getUsedBytes
long getUsedBytes()Current number of bytes stored at the time this measurement collection was created. -
getLoadCount
long getLoadCount()Number of load operations during the measurement period -
getLoadBytes
long getLoadBytes()Number of bytes loaded during the measurement period -
getDropCount
long getDropCount()Number of drop operations during the measurement period -
getDropBytes
long getDropBytes()Number of bytes dropped during the measurement period
-