You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 13, 2025. It is now read-only.
Capture exception details in AWS Lambda middleware. (#154)
Trace field names match the ones used in Tracer:
beeline-python/beeline/trace.py
```python
span.add_context({
"app.exception_type": str(type(e)),
"app.exception_string": stringify_exception(e),
"app.exception_stacktrace": traceback.format_exc(),
})
```
closes#153
0 commit comments