Home | History | Annotate | Download | only in domain_reliability

Lines Matching full:collector

103   VLOG(1) << "Starting upload to collector " << collector_index_ << ".";
116 VLOG(1) << "Upload to collector " << collector_index_
119 CollectorState* collector = &collectors_[collector_index_];
123 collector->failures = 0;
130 ++collector->failures;
134 base::TimeDelta retry_interval = GetUploadRetryInterval(collector->failures);
135 collector->next_upload = now + retry_interval;
141 VLOG(1) << "Next upload to collector at least "
231 CollectorState* collector = &collectors_[i];
232 // If a collector is usable, use the first one in the list.
233 if (collector->failures == 0 || collector->next_upload <= now) {
239 collector->next_upload < min_time) {
240 min_time = collector->next_upload;