@sharecover-co/middy-aws-xray-tracing

AWS X-Ray Tracing Middleware ============================

Downloads in past

Stats

StarsIssuesVersionUpdatedCreatedSize
@sharecover-co/middy-aws-xray-tracing
0.1.05 years ago5 years agoMinified + gzip package size for @sharecover-co/middy-aws-xray-tracing in KB

Readme

AWS X-Ray Tracing Middleware
This middleware calls X-Ray Tracing on the AWS-SDK if a Trace ID is available in the environment.
The first call that has a Trace ID will initialise capturing, subsequent loads will not.

Install

To install this middleware you can use NPM:
npm install --save @sharecover-co/middy-aws-xray-tracing

Sample usage

const middy = require('@middy/core')
const awsXrayTracing = require('@sharecover-co/middy-aws-xray-tracing')

const handler = middy((event, context, cb) => {
  cb(null, {})
})

handler.use(awsXrayTracing())