C# 클래스 StatsdClient.StatsdUDPClient

상속: StatsdClient.Address, IStatsdClient
파일 보기 프로젝트 열기: Pereingo/statsd-csharp-client 1 사용 예제들

공개 메소드들

메소드 설명
Dispose ( ) : void
Send ( string command ) : void
StatsdUDPClient ( string name, int port = 8125, int maxUdpPacketSizeBytes = MetricsConfig.DefaultStatsdMaxUDPPacketSize ) : System

Creates a new StatsdUDP class for lower level access to statsd.

보호된 메소드들

메소드 설명
Dispose ( bool disposing ) : void

비공개 메소드들

메소드 설명
Send ( byte encodedCommand ) : void

메소드 상세

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

Dispose() 보호된 메소드

protected Dispose ( bool disposing ) : void
disposing bool
리턴 void

Send() 공개 메소드

public Send ( string command ) : void
command string
리턴 void

StatsdUDPClient() 공개 메소드

Creates a new StatsdUDP class for lower level access to statsd.
public StatsdUDPClient ( string name, int port = 8125, int maxUdpPacketSizeBytes = MetricsConfig.DefaultStatsdMaxUDPPacketSize ) : System
name string Hostname or IP (v4) address of the statsd server.
port int Port of the statsd server. Default is 8125.
maxUdpPacketSizeBytes int Max packet size, in bytes. This is useful to tweak if your MTU size is different than normal. Set to 0 for no limit. Default is MetricsConfig.DefaultStatsdMaxUDPPacketSize.
리턴 System