C# 클래스 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.
상속: Akka.Monitoring.Impl.AbstractActorMonitoringClient
파일 보기 프로젝트 열기: DimensionDataCBUSydney/akka-monitoring

공개 메소드들

메소드 설명
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

메소드 상세

ActorStatsDMonitor() 공개 메소드

public ActorStatsDMonitor ( string host, int port = 8125, string prefix = "" ) : System
host string
port int
prefix string
리턴 System

DisposeInternal() 공개 메소드

public DisposeInternal ( ) : void
리턴 void

UpdateCounter() 공개 메소드

public UpdateCounter ( string metricName, int delta, double sampleRate ) : void
metricName string
delta int
sampleRate double
리턴 void

UpdateGauge() 공개 메소드

public UpdateGauge ( string metricName, int value, double sampleRate ) : void
metricName string
value int
sampleRate double
리턴 void

UpdateTiming() 공개 메소드

public UpdateTiming ( string metricName, long time, double sampleRate ) : void
metricName string
time long
sampleRate double
리턴 void