當前位置: 首頁>>代碼示例>>Java>>正文


Java MBeanServerConnection.getAttributes方法代碼示例

本文整理匯總了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);
}
 
開發者ID:pinterest,項目名稱:doctorkafka,代碼行數:21,代碼來源:BrokerStatsRetriever.java

示例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]));
}
 
開發者ID:chickling,項目名稱:kmanager,代碼行數:14,代碼來源:KafkaMetrics.java


注:本文中的javax.management.MBeanServerConnection.getAttributes方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。