Please mark the type framework used:
Please mark the type of the runtime used:
Please mark the NuGet packages used:
When using the AspNetCore ILogger like this:
using (logger.BeginScope("HTTP {HttpMethod} {Uri}", "123", "1234")){
logger.LogCritical("Test");
}
This creates a scope called "HTTP 123 1234" and additional tags "HttpMethod: 123" and "Uri: 1234".
Sentry successfully gets the tags but the scope results in an error in the sentry frontend like this:

The tags json will contain:
{"value":"HTTP {HttpMethod} {Uri}","key":null}
I think Sentry should be able to use "HTTP 123 1234" as value and probably have "scope" as a tag key (Are arrays supported as tag keys?)
Please mark the type framework used:
Please mark the type of the runtime used:
Please mark the NuGet packages used:
When using the AspNetCore ILogger like this:
This creates a scope called "HTTP 123 1234" and additional tags "HttpMethod: 123" and "Uri: 1234".

Sentry successfully gets the tags but the scope results in an error in the sentry frontend like this:
The tags json will contain:
{"value":"HTTP {HttpMethod} {Uri}","key":null}I think Sentry should be able to use "HTTP 123 1234" as value and probably have "scope" as a tag key (Are arrays supported as tag keys?)