Details
Description
See this from the template, and note the label and actual values for the last two columns.
<table class="table table-striped"> <tr> <th>Bucket Offset</th> <th>Allocation Size</th> <th>Free Count</th> <th>Used Count</th> </tr> <%for Bucket bucket: buckets %> <tr> <td><% bucket.getBaseOffset() %></td> <td><% bucket.getItemAllocationSize() %></td> <td><% bucket.getFreeBytes() %></td> <td><% bucket.getUsedBytes() %></td> </tr>
They are labeled "counts" but are "bytes", duh.