| Portability | non-portable (GHC extensions) |
|---|---|
| Stability | experimental |
| Maintainer | Brendan Hay <brendan@soundcloud.com> |
| Safe Haskell | Safe-Infered |
Network.Metrics.Statsd
Contents
Description
- open :: String -> String -> IO Statsd
- type Group = ByteString
- type Bucket = ByteString
- type Value = ByteString
- data MetricType
- data Metric = Metric MetricType Group Bucket Value
- class MetricSink a where
Socket Handle operations
open :: String -> String -> IO StatsdSource
Create a new disconnected socket handle for UDP communication
Network.Metrics.Internal re-exported types
type Group = ByteStringSource
Metric group
type Bucket = ByteStringSource
Metric bucket
type Value = ByteStringSource
Metric value
Concrete metric data type
Constructors
| Metric MetricType Group Bucket Value |
class MetricSink a whereSource
Describes a sink resource which is held open for metric emission
Instances
| MetricSink Graphite | |
| MetricSink Statsd | |
| MetricSink Ganglia |