本文整理汇总了Java中javax.management.MBeanServerConnection.getAttributes方法的典型用法代码示例。如果您正苦于以下问题:Java MBeanServerConnection.getAttributes方法的具体用法?Java MBeanServerConnection.getAttributes怎么用?Java MBeanServerConnection.getAttributes使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类javax.management.MBeanServerConnection
的用法示例。
在下文中一共展示了MBeanServerConnection.getAttributes方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: getProcessCpuLoad
import javax.management.MBeanServerConnection; //导入方法依赖的package包/类
public static double getProcessCpuLoad(MBeanServerConnection mbs)
throws MalformedObjectNameException, NullPointerException, InstanceNotFoundException,
ReflectionException, IOException {
ObjectName name = ObjectName.getInstance("java.lang:type=OperatingSystem");
AttributeList list = mbs.getAttributes(name, new String[]{"ProcessCpuLoad"});
if (list.isEmpty()) {
return 0.0;
}
Attribute att = (Attribute) list.get(0);
Double value = (Double) att.getValue();
// usually takes a couple of seconds before we get real values
if (value == -1.0) {
return 0.0;
}
// returns a percentage value with 1 decimal point precision
return ((int) (value * 1000) / 10.0);
}
示例2: getMeterMetric
import javax.management.MBeanServerConnection; //导入方法依赖的package包/类
private MeterMetric getMeterMetric(MBeanServerConnection mbsc, ObjectName objectName) {
String[] attributes = {"Count", "MeanRate", "OneMinuteRate", "FiveMinuteRate", "FifteenMinuteRate"};
AttributeList attributeList = null;
try {
attributeList = mbsc.getAttributes(objectName, attributes);
} catch (Exception e) {
LOG.warn("getMeterMetric failed! " + e.getMessage());
return new MeterMetric(0L, 0D, 0D, 0D, 0D);
}
return new MeterMetric(getLongValue(attributeList, attributes[0]), getDoubleValue(attributeList, attributes[1]),
getDoubleValue(attributeList, attributes[2]), getDoubleValue(attributeList, attributes[3]),
getDoubleValue(attributeList, attributes[4]));
}