Skip to main content

How to use getSystemCpuLoad() in JMX



Hi i cant able to use getProcessCpuTime() or getProcessCpuLoad() or getSystemCpuLoad() in my java program. I used like below.







ManagementFactory. getOperatingSystemMXBean().getProcessCpuTime();







also like this







( (OperatingSystemMXBean) getOperatingSystemMXBean() ).getProcessCpuTime()







But its showing error like method getProcessCpuTime() is not found. I included the following header files. Is that enough or i need to use any more.?







import java.lang.management.ManagementFactory;

import java.lang.management.OperatingSystemMXBean;







Can anyone please suggest me how to use these methods. am using jdk1.6. And my code is below







import java.lang.management.ManagementFactory;

import java.lang.management.OperatingSystemMXBean;

import java.lang.reflect.Method;

import java.lang.reflect.Modifier;



public class printUsage {



public static void main(String[] args) {

OperatingSystemMXBean operatingSystemMXBean = ManagementFactory.getOperatingSystemMXBean();



System.out.println("getCpuProcessTime()" + " = " + operatingSystemMXBean.getProcessCpuTime());

System.out.println("getCpuProcessTime()" + " = " + operatingSystemMXBean.getSystemCpuLoad());

System.out.println("getCpuProcessTime()" + " = " + operatingSystemMXBean.getProcessCpuLoad());

}



}




Comments

  1. import following one

    import com.sun.management.OperatingSystemMXBean;


    Not

    import java.lang.management.OperatingSystemMXBean;


    Use following code.

    OperatingSystemMXBean operatingSystemMXBean = (com.sun.management.OperatingSystemMXBean)ManagementFactory.getOperatingSystemMXBean();


    I am getting valid results with this code.

    ReplyDelete
  2. Take a look on the following javadoc: http://docs.oracle.com/javase/6/docs/api/

    See what methods are defined for OperatingSystemMXBean. Your problem is that you are looking for methods defined in com.sun.management.OperatingSystemMXBean into java.lang.management.OperatingSystemMXBean.

    Package com.sun is mostly for internal use of java creators, not for application developers. You should use classes from package java.lang.management and refer to appropriate API doc.

    ReplyDelete

Post a Comment

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...

Is it possible to have IF statement in an Echo statement in PHP

Thanks in advance. I did look at the other questions/answers that were similar and didn't find exactly what I was looking for. I'm trying to do this, am I on the right path? echo " <div id='tabs-".$match."'> <textarea id='".$match."' name='".$match."'>". if ($COLUMN_NAME === $match) { echo $FIELD_WITH_COLUMN_NAME; } else { } ."</textarea> <script type='text/javascript'> CKEDITOR.replace( '".$match."' ); </script> </div>"; I am getting the following error message in the browser: Parse error: syntax error, unexpected T_IF Please let me know if this is the right way to go about nesting an IF statement inside an echo. Thank you.