Searched refs:atomTimestamp (Results 1 – 3 of 3) sorted by relevance
136 List<Pair<Atom, Long>> atomTimestamp = new ArrayList<>(); in backFillGaugeBucketAtoms() local139 atomTimestamp.add(Pair.create(atomInfo.getAtom(), timestampNs)); in backFillGaugeBucketAtoms()142 atomTimestamp.sort(Comparator.comparing(o -> o.second)); in backFillGaugeBucketAtoms()143 return atomTimestamp.stream().map(p -> p.first).collect(Collectors.toList()); in backFillGaugeBucketAtoms()
196 const int64_t atomTimestamp = logEvent->GetElapsedTimestampNs(); in processStatsEventBuffer() local215 StatsdStats::getInstance().noteEventQueueSize(queueSize, atomTimestamp); in processStatsEventBuffer()219 return {atomId, atomTimestamp}; in processStatsEventBuffer()
416 for (Pair<Atom, Long> atomTimestamp : atomTimestampData) { in backfillGaugeBucket()417 bucketInfoBuilder.addAtom(atomTimestamp.first); in backfillGaugeBucket()418 bucketInfoBuilder.addElapsedTimestampNanos(atomTimestamp.second); in backfillGaugeBucket()