Uses of Class
org.HdrHistogram.DoubleHistogram
-
Packages that use DoubleHistogram Package Description org.elasticsearch.search.aggregations.metrics org.HdrHistogram -
-
Uses of DoubleHistogram in org.elasticsearch.search.aggregations.metrics
Fields in org.elasticsearch.search.aggregations.metrics declared as DoubleHistogram Modifier and Type Field Description protected DoubleHistogramAbstractInternalHDRPercentiles. stateprotected DoubleHistogramAbstractInternalHDRPercentiles. stateMethods in org.elasticsearch.search.aggregations.metrics with parameters of type DoubleHistogram Modifier and Type Method Description protected org.elasticsearch.search.aggregations.metrics.AbstractInternalHDRPercentilesInternalHDRPercentileRanks. createReduced(String name, double[] keys, DoubleHistogram merged, boolean keyed, List<PipelineAggregator> pipelineAggregators, Map<String,Object> metaData)protected org.elasticsearch.search.aggregations.metrics.AbstractInternalHDRPercentilesInternalHDRPercentiles. createReduced(String name, double[] keys, DoubleHistogram merged, boolean keyed, List<PipelineAggregator> pipelineAggregators, Map<String,Object> metaData)Constructors in org.elasticsearch.search.aggregations.metrics with parameters of type DoubleHistogram Constructor Description Iter(double[] values, DoubleHistogram state)Iter(double[] percents, DoubleHistogram state) -
Uses of DoubleHistogram in org.HdrHistogram
Methods in org.HdrHistogram that return DoubleHistogram Modifier and Type Method Description DoubleHistogramDoubleHistogram. copy()Create a copy of this histogram, complete with data and everything.DoubleHistogramDoubleHistogram. copyCorrectedForCoordinatedOmission(double expectedIntervalBetweenValueSamples)Get a copy of this histogram, corrected for coordinated omission.static DoubleHistogramDoubleHistogram. decodeFromByteBuffer(ByteBuffer buffer, long minBarForHighestToLowestValueRatio)Construct a new DoubleHistogram by decoding it from a ByteBuffer.static DoubleHistogramDoubleHistogram. decodeFromByteBuffer(ByteBuffer buffer, Class<? extends AbstractHistogram> internalCountsHistogramClass, long minBarForHighestToLowestValueRatio)Construct a new DoubleHistogram by decoding it from a ByteBuffer, using a specified AbstractHistogram subclass for tracking internal counts (e.g.static DoubleHistogramDoubleHistogram. decodeFromCompressedByteBuffer(ByteBuffer buffer, long minBarForHighestToLowestValueRatio)Construct a new DoubleHistogram by decoding it from a compressed form in a ByteBuffer.static DoubleHistogramDoubleHistogram. decodeFromCompressedByteBuffer(ByteBuffer buffer, Class<? extends AbstractHistogram> internalCountsHistogramClass, long minBarForHighestToLowestValueRatio)Construct a new DoubleHistogram by decoding it from a compressed form in a ByteBuffer, using a specified AbstractHistogram subclass for tracking internal counts (e.g.static DoubleHistogramDoubleHistogram. fromString(String base64CompressedHistogramString)Construct a new DoubleHistogram by decoding it from a String containing a base64 encoded compressed histogram representation.Methods in org.HdrHistogram with parameters of type DoubleHistogram Modifier and Type Method Description voidDoubleHistogram. add(DoubleHistogram fromHistogram)Add the contents of another histogram to this one.voidDoubleHistogram. addWhileCorrectingForCoordinatedOmission(DoubleHistogram fromHistogram, double expectedIntervalBetweenValueSamples)Add the contents of another histogram to this one, while correcting the incoming data for coordinated omission.voidDoubleHistogram. copyInto(DoubleHistogram targetHistogram)Copy this histogram into the target histogram, overwriting it's contents.voidDoubleHistogram. copyIntoCorrectedForCoordinatedOmission(DoubleHistogram targetHistogram, double expectedIntervalBetweenValueSamples)Copy this histogram, corrected for coordinated omission, into the target histogram, overwriting it's contents.voidDoubleHistogram. subtract(DoubleHistogram otherHistogram)Subtract the contents of another histogram from this one.Constructors in org.HdrHistogram with parameters of type DoubleHistogram Constructor Description DoubleAllValuesIterator(DoubleHistogram histogram)DoubleHistogram(DoubleHistogram source)Construct aDoubleHistogramwith the same range settings as a given source, duplicating the source's start/end timestamps (but NOT it's contents)DoubleLinearIterator(DoubleHistogram histogram, double valueUnitsPerBucket)DoubleLogarithmicIterator(DoubleHistogram histogram, double valueUnitsInFirstBucket, double logBase)DoublePercentileIterator(DoubleHistogram histogram, int percentileTicksPerHalfDistance)DoubleRecordedValuesIterator(DoubleHistogram histogram)
-