如何使用Netapp API和Java获得CPU和内存的性能?

时间:2014-02-14 11:33:52

标签: java netapp

我希望使用Netapp API和Java获得存储系统的性能。

我可以获取卷,聚合,磁盘信息。

现在我想获得系统的内存和CPU利用率。 我应该使用哪个类来获取与CPU和内存相关的信息?

我使用apirunner对象来调用API中的各种类 这是一个连接代码..

Protocol protocol = Protocol.INSECURE_HTTPS;
try {
    ApiRunner apirunner = new ApiRunner(ApiTarget.builder()
        .withHost(myip)
        .withUserName(user)
        .withPassword(pass)
        .withTargetType(TargetType.FILER)
        .useProtocol(protocol)
        .build()
    );

1 个答案:

答案 0 :(得分:0)

来自Google以及此问题的可能副本:

import java.lang.management.ManagementFactory;
import java.lang.management.OperatingSystemMXBean;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;

private static void printUsage() {
  OperatingSystemMXBean operatingSystemMXBean = ManagementFactory.getOperatingSystemMXBean();
  for (Method method : operatingSystemMXBean.getClass().getDeclaredMethods()) {
method.setAccessible(true);
if (method.getName().startsWith("get") 
    && Modifier.isPublic(method.getModifiers())) {
        Object value;
    try {
        value = method.invoke(operatingSystemMXBean);
    } catch (Exception e) {
        value = e;
    } // try
    System.out.println(method.getName() + " = " + value);
} // if
} // for
}

以下是重复的帖子:How to monitor the computer's cpu, memory, and disk usage in Java?

请记住,这使用了SIGAR API