@@ -100,22 +100,21 @@ private ResponseFieldsSnippet processInfo() {
100
100
.type (JsonFieldType .NUMBER ),
101
101
fieldWithPath ("memory" ).description ("Memory information." ),
102
102
fieldWithPath ("memory.heap" ).description ("Heap memory." ),
103
- fieldWithPath ("memory.heap.init" ).description ("The number of bytes initially requested by the JVM." ),
104
- fieldWithPath ("memory.heap.used" ).description ("The number of bytes currently being used." ),
105
- fieldWithPath ("memory.heap.committed" ).description ("The number of bytes committed for JVM use." ),
103
+ fieldWithPath ("memory.heap.init" ).description ("Number of bytes initially requested by the JVM." ),
104
+ fieldWithPath ("memory.heap.used" ).description ("Number of bytes currently being used." ),
105
+ fieldWithPath ("memory.heap.committed" ).description ("Number of bytes committed for JVM use." ),
106
106
fieldWithPath ("memory.heap.max" )
107
- .description ("The maximum number of bytes that can be used by the JVM (or -1)." ),
107
+ .description ("Maximum number of bytes that can be used by the JVM (or -1)." ),
108
108
fieldWithPath ("memory.nonHeap" ).description ("Non-heap memory." ),
109
- fieldWithPath ("memory.nonHeap.init" ).description ("The number of bytes initially requested by the JVM." ),
110
- fieldWithPath ("memory.nonHeap.used" ).description ("The number of bytes currently being used." ),
111
- fieldWithPath ("memory.nonHeap.committed" ).description ("The number of bytes committed for JVM use." ),
109
+ fieldWithPath ("memory.nonHeap.init" ).description ("Number of bytes initially requested by the JVM." ),
110
+ fieldWithPath ("memory.nonHeap.used" ).description ("Number of bytes currently being used." ),
111
+ fieldWithPath ("memory.nonHeap.committed" ).description ("Number of bytes committed for JVM use." ),
112
112
fieldWithPath ("memory.nonHeap.max" )
113
- .description ("The maximum number of bytes that can be used by the JVM (or -1)." ),
113
+ .description ("Maximum number of bytes that can be used by the JVM (or -1)." ),
114
114
fieldWithPath ("memory.garbageCollectors" ).description ("Details for garbage collectors." ),
115
115
fieldWithPath ("memory.garbageCollectors[].name" ).description ("Name of of the garbage collector." ),
116
116
fieldWithPath ("memory.garbageCollectors[].collectionCount" )
117
117
.description ("Total number of collections that have occurred." ));
118
-
119
118
}
120
119
121
120
private ResponseFieldsSnippet javaInfo () {
0 commit comments