A Python tracing library for serverless and distributed applications, providing automatic instrumentation for AWS Lambda and other runtimes. Version 1.1.257, updated frequently. It wraps AWS SDK calls, HTTP requests, and other libraries to send telemetry to the Lumigo observability platform.
pip install lumigo-tracerVerified import paths — ran on the pinned version, not inferred.
Decorate your Lambda handler with @lumigo_tracer and set the LUMIGO_TOKEN environment variable.
Change import statement to `from lumigo_tracer import lumigo_tracer`.
Remove `timeout_seconds` argument from the decorator.
Set the `LUMIGO_TOKEN` environment variable with your Lumigo token.
Check the Lumigo docs for supported libraries; use `lumigo_tracer.add_execution_tag()` for manual instrumentation.
Install with `pip install lumigo-tracer` and ensure the Lambda layer includes it.
Use `from lumigo_tracer import lumigo_tracer` and ensure the correct package is installed.
Remove `timeout_seconds` argument; the tracer now uses Lambda's configured timeout.