public class SynchronizedDoubleHistogram extends DoubleHistogram
A SynchronizedDoubleHistogram is a variant of DoubleHistogram that is
synchronized as a whole, such that queries, copying, and addition operations are atomic with relation to
modification on the SynchronizedDoubleHistogram, nd such that external accessors (e.g. iterations on the
histogram data) that synchronize on the SynchronizedDoubleHistogram instance can safely assume that no
modifications to the histogram data occur within their synchronized block.
It is important to note that synchronization can result in blocking recoding calls. If non-blocking recoding
operations are required, consider using ConcurrentDoubleHistogram, or (recommended)
DoubleRecorder which were intended for concurrent operations.
SynchronizedDoubleHistogram supports the recording and analyzing sampled data value counts across a
configurable dynamic range of floating point (double) values, with configurable value precision within the range.
Dynamic range is expressed as a ratio between the highest and lowest non-zero values trackable within the histogram
at any given time. Value precision is expressed as the number of significant [decimal] digits in the value recording,
and provides control over value quantization behavior across the value range and the subsequent value resolution at
any given level.
Auto-ranging: Unlike integer value based histograms, the specific value range tracked by a SynchronizedDoubleHistogram is not specified upfront. Only the dynamic range of values that the histogram can
cover is (optionally) specified. E.g. When a ConcurrentDoubleHistogram is created to track a dynamic range of
3600000000000 (enough to track values from a nanosecond to an hour), values could be recorded into into it in any
consistent unit of time as long as the ratio between the highest and lowest non-zero values stays within the
specified dynamic range, so recording in units of nanoseconds (1.0 thru 3600000000000.0), milliseconds (0.000001
thru 3600000.0) seconds (0.000000001 thru 3600.0), hours (1/3.6E12 thru 1.0) will all work just as well.
Auto-resizing: When constructed with no specified dynamic range (or when auto-resize is turned on with setAutoResize(boolean)) a SynchronizedDoubleHistogram will auto-resize its dynamic
range to include recorded values as they are encountered. Note that recording calls that cause auto-resizing may
take longer to execute, as resizing incurs allocation and copying of internal data structures.
Attempts to record non-zero values that range outside of the specified dynamic range (or exceed the limits of
of dynamic range when auto-resizing) may results in ArrayIndexOutOfBoundsException exceptions, either
due to overflow or underflow conditions. These exceptions will only be thrown if recording the value would have
resulted in discarding or losing the required value precision of values already recorded in the histogram.
See package description for org.HdrHistogram for details.
DoubleHistogram.AllValues, DoubleHistogram.LinearBucketValues, DoubleHistogram.LogarithmicBucketValues, DoubleHistogram.Percentiles, DoubleHistogram.RecordedValues| Constructor and Description |
|---|
SynchronizedDoubleHistogram(ConcurrentDoubleHistogram source)
Construct a
SynchronizedDoubleHistogram with the same range settings as a given source,
duplicating the source's start/end timestamps (but NOT it's contents) |
SynchronizedDoubleHistogram(int numberOfSignificantValueDigits)
Construct a new auto-resizing DoubleHistogram using a precision stated as a number of significant
decimal digits.
|
SynchronizedDoubleHistogram(long highestToLowestValueRatio,
int numberOfSignificantValueDigits)
Construct a new DoubleHistogram with the specified dynamic range (provided in
highestToLowestValueRatio) and using a precision stated as a number of significant
decimal digits. |
| Modifier and Type | Method and Description |
|---|---|
void |
add(DoubleHistogram fromHistogram)
Add the contents of another histogram to this one.
|
void |
addWhileCorrectingForCoordinatedOmission(DoubleHistogram fromHistogram,
double expectedIntervalBetweenValueSamples)
Add the contents of another histogram to this one, while correcting the incoming data for coordinated omission.
|
DoubleHistogram.AllValues |
allValues()
Provide a means of iterating through all histogram values using the finest granularity steps supported by
the underlying representation.
|
DoubleHistogram |
copy()
Create a copy of this histogram, complete with data and everything.
|
DoubleHistogram |
copyCorrectedForCoordinatedOmission(double expectedIntervalBetweenValueSamples)
Get a copy of this histogram, corrected for coordinated omission.
|
void |
copyInto(DoubleHistogram targetHistogram)
Copy this histogram into the target histogram, overwriting it's contents.
|
void |
copyIntoCorrectedForCoordinatedOmission(DoubleHistogram targetHistogram,
double expectedIntervalBetweenValueSamples)
Copy this histogram, corrected for coordinated omission, into the target histogram, overwriting it's contents.
|
int |
encodeIntoByteBuffer(ByteBuffer buffer)
Encode this histogram into a ByteBuffer
|
int |
encodeIntoCompressedByteBuffer(ByteBuffer targetBuffer)
Encode this histogram in compressed form into a byte array
|
int |
encodeIntoCompressedByteBuffer(ByteBuffer targetBuffer,
int compressionLevel)
Encode this histogram in compressed form into a byte array
|
boolean |
equals(Object other)
Determine if this histogram is equivalent to another.
|
long |
getCountAtValue(double value)
Get the count of recorded values at a specific value (to within the histogram resolution at the value level).
|
double |
getCountBetweenValues(double lowValue,
double highValue)
Get the count of recorded values within a range of value levels (inclusive to within the histogram's resolution).
|
long |
getEndTimeStamp()
get the end time stamp [optionally] stored with this histogram
|
int |
getEstimatedFootprintInBytes()
Provide a (conservatively high) estimate of the Histogram's total footprint in bytes
|
long |
getHighestToLowestValueRatio()
get the Dynamic range of the histogram: the configured ratio between the highest trackable value and the
lowest trackable non zero value at any given time.
|
double |
getIntegerToDoubleValueConversionRatio()
Get the current conversion ratio from interval integer value representation to double units.
|
double |
getMaxValue()
Get the highest recorded value level in the histogram
|
double |
getMaxValueAsDouble()
Get the highest recorded value level in the histogram as a double
|
double |
getMean()
Get the computed mean value of all recorded values in the histogram
|
double |
getMinNonZeroValue()
Get the lowest recorded non-zero value level in the histogram
|
double |
getMinValue()
Get the lowest recorded value level in the histogram
|
int |
getNeededByteBufferCapacity()
Get the capacity needed to encode this histogram into a ByteBuffer
|
int |
getNumberOfSignificantValueDigits()
get the configured numberOfSignificantValueDigits
|
double |
getPercentileAtOrBelowValue(double value)
Get the percentile at a given value.
|
long |
getStartTimeStamp()
get the start time stamp [optionally] stored with this histogram
|
double |
getStdDeviation()
Get the computed standard deviation of all recorded values in the histogram
|
long |
getTotalCount()
Get the total count of all recorded values in the histogram
|
double |
getValueAtPercentile(double percentile)
Get the value at a given percentile.
|
int |
hashCode() |
double |
highestEquivalentValue(double value)
Get the highest value that is equivalent to the given value within the histogram's resolution.
|
boolean |
isAutoResize() |
DoubleHistogram.LinearBucketValues |
linearBucketValues(double valueUnitsPerBucket)
Provide a means of iterating through histogram values using linear steps.
|
DoubleHistogram.LogarithmicBucketValues |
logarithmicBucketValues(double valueUnitsInFirstBucket,
double logBase)
Provide a means of iterating through histogram values at logarithmically increasing levels.
|
double |
lowestEquivalentValue(double value)
Get the lowest value that is equivalent to the given value within the histogram's resolution.
|
double |
medianEquivalentValue(double value)
Get a value that lies in the middle (rounded up) of the range of values equivalent the given value.
|
double |
nextNonEquivalentValue(double value)
Get the next value that is not equivalent to the given value within the histogram's resolution.
|
void |
outputPercentileDistribution(PrintStream printStream,
Double outputValueUnitScalingRatio)
Produce textual representation of the value distribution of histogram data by percentile.
|
void |
outputPercentileDistribution(PrintStream printStream,
int percentileTicksPerHalfDistance,
Double outputValueUnitScalingRatio)
Produce textual representation of the value distribution of histogram data by percentile.
|
void |
outputPercentileDistribution(PrintStream printStream,
int percentileTicksPerHalfDistance,
Double outputValueUnitScalingRatio,
boolean useCsvFormat)
Produce textual representation of the value distribution of histogram data by percentile.
|
DoubleHistogram.Percentiles |
percentiles(int percentileTicksPerHalfDistance)
Provide a means of iterating through histogram values according to percentile levels.
|
DoubleHistogram.RecordedValues |
recordedValues()
Provide a means of iterating through all recorded histogram values using the finest granularity steps
supported by the underlying representation.
|
void |
recordValue(double value)
Record a value in the histogram
|
void |
recordValueWithCount(double value,
long count)
Record a value in the histogram (adding to the value's current count)
|
void |
recordValueWithExpectedInterval(double value,
double expectedIntervalBetweenValueSamples)
Record a value in the histogram.
|
void |
reset()
Reset the contents and stats of this histogram
|
void |
setAutoResize(boolean autoResize) |
void |
setEndTimeStamp(long timeStampMsec)
Set the end time stamp value associated with this histogram to a given value.
|
void |
setStartTimeStamp(long timeStampMsec)
Set the start time stamp value associated with this histogram to a given value.
|
double |
sizeOfEquivalentValueRange(double value)
Get the size (in value units) of the range of values that are equivalent to the given value within the
histogram's resolution.
|
void |
subtract(DoubleHistogram fromHistogram)
Subtract the contents of another histogram from this one.
|
boolean |
valuesAreEquivalent(double value1,
double value2)
Determine if two values are equivalent with the histogram's resolution.
|
decodeFromByteBuffer, decodeFromByteBuffer, decodeFromCompressedByteBuffer, decodeFromCompressedByteBuffer, fromString, getTag, setTagpublic SynchronizedDoubleHistogram(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 SynchronizedDoubleHistogram(long highestToLowestValueRatio,
int numberOfSignificantValueDigits)
highestToLowestValueRatio) and using a precision stated as a number of significant
decimal digits.highestToLowestValueRatio - specifies the dynamic range to usenumberOfSignificantValueDigits - 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 SynchronizedDoubleHistogram(ConcurrentDoubleHistogram source)
SynchronizedDoubleHistogram with the same range settings as a given source,
duplicating the source's start/end timestamps (but NOT it's contents)source - The source histogram to duplicatepublic boolean isAutoResize()
isAutoResize in class DoubleHistogrampublic void setAutoResize(boolean autoResize)
setAutoResize in class DoubleHistogrampublic void recordValue(double value)
throws ArrayIndexOutOfBoundsException
DoubleHistogramrecordValue in interface DoubleValueRecorderrecordValue in class DoubleHistogramvalue - The value to be recordedArrayIndexOutOfBoundsException - (may throw) if value cannot be covered by the histogram's rangepublic void recordValueWithCount(double value,
long count)
throws ArrayIndexOutOfBoundsException
DoubleHistogramrecordValueWithCount in interface DoubleValueRecorderrecordValueWithCount in class DoubleHistogramvalue - The value to be recordedcount - The number of occurrences of this value to recordArrayIndexOutOfBoundsException - (may throw) if value cannot be covered by the histogram's rangepublic void recordValueWithExpectedInterval(double value,
double expectedIntervalBetweenValueSamples)
throws ArrayIndexOutOfBoundsException
DoubleHistogramTo compensate for the loss of sampled values when a recorded value is larger than the expected interval between value samples, Histogram will auto-generate an additional series of decreasingly-smaller (down to the expectedIntervalBetweenValueSamples) value records.
Note: This is a at-recording correction method, as opposed to the post-recording correction method provided
by DoubleHistogram.copyCorrectedForCoordinatedOmission(double).
The use cases for these 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.
See notes in the description of the Histogram calls for an illustration of why this corrective behavior is important.
recordValueWithExpectedInterval in interface DoubleValueRecorderrecordValueWithExpectedInterval in class DoubleHistogramvalue - The value to recordexpectedIntervalBetweenValueSamples - If expectedIntervalBetweenValueSamples is larger than 0, add
auto-generated value records as appropriate if value is larger
than expectedIntervalBetweenValueSamplesArrayIndexOutOfBoundsException - (may throw) if value cannot be covered by the histogram's rangepublic void reset()
DoubleHistogramreset in interface DoubleValueRecorderreset in class DoubleHistogrampublic DoubleHistogram copy()
DoubleHistogramcopy in class DoubleHistogrampublic DoubleHistogram copyCorrectedForCoordinatedOmission(double expectedIntervalBetweenValueSamples)
DoubleHistogram
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 DoubleHistogramexpectedIntervalBetweenValueSamples - If expectedIntervalBetweenValueSamples is larger than 0, add
auto-generated value records as appropriate if value is larger
than expectedIntervalBetweenValueSamplespublic void copyInto(DoubleHistogram targetHistogram)
DoubleHistogramcopyInto in class DoubleHistogramtargetHistogram - the histogram to copy intopublic void copyIntoCorrectedForCoordinatedOmission(DoubleHistogram targetHistogram, double expectedIntervalBetweenValueSamples)
DoubleHistogramDoubleHistogram.copyCorrectedForCoordinatedOmission(double) for more detailed explanation about how correction is applied)copyIntoCorrectedForCoordinatedOmission in class DoubleHistogramtargetHistogram - the histogram to copy intoexpectedIntervalBetweenValueSamples - If expectedIntervalBetweenValueSamples is larger than 0, add
auto-generated value records as appropriate if value is larger
than expectedIntervalBetweenValueSamplespublic void add(DoubleHistogram fromHistogram) throws ArrayIndexOutOfBoundsException
DoubleHistogramadd in class DoubleHistogramfromHistogram - The other histogram.ArrayIndexOutOfBoundsException - (may throw) if values in fromHistogram's cannot be
covered by this histogram's rangepublic void subtract(DoubleHistogram fromHistogram)
DoubleHistogramsubtract in class DoubleHistogramfromHistogram - The other histogram.public void addWhileCorrectingForCoordinatedOmission(DoubleHistogram fromHistogram, double expectedIntervalBetweenValueSamples)
DoubleHistogram
To compensate for the loss of sampled values when a recorded value is larger than the expected
interval between value samples, the values added 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-recording 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.
addWhileCorrectingForCoordinatedOmission in class DoubleHistogramfromHistogram - Other histogram. highestToLowestValueRatio and numberOfSignificantValueDigits must match.expectedIntervalBetweenValueSamples - If expectedIntervalBetweenValueSamples is larger than 0, add
auto-generated value records as appropriate if value is larger
than expectedIntervalBetweenValueSamplespublic boolean equals(Object other)
DoubleHistogramequals in class DoubleHistogramother - the other histogram to compare topublic int hashCode()
hashCode in class DoubleHistogrampublic long getTotalCount()
DoubleHistogramgetTotalCount in class DoubleHistogrampublic double getIntegerToDoubleValueConversionRatio()
DoubleHistogramgetDoubleValueIteratedTo()
and
getDoubleValueIteratedFrom()
accessors to HistogramIterationValue iterated values.getIntegerToDoubleValueConversionRatio in class DoubleHistogrampublic int getNumberOfSignificantValueDigits()
DoubleHistogramgetNumberOfSignificantValueDigits in class DoubleHistogrampublic long getHighestToLowestValueRatio()
DoubleHistogramgetHighestToLowestValueRatio in class DoubleHistogrampublic double sizeOfEquivalentValueRange(double value)
DoubleHistogramsizeOfEquivalentValueRange in class DoubleHistogramvalue - The given valuepublic double lowestEquivalentValue(double value)
DoubleHistogramlowestEquivalentValue in class DoubleHistogramvalue - The given valuepublic double highestEquivalentValue(double value)
DoubleHistogramhighestEquivalentValue in class DoubleHistogramvalue - The given valuepublic double medianEquivalentValue(double value)
DoubleHistogrammedianEquivalentValue in class DoubleHistogramvalue - The given valuepublic double nextNonEquivalentValue(double value)
DoubleHistogramnextNonEquivalentValue in class DoubleHistogramvalue - The given valuepublic boolean valuesAreEquivalent(double value1,
double value2)
DoubleHistogramvaluesAreEquivalent in class DoubleHistogramvalue1 - first value to comparevalue2 - second value to comparepublic int getEstimatedFootprintInBytes()
DoubleHistogramgetEstimatedFootprintInBytes in class DoubleHistogrampublic long getStartTimeStamp()
DoubleHistogramgetStartTimeStamp in class DoubleHistogrampublic void setStartTimeStamp(long timeStampMsec)
DoubleHistogramsetStartTimeStamp in class DoubleHistogramtimeStampMsec - the value to set the time stamp to, [by convention] in msec since the epoch.public long getEndTimeStamp()
DoubleHistogramgetEndTimeStamp in class DoubleHistogrampublic void setEndTimeStamp(long timeStampMsec)
DoubleHistogramsetEndTimeStamp in class DoubleHistogramtimeStampMsec - the value to set the time stamp to, [by convention] in msec since the epoch.public double getMinValue()
DoubleHistogramgetMinValue in class DoubleHistogrampublic double getMaxValue()
DoubleHistogramgetMaxValue in class DoubleHistogrampublic double getMinNonZeroValue()
DoubleHistogramgetMinNonZeroValue in class DoubleHistogrampublic double getMaxValueAsDouble()
DoubleHistogramgetMaxValueAsDouble in class DoubleHistogrampublic double getMean()
DoubleHistogramgetMean in class DoubleHistogrampublic double getStdDeviation()
DoubleHistogramgetStdDeviation in class DoubleHistogrampublic double getValueAtPercentile(double percentile)
DoubleHistogram
Note that two values are "equivalent" in this statement if
DoubleHistogram.valuesAreEquivalent(double, double) would return true.
getValueAtPercentile in class DoubleHistogrampercentile - The percentile for which to return the associated valuepublic double getPercentileAtOrBelowValue(double value)
DoubleHistogram
Note that two values are "equivalent" in this statement if
DoubleHistogram.valuesAreEquivalent(double, double) would return true.
getPercentileAtOrBelowValue in class DoubleHistogramvalue - The value for which to return the associated percentilepublic double getCountBetweenValues(double lowValue,
double highValue)
throws ArrayIndexOutOfBoundsException
DoubleHistogramgetCountBetweenValues in class DoubleHistogramlowValue - The lower value bound on the range for which
to provide the recorded count. Will be rounded down with
lowestEquivalentValue.highValue - The higher value bound on the range for which to provide the recorded count.
Will be rounded up with highestEquivalentValue.ArrayIndexOutOfBoundsExceptionpublic long getCountAtValue(double value)
throws ArrayIndexOutOfBoundsException
DoubleHistogramgetCountAtValue in class DoubleHistogramvalue - The value for which to provide the recorded countArrayIndexOutOfBoundsExceptionpublic DoubleHistogram.Percentiles percentiles(int percentileTicksPerHalfDistance)
DoubleHistogrampercentiles in class DoubleHistogrampercentileTicksPerHalfDistance - The number of iteration steps per half-distance to 100%.Iterable<DoubleHistogramIterationValue>
through the histogram using a
DoublePercentileIteratorpublic DoubleHistogram.LinearBucketValues linearBucketValues(double valueUnitsPerBucket)
DoubleHistogramlinearBucketValues in class DoubleHistogramvalueUnitsPerBucket - The size (in value units) of the linear buckets to useIterable<DoubleHistogramIterationValue>
through the histogram using a
DoubleLinearIteratorpublic DoubleHistogram.LogarithmicBucketValues logarithmicBucketValues(double valueUnitsInFirstBucket, double logBase)
DoubleHistogramlogarithmicBucketValues in class DoubleHistogramvalueUnitsInFirstBucket - The size (in value units) of the first bucket in the iterationlogBase - The multiplier by which bucket sizes will grow in each iteration stepIterable<DoubleHistogramIterationValue>
through the histogram using
a DoubleLogarithmicIteratorpublic DoubleHistogram.RecordedValues recordedValues()
DoubleHistogramrecordedValues in class DoubleHistogramIterable<DoubleHistogramIterationValue>
through the histogram using
a DoubleRecordedValuesIteratorpublic DoubleHistogram.AllValues allValues()
DoubleHistogramallValues in class DoubleHistogramIterable<DoubleHistogramIterationValue>
through the histogram using a DoubleAllValuesIteratorpublic void outputPercentileDistribution(PrintStream printStream, Double outputValueUnitScalingRatio)
DoubleHistogramoutputPercentileDistribution in class DoubleHistogramprintStream - Stream into which the distribution will be output
outputValueUnitScalingRatio - The scaling factor by which to divide histogram recorded values units in
outputpublic void outputPercentileDistribution(PrintStream printStream, int percentileTicksPerHalfDistance, Double outputValueUnitScalingRatio)
DoubleHistogramoutputPercentileDistribution in class DoubleHistogramprintStream - Stream into which the distribution will be output
percentileTicksPerHalfDistance - The number of reporting points per exponentially decreasing half-distance
outputValueUnitScalingRatio - The scaling factor by which to divide histogram recorded values units in
outputpublic void outputPercentileDistribution(PrintStream printStream, int percentileTicksPerHalfDistance, Double outputValueUnitScalingRatio, boolean useCsvFormat)
DoubleHistogramoutputPercentileDistribution in class DoubleHistogramprintStream - Stream into which the distribution will be output
percentileTicksPerHalfDistance - The number of reporting points per exponentially decreasing half-distance
outputValueUnitScalingRatio - The scaling factor by which to divide histogram recorded values units in
outputuseCsvFormat - Output in CSV format if true. Otherwise use plain text form.public int getNeededByteBufferCapacity()
DoubleHistogramgetNeededByteBufferCapacity in class DoubleHistogrampublic int encodeIntoByteBuffer(ByteBuffer buffer)
DoubleHistogramencodeIntoByteBuffer in class DoubleHistogrambuffer - The buffer to encode intopublic int encodeIntoCompressedByteBuffer(ByteBuffer targetBuffer, int compressionLevel)
DoubleHistogramencodeIntoCompressedByteBuffer in class DoubleHistogramtargetBuffer - The buffer to encode intocompressionLevel - Compression level (for java.util.zip.Deflater).public int encodeIntoCompressedByteBuffer(ByteBuffer targetBuffer)
DoubleHistogramencodeIntoCompressedByteBuffer in class DoubleHistogramtargetBuffer - The buffer to encode intoCopyright © 2019. All rights reserved.