Hi,
I have an MXBean which returns a TabularDataSupport instance as an attribute. How do I go about using jmx4perl to read the content of the TabularDataSupport object? The "read" operation gives me the following:
$VAR1 = {
'empty' => 'false',
'tabularType' => {
'array' => 'false',
'className' => 'javax.management.openmbean.TabularData',
'indexNames' => [
'key'
],
'typeName' => 'java.util.Map<java.lang.String, java.lang.Integer>',
'description' => 'java.util.Map<java.lang.String, java.lang.Integer>',
'rowType' => {
'array' => 'false',
'className' => 'javax.management.openmbean.CompositeDat
+a',
'typeName' => 'java.util.Map<java.lang.String, java.lan
+g.Integer>',
'description' => 'java.util.Map<java.lang.String, java.
+lang.Integer>'
}
}
};
Any guidance gratefully received!
Thanks!