org.HdrHistogram.Histogram.linearBucketValues()方法的使用及代码示例

x33g5p2x  于2022-01-20 转载在 其他  
字(2.4k)|赞(0)|评价(0)|浏览(121)

本文整理了Java中org.HdrHistogram.Histogram.linearBucketValues()方法的一些代码示例,展示了Histogram.linearBucketValues()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Histogram.linearBucketValues()方法的具体详情如下:
包路径:org.HdrHistogram.Histogram
类名称:Histogram
方法名:linearBucketValues

Histogram.linearBucketValues介绍

暂无

代码示例

代码示例来源:origin: HdrHistogram/HdrHistogram

@Override
public synchronized LinearBucketValues linearBucketValues(final long valueUnitsPerBucket) {
  return super.linearBucketValues(valueUnitsPerBucket);
}

代码示例来源:origin: org.hdrhistogram/HdrHistogram

@Override
public synchronized LinearBucketValues linearBucketValues(final long valueUnitsPerBucket) {
  return super.linearBucketValues(valueUnitsPerBucket);
}

代码示例来源:origin: com.hazelcast.simulator/visualizer

public static SimulatorHistogramDataSet getHistogramDataSet(Histogram histogram, int accuracy, double scalingPercentile) {
    if (histogram == null) {
      return null;
    }

    SimulatorHistogramDataSet histogramDataSet = new SimulatorHistogramDataSet("key");
    histogramDataSet.setAdjustForBinSize(false);

    for (HistogramIterationValue value : histogram.linearBucketValues(accuracy)) {
      int values = (int) value.getCountAddedInThisIterationStep();
      if (values > 0) {
        long lowerBound = value.getValueIteratedFrom();
        long upperBound = value.getValueIteratedTo();
        SimpleHistogramBin bin = new SimpleHistogramBin(lowerBound, upperBound, true, false);
        bin.setItemCount(values);
        histogramDataSet.addBin(bin);
      }
    }

    histogramDataSet.setAutoScaleValue(histogram.getValueAtPercentile(scalingPercentile * PERCENTILE_FACTOR));
    return histogramDataSet;
  }
}

代码示例来源:origin: com.hazelcast.simulator/visualiser

private static SimpleHistogramDataSetContainer calcSingleProbeDataSet(HdrLatencyDistributionResult probeData, long accuracy,
                                   double scalingPercentile) {
  SimpleHistogramDataSetContainer histogramDataSet = new SimpleHistogramDataSetContainer("key");
  histogramDataSet.setAdjustForBinSize(false);
  Histogram histogram = probeData.getHistogram();
  for (HistogramIterationValue value : histogram.linearBucketValues(accuracy)) {
    int values = (int) value.getCountAddedInThisIterationStep();
    if (values > 0) {
      long lowerBound = value.getValueIteratedFrom();
      long upperBound = value.getValueIteratedTo();
      SimpleHistogramBin bin = new SimpleHistogramBin(lowerBound, upperBound, true, false);
      bin.setItemCount(values);
      histogramDataSet.addBin(bin);
    }
  }
  histogramDataSet.setAutoScaleValue(histogram.getValueAtPercentile(scalingPercentile * 100));
  return histogramDataSet;
}

相关文章