Repository: incubator-geode Updated Branches: refs/heads/develop 5601c731d -> bca948fcc
GEODE-2065 Document defragmentationsInProgress statistic This is a sub-task of GEODE-1590. Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/bca948fc Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/bca948fc Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/bca948fc Branch: refs/heads/develop Commit: bca948fcc9a3ed3a54f26dab9e7a41051684923e Parents: 5601c73 Author: Karen Miller <[email protected]> Authored: Wed Nov 2 16:45:57 2016 -0700 Committer: Karen Miller <[email protected]> Committed: Thu Nov 3 10:08:59 2016 -0700 ---------------------------------------------------------------------- geode-docs/reference/statistics/statistics_list.html.md.erb | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/bca948fc/geode-docs/reference/statistics/statistics_list.html.md.erb ---------------------------------------------------------------------- diff --git a/geode-docs/reference/statistics/statistics_list.html.md.erb b/geode-docs/reference/statistics/statistics_list.html.md.erb index 07e4281..02ed6a7 100644 --- a/geode-docs/reference/statistics/statistics_list.html.md.erb +++ b/geode-docs/reference/statistics/statistics_list.html.md.erb @@ -1013,6 +1013,7 @@ These statistics quantify the use of off-heap memory. The primary statistics are | Statistic | Description | |-----------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | `compactions` | The total number of times the off-heap memory manager has invoked the defragmentation algorithm on the off-heap memory space. | +| `defragmentationsInProgress` | The number of defragmentation operations currently in progress. | | `defragmentationTime` | The total number of nanoseconds spent running the defragmentation algorithm on off-heap memory space fragments. | | `fragmentation` | This statistic gives an indication of the level of external fragmentation in the off-heap memory space by providing a ratio of the current number of fragments of free space to the largest number of fragments that could be formed from that free space. It is expressed as a percentage; the higher this value, the more fragmented the free space currently is. This statistic is 0 if the memory manager has never run its defragmentation algorithm on the off-heap space, and it is recalculated after each defragmentation. | | `fragments` | The current number of fragments of free off-heap memory. This statistic is 0 if no defragmentation has ever been done, and it is updated after each defragmentation. |
