Matthieu Napoli
Matthieu Napoli

Reputation: 49703

How to know if you have memory size problems or if that's just the JVM growing empty?

The question is the following :

I noticed on my server that the memory is 100% full.

Now does that mean that :

The basic question is : should I be worried ?

Upvotes: 0

Views: 62

Answers (2)

Andrew Thompson
Andrew Thompson

Reputation: 168845

..should I be worried ?

Start worrying when the app. gets OutOfMemoryErrors.

Upvotes: 0

Rom1
Rom1

Reputation: 3207

run jvisualvm, connect it to your application VM, perform a manual GC and see if there is any memory left?

Upvotes: 2

Related Questions