ekg/System/Remote/Gauge.hs

22 lines
650 B
Haskell
Raw Normal View History

{-# OPTIONS_HADDOCK not-home #-}
2011-12-30 18:26:11 +00:00
-- | This module defines a type for mutable, integer-valued gauges.
-- Gauges are variable values and can be used to track e.g. the
-- current number of concurrent connections. All operations on gauges
-- are thread-safe.
--
-- N.B. This module exists to maintain backwards compatibility with
-- older versions of this library. New code should use the
-- @System.Metrics.Gauge@ module from the ekg-core package instead.
2011-12-30 18:26:11 +00:00
module System.Remote.Gauge
(
Gauge.Gauge
, Gauge.inc
, Gauge.dec
, Gauge.add
, Gauge.subtract
, Gauge.set
2011-12-30 18:26:11 +00:00
) where
import qualified System.Metrics.Gauge as Gauge