This message was deleted.
# aws
s
This message was deleted.
b
hey! I am no serverless expert, but....
looking at that package, it seems that it's a set of helper methods around https://www.npmjs.com/package/@sentry/node a lot of what it's doing is sending data from the AWS log stream to sentry: https://github.com/getsentry/sentry-javascript/blob/master/packages/serverless/src/awslambda.ts#L140-L171 We don't have an integration like this at the moment, but you can probably get the same result by using our awsx package to bootstrap your lambda + api gateway https://www.pulumi.com/docs/guides/crosswalk/aws/ and then using the
@sentry/node
package inside your function
h
Thanks for the tips. I've got a pretty rough integration working nicely now!