long nomarizeDuration = computeLongDuration(duration, domain, m_defalutLongCallDuration, m_longCallThresholds);
if (nomarizeDuration > 0) {
String type = ProblemType.LONG_CALL.getName();
String status = transaction.getName();
Entry entry = findOrCreateEntry(machine, type, status);
updateEntry(tree, entry, (int) nomarizeDuration);
}
}