public class ShortCountsHistogram extends AbstractHistogram
short count type
See package description for org.HdrHistogram for details.
AbstractHistogram.AllValues, AbstractHistogram.LinearBucketValues, AbstractHistogram.LogarithmicBucketValues, AbstractHistogram.Percentiles, AbstractHistogram.RecordedValues| Modifier and Type | Field and Description |
|---|---|
(package private) short[] |
counts |
(package private) int |
normalizingIndexOffset |
(package private) long |
totalCount |
leadingZeroCountBase, maxValue, minNonZeroValue, subBucketHalfCount, subBucketHalfCountMagnitude, subBucketMask, unitMagnitude, unitMagnitudeMaskautoResize, bucketCount, constructionIdentityCount, countsArrayLength, doubleToIntegerValueConversionRatio, endTimeStampMsec, highestTrackableValue, identity, integerToDoubleValueConversionRatio, intermediateUncompressedByteArray, intermediateUncompressedByteBuffer, lowestDiscernibleValue, numberOfSignificantValueDigits, percentileIterator, recordedValuesIterator, startTimeStampMsec, subBucketCount, tag, wordSizeInBytes| Constructor and Description |
|---|
ShortCountsHistogram(AbstractHistogram source)
Construct a histogram with the same range settings as a given source histogram,
duplicating the source's start/end timestamps (but NOT it's contents)
|
ShortCountsHistogram(int numberOfSignificantValueDigits)
Construct an auto-resizing ShortCountsHistogram with a lowest discernible value of 1 and an auto-adjusting
highestTrackableValue.
|
ShortCountsHistogram(long highestTrackableValue,
int numberOfSignificantValueDigits)
Construct a ShortCountsHistogram given the Highest value to be tracked and a number of significant decimal digits.
|
ShortCountsHistogram(long lowestDiscernibleValue,
long highestTrackableValue,
int numberOfSignificantValueDigits)
Construct a ShortCountsHistogram given the Lowest and Highest values to be tracked and a number of significant
decimal digits.
|
| Modifier and Type | Method and Description |
|---|---|
(package private) int |
_getEstimatedFootprintInBytes() |
(package private) void |
addToCountAtIndex(int index,
long value) |
(package private) void |
addToTotalCount(long value) |
(package private) void |
clearCounts() |
ShortCountsHistogram |
copy()
Create a copy of this histogram, complete with data and everything.
|
ShortCountsHistogram |
copyCorrectedForCoordinatedOmission(long expectedIntervalBetweenValueSamples)
Get a copy of this histogram, corrected for coordinated omission.
|
static ShortCountsHistogram |
decodeFromByteBuffer(java.nio.ByteBuffer buffer,
long minBarForHighestTrackableValue)
Construct a new histogram by decoding it from a ByteBuffer.
|
static ShortCountsHistogram |
decodeFromCompressedByteBuffer(java.nio.ByteBuffer buffer,
long minBarForHighestTrackableValue)
Construct a new histogram by decoding it from a compressed form in a ByteBuffer.
|
(package private) void |
fillCountsArrayFromBuffer(java.nio.ByteBuffer buffer,
int length) |
(package private) long |
getCountAtIndex(int index) |
(package private) long |
getCountAtNormalizedIndex(int index) |
(package private) int |
getNormalizingIndexOffset() |
long |
getTotalCount()
Get the total count of all recorded values in the histogram
|
(package private) void |
incrementCountAtIndex(int index) |
(package private) void |
incrementTotalCount() |
private void |
readObject(java.io.ObjectInputStream o) |
(package private) void |
resize(long newHighestTrackableValue) |
(package private) void |
setCountAtIndex(int index,
long value) |
(package private) void |
setCountAtNormalizedIndex(int index,
long value) |
(package private) void |
setIntegerToDoubleValueConversionRatio(double integerToDoubleValueConversionRatio) |
(package private) void |
setNormalizingIndexOffset(int normalizingIndexOffset) |
(package private) void |
setTotalCount(long totalCount) |
(package private) void |
shiftNormalizingIndexByOffset(int offsetToAdd,
boolean lowestHalfBucketPopulated,
double newIntegerToDoubleValueConversionRatio) |
add, addWhileCorrectingForCoordinatedOmission, allValues, copyInto, copyIntoCorrectedForCoordinatedOmission, countsArrayIndex, decodeFromByteBuffer, decodeFromCompressedByteBuffer, determineArrayLengthNeeded, encodeIntoByteBuffer, encodeIntoCompressedByteBuffer, encodeIntoCompressedByteBuffer, equals, establishInternalTackingValues, establishInternalTackingValues, establishSize, fillBufferFromCountsArray, getBucketIndex, getBucketsNeededToCoverValue, getCountAtValue, getCountBetweenValues, getEndTimeStamp, getEstimatedFootprintInBytes, getHighestTrackableValue, getLengthForNumberOfBuckets, getLowestDiscernibleValue, getMaxValue, getMaxValueAsDouble, getMean, getMinNonZeroValue, getMinValue, getNeededByteBufferCapacity, getNeededByteBufferCapacity, getNeededPayloadByteBufferCapacity, getNeededV0PayloadByteBufferCapacity, getNumberOfSignificantValueDigits, getPercentileAtOrBelowValue, getStartTimeStamp, getStdDeviation, getSubBucketIndex, getTag, getValueAtPercentile, hashCode, highestEquivalentValue, isAutoResize, linearBucketValues, logarithmicBucketValues, lowestEquivalentValue, medianEquivalentValue, nextNonEquivalentValue, nonConcurrentNormalizingIndexShift, normalizeIndex, numberOfSubbuckets, outputPercentileDistribution, outputPercentileDistribution, outputPercentileDistribution, percentiles, recordConvertedDoubleValue, recordConvertedDoubleValueWithCount, recordedValues, recordValue, recordValue, recordValueWithCount, recordValueWithExpectedInterval, reset, setAutoResize, setEndTimeStamp, setStartTimeStamp, setTag, shiftValuesLeft, shiftValuesLeft, shiftValuesRight, shiftValuesRight, sizeOfEquivalentValueRange, subtract, supportsAutoResize, updateMinAndMax, valueFromIndex, valuesAreEquivalentgetDoubleToIntegerValueConversionRatio, getIntegerToDoubleValueConversionRatio, nonConcurrentSetIntegerToDoubleValueConversionRatiolong totalCount
short[] counts
int normalizingIndexOffset
public ShortCountsHistogram(int numberOfSignificantValueDigits)
numberOfSignificantValueDigits - Specifies the precision to use. This is the number of significant
decimal digits to which the histogram will maintain value resolution
and separation. Must be a non-negative integer between 0 and 5.public ShortCountsHistogram(long highestTrackableValue,
int numberOfSignificantValueDigits)
highestTrackableValue - The highest value to be tracked by the histogram. Must be a positive
integer that is >= 2.numberOfSignificantValueDigits - Specifies the precision to use. This is the number of significant
decimal digits to which the histogram will maintain value resolution
and separation. Must be a non-negative integer between 0 and 5.public ShortCountsHistogram(long lowestDiscernibleValue,
long highestTrackableValue,
int numberOfSignificantValueDigits)
lowestDiscernibleValue - The lowest value that can be tracked (distinguished from 0) by the histogram.
Must be a positive integer that is >= 1. May be internally rounded
down to nearest power of 2.highestTrackableValue - The highest value to be tracked by the histogram. Must be a positive
integer that is >= (2 * lowestDiscernibleValue).numberOfSignificantValueDigits - Specifies the precision to use. This is the number of significant
decimal digits to which the histogram will maintain value resolution
and separation. Must be a non-negative integer between 0 and 5.public ShortCountsHistogram(AbstractHistogram source)
source - The source histogram to duplicatelong getCountAtIndex(int index)
getCountAtIndex in class AbstractHistogramlong getCountAtNormalizedIndex(int index)
getCountAtNormalizedIndex in class AbstractHistogramvoid incrementCountAtIndex(int index)
incrementCountAtIndex in class AbstractHistogramvoid addToCountAtIndex(int index,
long value)
addToCountAtIndex in class AbstractHistogramvoid setCountAtIndex(int index,
long value)
setCountAtIndex in class AbstractHistogramvoid setCountAtNormalizedIndex(int index,
long value)
setCountAtNormalizedIndex in class AbstractHistogramint getNormalizingIndexOffset()
getNormalizingIndexOffset in class AbstractHistogramvoid setNormalizingIndexOffset(int normalizingIndexOffset)
setNormalizingIndexOffset in class AbstractHistogramvoid setIntegerToDoubleValueConversionRatio(double integerToDoubleValueConversionRatio)
setIntegerToDoubleValueConversionRatio in class AbstractHistogramBasevoid shiftNormalizingIndexByOffset(int offsetToAdd,
boolean lowestHalfBucketPopulated,
double newIntegerToDoubleValueConversionRatio)
shiftNormalizingIndexByOffset in class AbstractHistogramvoid clearCounts()
clearCounts in class AbstractHistogrampublic ShortCountsHistogram copy()
AbstractHistogramcopy in class AbstractHistogrampublic ShortCountsHistogram copyCorrectedForCoordinatedOmission(long expectedIntervalBetweenValueSamples)
AbstractHistogram
To compensate for the loss of sampled values when a recorded value is larger than the expected
interval between value samples, the new histogram will include an auto-generated additional series of
decreasingly-smaller (down to the expectedIntervalBetweenValueSamples) value records for each count found
in the current histogram that is larger than the expectedIntervalBetweenValueSamples.
Note: This is a post-correction method, as opposed to the at-recording correction method provided
by recordValueWithExpectedInterval. The two
methods are mutually exclusive, and only one of the two should be be used on a given data set to correct
for the same coordinated omission issue.
by
See notes in the description of the Histogram calls for an illustration of why this corrective behavior is important.
copyCorrectedForCoordinatedOmission in class AbstractHistogramexpectedIntervalBetweenValueSamples - If expectedIntervalBetweenValueSamples is larger than 0, add
auto-generated value records as appropriate if value is larger
than expectedIntervalBetweenValueSamplespublic long getTotalCount()
AbstractHistogramgetTotalCount in class AbstractHistogramvoid setTotalCount(long totalCount)
setTotalCount in class AbstractHistogramvoid incrementTotalCount()
incrementTotalCount in class AbstractHistogramvoid addToTotalCount(long value)
addToTotalCount in class AbstractHistogramint _getEstimatedFootprintInBytes()
_getEstimatedFootprintInBytes in class AbstractHistogramvoid resize(long newHighestTrackableValue)
resize in class AbstractHistogrampublic static ShortCountsHistogram decodeFromByteBuffer(java.nio.ByteBuffer buffer, long minBarForHighestTrackableValue)
buffer - The buffer to decode fromminBarForHighestTrackableValue - Force highestTrackableValue to be set at least this highpublic static ShortCountsHistogram decodeFromCompressedByteBuffer(java.nio.ByteBuffer buffer, long minBarForHighestTrackableValue) throws java.util.zip.DataFormatException
buffer - The buffer to decode fromminBarForHighestTrackableValue - Force highestTrackableValue to be set at least this highjava.util.zip.DataFormatException - on error parsing/decompressing the bufferprivate void readObject(java.io.ObjectInputStream o)
throws java.io.IOException,
java.lang.ClassNotFoundException
java.io.IOExceptionjava.lang.ClassNotFoundExceptionvoid fillCountsArrayFromBuffer(java.nio.ByteBuffer buffer,
int length)
fillCountsArrayFromBuffer in class AbstractHistogram