//this map is used to store the number of specific errors that happened in one interval only
private final Map<ErrorType, Integer> _errorTypeCounts;
private Tracker()
{
_callTimeTracking = new LongTracking();
_errorTypeCounts = new HashMap<ErrorType, Integer>();
reset();
}