vote up 2 vote down star
2

I am trying to find out programatically the max permgen and max heap size with which a the JVM for my program has been invoked, not what is currently available to them.

Is there a way to do that?

I am familiar with the methods in Java Runtime object, but its not clear what they really deliver.

Alternatively, is there a way to ask Eclipse how much was allocated for these two?

flag

71% accept rate

3 Answers

vote up 2 vote down check

Try this ones:

MemoryMXBean mem = ManagementFactory.getMemoryMXBean();
mem.getHeapMemoryUsage().getUsed();
mem.getNonHeapMemoryUsage().getUsed();

But they only offer snapshot data, not a cummulated value.

link|flag
vote up 0 vote down

As for eclipse, try looking for a profiling tool. I think NetBeans has one by default.

link|flag
I'm trying to do this from a program so I can give users a warning if they use less than my plugin will require. – Uri Jan 11 at 19:34
I misunderstood your question. I think this is a better answer. – pek Jan 11 at 19:57
vote up 0 vote down

Try something like this for max perm gen:

  public static long getPermGenMax() {
    for (MemoryPoolMXBean mx : ManagementFactory.getMemoryPoolMXBeans()) {
      if ("Perm Gen".equals(mx.getName())) {
        return mx.getUsage().getMax();
      }
    }
    throw new RuntimeException("Perm gen not found");
  }

For max heap, you can get this from Runtime, though you can also use the appropriate MemoryPoolMXBean.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.