Module
System.Metrics.Meter
- Package
- purescript-metrics
- Repository
- abhin4v/purescript-metrics
#Summary Source
newtype Summary
Summary of the measurements in the meter. Contains:
- count: count
- m1: one minute rate
- m5: five minute rate
- m15: fifteen minute rate
- mean: mean rate
Constructors
Instances
#fifteenMinuteRate Source
fifteenMinuteRate :: forall eff. Meter -> Eff (ref :: REF | eff) Number
Returns the fifteen minute moving-average rate of the events recorded by the meter.
#fiveMinuteRate Source
fiveMinuteRate :: forall eff. Meter -> Eff (ref :: REF | eff) Number
Returns the five minute moving-average rate of the events recorded by the meter.
#oneMinuteRate Source
oneMinuteRate :: forall eff. Meter -> Eff (ref :: REF | eff) Number
Returns the one minute moving-average rate of the events recorded by the meter.