Skip to content

Commit

Permalink
Add getCurrentLeafSplitsSize metric
Browse files Browse the repository at this point in the history
  • Loading branch information
sopel39 committed Sep 6, 2023
1 parent 675defb commit 72d8f24
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -669,6 +669,12 @@ public DistributionStat getLeafSplitsSize()
return leafSplitsSize;
}

@Managed
public synchronized int getCurrentLeafSplitsSize()
{
return allSplits.size() - intermediateSplits.size();
}

@Managed
public int getRunningSplits()
{
Expand Down

0 comments on commit 72d8f24

Please sign in to comment.