Module
System.Metrics.Histogram
- Package
- purescript-metrics
- Repository
- abhin4v/purescript-metrics
#Summary Source
newtype Summary
Summary of the distribution of the measurements in the histogram. Contains:
- min: minimum
- max: maximum
- sum: sum
- variance: variance
- mean: mean
- stdDev: standard deviation
- count: count
- median: median
- p75: 75th percentile
- p95: 95th percentile
- p99: 99th percentile
- p999: 99.9th percentile
Constructors
Summary { count :: Int, max :: Maybe Number, mean :: Maybe Number, median :: Maybe Number, min :: Maybe Number, p75 :: Maybe Number, p95 :: Maybe Number, p99 :: Maybe Number, p999 :: Maybe Number, stdDev :: Maybe Number, sum :: Maybe Number, variance :: Maybe Number }
Instances
#newWithUniformSampling Source
newWithUniformSampling :: forall eff. Int -> Eff (ref :: REF | eff) Histogram
Creates a new histogram with uniform sampling with the given size.