apm-agent-plugins/apm-jsf-plugin/src/main/java/co/elastic/apm/agent/jsf/JakartaeeJsfLifecycleExecuteInstrumentation.java [45:56]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public static Object createExecuteSpan(@Advice.Argument(0) @Nonnull FacesContext facesContext) {
            boolean withExternalContext = false;
            String requestServletPath = null;
            String requestPathInfo = null;
            ExternalContext externalContext = facesContext.getExternalContext();
            if (externalContext != null) {
                withExternalContext = true;
                requestServletPath = externalContext.getRequestServletPath();
                requestPathInfo = externalContext.getRequestPathInfo();
            }
            return createAndActivateSpan(withExternalContext, requestServletPath, requestPathInfo);
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



apm-agent-plugins/apm-jsf-plugin/src/main/java/co/elastic/apm/agent/jsf/JsfLifecycleExecuteInstrumentation.java [45:56]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        public static Object createExecuteSpan(@Advice.Argument(0) @Nonnull FacesContext facesContext) {
            boolean withExternalContext = false;
            String requestServletPath = null;
            String requestPathInfo = null;
            ExternalContext externalContext = facesContext.getExternalContext();
            if (externalContext != null) {
                withExternalContext = true;
                requestServletPath = externalContext.getRequestServletPath();
                requestPathInfo = externalContext.getRequestPathInfo();
            }
            return createAndActivateSpan(withExternalContext, requestServletPath, requestPathInfo);
        }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



