double newgc = computeDuration(m_newGcs);
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));
}