Skip to content

Commit

Permalink
Plumb BoundedTrie to StreamingStepMetricsContainer
Browse files Browse the repository at this point in the history
  • Loading branch information
rohitsinha54 committed Dec 22, 2024
1 parent 4b0b070 commit 3c5d613
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -519,6 +519,11 @@ public Iterable<CounterUpdate> extractMetricUpdates(boolean isFinalUpdate) {
.transform(
update ->
MetricsToCounterUpdateConverter.fromStringSet(
update.getKey(), update.getUpdate())),
FluentIterable.from(updates.boundedTrieUpdates())
.transform(
update ->
MetricsToCounterUpdateConverter.fromBoundedTrie(
update.getKey(), update.getUpdate())));
});
}
Expand Down

0 comments on commit 3c5d613

Please sign in to comment.