use of fish.payara.notification.requesttracing.RequestTraceSpanLog in project Payara by payara.
the class SafeProperties method onEjbMethodEnd.
final void onEjbMethodEnd(String method_sig, Throwable th) {
ejbProbeNotifier.ejbMethodEndEvent(getContainerId(), callFlowInfo.getApplicationName(), callFlowInfo.getModuleName(), callFlowInfo.getComponentName(), th, method_sig);
// callFlowAgent.ejbMethodEnd(callFlowInfo);
if (requestTracing.isRequestTracingEnabled()) {
RequestTraceSpanLog spanLog = constructEjbMethodSpanLog(callFlowInfo, false);
requestTracing.addSpanLog(spanLog);
}
}
Aggregations