Replies: 3 comments
-
@davidr912 Is this AWS Lambda? In AWS Lambda the process might be killed or frozen before the event gets flushed out to the network. That's why the ASP.NET Core integration calls sentry-dotnet/src/Sentry.AspNetCore/SentryMiddleware.cs Lines 93 to 100 in 598ab4f |
Beta Was this translation helpful? Give feedback.
-
hey @bruno-garcia - this is actually AWS Fargate, so pretty much just running arbitrary containers for as long as you want (AFAIK no extra behaviours re: freezing or killing) Is there still something analogous to |
Beta Was this translation helpful? Give feedback.
-
Are you making sure the SDK is closed when the process quits? Do you get events at all? Even if you have the process running for 5 minutes? You container has access to the Internet? |
Beta Was this translation helpful? Give feedback.
-
Please mark the type framework used:
Please mark the type of the runtime used:
Please mark the NuGet packages used:
My sentry is able to send events and exceptions when run locally - but when deployed I get nothing.
sentry.io
resolves in DNS in AWS and is contactable so there is no clear reason why there would be a difference. This is running in Linux in a docker container (alpine with glibc)There are no visible errors etc. or trace output and
IsEnabled
returns trueIs there any way to fetch errors/problems from inside of
SentrySdk
so I can diagnose what the cause is here?Beta Was this translation helpful? Give feedback.
All reactions