Service service = call.findOrCreateService(key);
updateService(service, logview, max);
}
}
} else if ("SQL".equals(type)) {
HeavySql sql = m_report.getHeavySql();
String key = m_currentDomain + ":" + m_currentName;
if (m_currentType.equals("URL")) {
if (max > 20) {
Url url = sql.findOrCreateUrl(key);
updateUrl(url, logview, max);
}
} else {
if (max > 20) {
Service service = sql.findOrCreateService(key);
updateService(service, logview, max);
}
}
} else if ("Cache".equals(type)) {
HeavyCache cache = m_report.getHeavyCache();