Package com.dianping.cat.home.utilization.entity

Examples of com.dianping.cat.home.utilization.entity.MachineState


    double fullgc = computeDuration(m_fullGcs);
    double load = computeAvg(m_loads);

    Domain current = m_report.findOrCreateDomain(m_domain);

    MachineState newGcState = current.findOrCreateMachineState("newGc");
    MachineState fullGcState = current.findOrCreateMachineState("fullGc");
    MachineState loadState = current.findOrCreateMachineState("load");

    updateMachineState(newGcState, newgc, newgc);
    updateMachineState(fullGcState, fullgc, fullgc);
    updateMachineState(loadState, load, findMax(m_loads));
  }
View Full Code Here

TOP

Related Classes of com.dianping.cat.home.utilization.entity.MachineState

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.