log.warn("Range of timestamp of metric "+ metricLocator + "is out of applicable ranges");
outOfRangeToleration++;
// If we are seeing a lot of out of band metrics, something is wrong. May be metrics are back logged a lot. stop immediately. try to increase the range buffer?
if (outOfRangeToleration > OUT_OF_RANGE_TOLERATION_THRESHOLD) {
throw new OutOFBandException("Starting to see a lot of metrics in non-applicable ranges");
}
line = reader.readLine();
continue;
}