int getMainTreeMaxDepth() {
return mainTreeMaxDepth;
}
private StatGroup getStats() {
StatGroup group = new StatGroup(GROUP_NAME, GROUP_DESC);
new LongStat(group, BTREE_IN_COUNT, getINNodeIdsSeen().size());
new LongStat(group, BTREE_BIN_COUNT, getBINNodeIdsSeen().size());
new LongStat(group, BTREE_LN_COUNT, getLNCount());
new LongStat(group, BTREE_DELETED_LN_COUNT, getDeletedLNCount());
new IntStat(group, BTREE_MAINTREE_MAXDEPTH, getMainTreeMaxDepth());