-
-
Notifications
You must be signed in to change notification settings - Fork 226
Closed
Labels
QuestionFurther information is requestedFurther information is requested
Description
Environment
How do you use Sentry?
self-hosted/on-premise
Which SDK and version?
.NET Sentry.Extensions.Logging 2.1.6
Steps to Reproduce
I use azure functions and added sentry this way
services.AddLogging(lb =>
{
lb.AddSerilog(serilog);
lb.AddSentry(o =>
{
o.Dsn = --------;
o.MinimumEventLevel = ------------;
o.Release = ---------;
o.ServerName = ----------;
o.Environment = --------------;
});
});
Expected Result
Because the function is triggered by HTTP requests I would expect tag RequestId to work properly.
Actual Result
Metadata
Metadata
Assignees
Labels
QuestionFurther information is requestedFurther information is requested
