use of com.navercorp.pinpoint.common.trace.HistogramSlot in project pinpoint by naver.
the class Histogram method addCallCountByElapsedTime.
public void addCallCountByElapsedTime(int elapsedTime, boolean error) {
final HistogramSlot histogramSlot = this.schema.findHistogramSlot(elapsedTime, error);
short slotTime = histogramSlot.getSlotTime();
addCallCount(slotTime, 1);
}
Aggregations