Package org.gridkit.lab.jvm.perfdata

Examples of org.gridkit.lab.jvm.perfdata.JStatData


    TickCounter gc0;
    TickCounter gc1;
   
    public PerfCounterGcCpuUsageMonitor(long pid) {
        JStatData jd = JStatData.connect(pid);
        gc0 = (TickCounter) jd.getAllCounters().get("sun.gc.collector.0.time");
        gc1 = (TickCounter) jd.getAllCounters().get("sun.gc.collector.1.time");
    }
View Full Code Here

TOP

Related Classes of org.gridkit.lab.jvm.perfdata.JStatData

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.