Aqueduct.Monitoring.Sensors.ExceptionSensor.RecordException C# (CSharp) Method

RecordException() private method

private RecordException ( string name ) : void
name string
return void
        private void RecordException(string name)
        {
            AddReading(new Int32ReadingData(1) { Name = "TotalExceptions" });
            AddReading(new Int32ReadingData(1) { Name = name });
        }
    }