Searched refs:atomTimestamp (Results 1 – 1 of 1) sorted by relevance
395 List<Pair<Atom, Long>> atomTimestamp = new ArrayList<>(); in backFillGaugeBucketAtoms() local398 atomTimestamp.add(Pair.create(atomInfo.getAtom(), timestampNs)); in backFillGaugeBucketAtoms()401 atomTimestamp.sort(Comparator.comparing(o -> o.second)); in backFillGaugeBucketAtoms()402 return atomTimestamp.stream().map(p -> p.first).collect(Collectors.toList()); in backFillGaugeBucketAtoms()435 for (Pair<Atom, Long> atomTimestamp : atomTimestampData) { in backfillGaugeBucket()436 bucketInfoBuilder.addAtom(atomTimestamp.first); in backfillGaugeBucket()437 bucketInfoBuilder.addElapsedTimestampNanos(atomTimestamp.second); in backfillGaugeBucket()