Property | Type | Description | |
---|---|---|---|
eventTypeName | string | ||
floatTypeName | string | ||
incTypeName | string | ||
intTypeName | string | ||
stringTypeName | string |
Method | Description | |
---|---|---|
Entry ( string name, float data ) : void |
Add a metrics entry that is a float.
|
|
Entry ( string name, int data ) : void |
Add a metrics entry that is an integer.
|
|
Entry ( string name, string data ) : void |
Add a metrics entry string.
|
|
Event ( string name ) : void |
Sends an event metric to the emitter.
|
|
Flush ( ) : void |
Flushes all queued metrics.
|
|
Inc ( string name ) : void |
Sends an increment metric to the emitter.
|
|
Metrics ( IMetricsEmitter emitter, int batchSize = 1 ) : System | ||
RemoveProperty ( string name ) : void |
Finds the specified property and stops including it in subsequent messages.
|
|
SetProperty ( string name, string property ) : void |
Set a property for all subsequent messages.
|
Method | Description | |
---|---|---|
QueueMetric ( |
Adds a metric to the queue.
|
public Entry ( string name, float data ) : void | ||
name | string | |
data | float | |
return | void |
public Entry ( string name, int data ) : void | ||
name | string | |
data | int | |
return | void |
public Entry ( string name, string data ) : void | ||
name | string | |
data | string | |
return | void |
public Metrics ( IMetricsEmitter emitter, int batchSize = 1 ) : System | ||
emitter | IMetricsEmitter | |
batchSize | int | |
return | System |
public SetProperty ( string name, string property ) : void | ||
name | string | |
property | string | |
return | void |