Accumulate the specified count, total, min, and max into this collector.

Synopsis

Declared in <balm_integercollector.h>

void
accumulateCountTotalMinMax(
    int count,
    int total,
    int min,
    int max);

Description

Increment the event count by the specified count, add the specified total to the accumulated total, and if the specified min is less than the minimum value, set min to be the minimum value, and if the specified max is greater than the maximum value, set max to be the maximum value.

Parameters

Name

Description

count

number of events to add to the event count

total

amount to add to the accumulated total

min

candidate minimum measurement value

max

candidate maximum measurement value

Created with MrDocs