The instrumentation hooks into PHP's native session functions to provide tracing capabilities. It automatically creates spans for session operations like session_start() and session_destroy().
Due to the way the hook code is ordered in session_destroy, trying to query certain properties such as session ID, name, and initial working directory are not possible. I think it would make sense for ...