Package io.deephaven.base.stats


package io.deephaven.base.stats
  • Class
    Description
    A statistic that represents the composite or rolled-up value of a set of child statistics, as best as possible.
    A statistic where each value represents a additive quantity, and thus the sum of the values does have meaning.
     
    This class accumulates samples in a 64 bin histogram with the property that for a sample value of n, the bin index will be log2(n)+1 (offset by 1) since there are no unsinged numbers, and placing negative and 0 values in bin 0 preserves order, with maximum appearing in bin index 63 (max pos numbers)
     
     
     
    Item<V extends Value>
     
     
    A statistic where each value represents a snapshot of the state of the system, and thus the sum of the values does not have any meaning.
     
    A non-static interface to the Stats component.