C# Class ZocMonLib.Recorder

Inheritance: IRecorder
Show file Open project: Zocdoc/ZocMon Class Usage Examples

Public Methods

Method Description
Record ( string configName, System.DateTime time, double value, MonitorReductionType monitorReductionType ) : void

Record the given value to the given monitor configuration, for the given time.

Record ( string configName, double value, MonitorReductionType monitorReductionType ) : void

Record the given value to the given monitor configuration.

RecordEvent ( string configName ) : void

Record the ocurrance of a given monitor configuration.

RecordEvent ( string configName, MonitorReductionType monitorReductionType ) : void

Record the ocurrance of a given monitor configuration.

Recorder ( IDataCache cache, ISettings settings ) : System

Method Details

Record() public method

Record the given value to the given monitor configuration, for the given time.
public Record ( string configName, System.DateTime time, double value, MonitorReductionType monitorReductionType ) : void
configName string Name of the config
time System.DateTime Time of the recrod
value double Value that is being recorded
monitorReductionType MonitorReductionType Reduction type that is being used
return void

Record() public method

Record the given value to the given monitor configuration.
public Record ( string configName, double value, MonitorReductionType monitorReductionType ) : void
configName string Name of the config
value double Value that is being recorded
monitorReductionType MonitorReductionType Reduction type that is being used
return void

RecordEvent() public method

Record the ocurrance of a given monitor configuration.
public RecordEvent ( string configName ) : void
configName string Name of the config
return void

RecordEvent() public method

Record the ocurrance of a given monitor configuration.
public RecordEvent ( string configName, MonitorReductionType monitorReductionType ) : void
configName string Name of the config
monitorReductionType MonitorReductionType Reduction type that is being used
return void

Recorder() public method

public Recorder ( IDataCache cache, ISettings settings ) : System
cache IDataCache
settings ISettings
return System