Created
July 9, 2019 12:30
-
-
Save nealeu/82dfa67670274eb06a46ccea72a5b116 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let dynamoDb = new AWS.DynamoDB.DocumentClient(dynamoParams); | |
if (process.env.XRAY_DYNAMO) { | |
const AWSXRay = require("aws-xray-sdk-core"); | |
if (process.env.IS_OFFLINE) { | |
AWSXRay.setLogger(console); | |
} | |
AWS = AWSXRay.captureAWS(AWS); | |
dynamoDb = AWSXRay.captureAWSClient(dynamoDb); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment