String type = ratio.getType();
long max = ratio.getMax();
String logview = ratio.getUrl();
if ("Call".equals(type)) {
HeavyCall call = m_report.getHeavyCall();
String key = m_currentDomain + ":" + m_currentName;
if (m_currentType.equals("URL")) {
if (max > 10) {
Url url = call.findOrCreateUrl(key);
updateUrl(url, logview, max);
}
} else {
if (max > 10) {
Service service = call.findOrCreateService(key);
updateService(service, logview, max);
}
}
} else if ("SQL".equals(type)) {
HeavySql sql = m_report.getHeavySql();