Class DfsReaderIoStats.Accumulator
java.lang.Object
org.eclipse.jgit.internal.storage.dfs.DfsReaderIoStats.Accumulator
- Enclosing class:
DfsReaderIoStats
POJO to accumulate IO statistics.
-
Field Summary
FieldsModifier and TypeFieldDescription(package private) longTotal number of block cache hits.(package private) longTotal number of bytes decompressed.(package private) longTotal microseconds spent inflating compressed bytes.(package private) longTotal number of complete bitmap indexes read into memory.(package private) longTotal number of discrete blocks actually read from pack file(s), that is, block cache misses.(package private) longTotal number of compressed bytes read during cache misses, as block sized units.(package private) longTotal microseconds spent readingreadBlockblocks.(package private) longTotal number of complete pack indexes read into memory.(package private) longTotal number of bytes read from indexes.(package private) longTotal microseconds spent reading pack or bitmap indexes.(package private) longNumber of times the reader explicitly called scanPacks. -
Constructor Summary
Constructors -
Method Summary
-
Field Details
-
scanPacks
long scanPacksNumber of times the reader explicitly called scanPacks. -
readIdx
long readIdxTotal number of complete pack indexes read into memory. -
readBitmap
long readBitmapTotal number of complete bitmap indexes read into memory. -
readIdxBytes
long readIdxBytesTotal number of bytes read from indexes. -
readIdxMicros
long readIdxMicrosTotal microseconds spent reading pack or bitmap indexes. -
blockCacheHit
long blockCacheHitTotal number of block cache hits. -
readBlock
long readBlockTotal number of discrete blocks actually read from pack file(s), that is, block cache misses. -
readBlockBytes
long readBlockBytesTotal number of compressed bytes read during cache misses, as block sized units. -
readBlockMicros
long readBlockMicrosTotal microseconds spent readingreadBlockblocks. -
inflatedBytes
long inflatedBytesTotal number of bytes decompressed. -
inflationMicros
long inflationMicrosTotal microseconds spent inflating compressed bytes.
-
-
Constructor Details
-
Accumulator
Accumulator()
-