Class Gauge
Represents a Gauge metric, used to track N values over time. Examples:
- avg size of message received
- avg dollar amount of trade
- etc..
Namespace:Phobos.Monitoring.Metrics
Assembly:Phobos.Monitoring.dll
Syntax
public sealed class Gauge : Metric, IMetric
Methods
Record(Int64)
Records a new value for the gauge.
Declaration
public void Record(long gaugeValue)
Parameters
Type | Name | Description |
---|---|---|
System.Int64 | gaugeValue | The value to record. |