Reputation: 106
One strange thing I observed. heap.used increases with every consequent /metrics api call. I am the only client using this application. Not sure why it is occurring. Can someone please explain?
"heap.used": 62495
"heap.used": 62642
"heap.used": 62827
Upvotes: 0
Views: 226
Reputation: 2653
All sorts of intermediate objects are used in order to create your http response. These objects get allocated on the heap. You should not be worried about this as garbage collection will clean them up.
Upvotes: 3