My application has a specific set of keys for which I monitor values(min, max, etc..). It looks very similar to the following:
public class Data implements Serializable{
int max, min; //etc..
}
public interface HelloMBean{
String [] getKeys();
Data getDataForKey(String);
Data [] getDatas();
}
However, I am not able to see the Keys or Datas attribute using jconsole(I always see a 'not available' value for those properties).
How should I structure my bean definition so that it would displayed as a tree of values ?
HelloMBean
|- attributes
|---- key1
|---- key2
I would like to display the values(eg: key1.max or key2.min) as a graph as well. Is this possible? If so, what would be the best way to achieve it?
Thanks!