Other
AWS Lambda
Trace AWS Lambda invocations with Judgment.
AWS Lambda tracing uses the standard OpenTelemetry AWS Lambda instrumentation and routes invocation spans through Judgment.
uv add judgeval opentelemetry-instrumentation-aws-lambdapip install judgeval opentelemetry-instrumentation-aws-lambdafrom judgeval import Tracer
from opentelemetry.instrumentation.aws_lambda import AwsLambdaInstrumentor
Tracer.init(project_name="lambda_app")
def handler(event, context):
return {"statusCode": 200, "body": "ok"}
Tracer.registerOTELInstrumentation(AwsLambdaInstrumentor())