Interface IValueRecorder
An interface for collecting metric data and associated with a IMeter.
Namespace: Couchbase.Core.Diagnostics.Metrics
Assembly: Couchbase.NetClient.dll
Syntax
public interface IValueRecorder
Methods
| Edit this page View SourceRecordValue(uint, KeyValuePair<string, string>?)
Collects metric data and forwards it to its IMeter parent.
Declaration
void RecordValue(uint value, KeyValuePair<string, string>? tag = null)
Parameters
Type | Name | Description |
---|---|---|
uint | value | The value to measure. |
KeyValuePair<string, string>? | tag | An optional tag for the IValueRecorder. |