I'd like to perform a single call to Jolokia and get all the values of the attributes for the JVM Pools.
This works fine for a single attribute:
http://myserver/jolokia/read/java.lang:type=MemoryPool,name=Code%20Cache/Name/
But if i'd like to get the "Usage" attribute with it, I should be able to provide a comma separated list (according to the chapter 6.2.1.1 of Jolokia documentation:
http://myserver/jolokia/read/java.lang:type=MemoryPool,name=Code%20Cache/Name,Usage/
But what I get is: "javax.management.AttributeNotFoundException: No such attribute: Name,Usage
I've tried to escape it in different ways, without success....