C# Class Akka.Monitoring.StatsD.ActorStatsDMonitor

StatsD (https://github.com/etsy/statsd) implementation of a IActorMonitoringClient. Strong performance and low overhead. Only a single instance of this monitor can be active in a given process.
Inheritance: Akka.Monitoring.Impl.AbstractActorMonitoringClient
Afficher le fichier Open project: DimensionDataCBUSydney/akka-monitoring

Méthodes publiques

Méthode Description
ActorStatsDMonitor ( string host, int port = 8125, string prefix = "" ) : System
DisposeInternal ( ) : void
UpdateCounter ( string metricName, int delta, double sampleRate ) : void
UpdateGauge ( string metricName, int value, double sampleRate ) : void
UpdateTiming ( string metricName, long time, double sampleRate ) : void

Method Details

ActorStatsDMonitor() public méthode

public ActorStatsDMonitor ( string host, int port = 8125, string prefix = "" ) : System
host string
port int
prefix string
Résultat System

DisposeInternal() public méthode

public DisposeInternal ( ) : void
Résultat void

UpdateCounter() public méthode

public UpdateCounter ( string metricName, int delta, double sampleRate ) : void
metricName string
delta int
sampleRate double
Résultat void

UpdateGauge() public méthode

public UpdateGauge ( string metricName, int value, double sampleRate ) : void
metricName string
value int
sampleRate double
Résultat void

UpdateTiming() public méthode

public UpdateTiming ( string metricName, long time, double sampleRate ) : void
metricName string
time long
sampleRate double
Résultat void