Values.StatisticSetSourceRepresents a set of statistics that describes a specific metric.
type nonrec t = {sampleCount : DatapointValue.t;The number of samples used for the statistic set.
*)sum : DatapointValue.t;The sum of values for the sample set.
*)minimum : DatapointValue.t;The minimum value of the sample set.
*)maximum : DatapointValue.t;The maximum value of the sample set.
*)}val make :
sampleCount:DatapointValue.t ->
sum:DatapointValue.t ->
minimum:DatapointValue.t ->
maximum:DatapointValue.t ->
unit ->
t