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/3b55eb69 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/3b55eb69 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/3b55eb69 Branch: refs/heads/feature/GEODE-2017 Commit: 3b55eb6956ac49149f5e153b54b956a371cb24c8 Parents: dd5af95 Author: Karen Miller <[email protected]> Authored: Wed Nov 2 16:45:57 2016 -0700 Committer: Udo Kohlmeyer <[email protected]> Committed: Tue Nov 8 05:39:37 2016 +1100 ---------------------------------------------------------------------- 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/3b55eb69/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. |
