#Missing release tag value

14 messages · Page 1 of 1 (latest)

magic moss
#

We're having a problem with our .net maui app – Sentry isn't sending the release tag value correctly – it's always null. This has been happening for a while now. It was working fine a month ago.
We set it like this:

builder.UseSentry(options =>
{
// The DSN is the only required setting.
options.Dsn = "XXXXXXXXXXXXXXX";
options.Release = "3.0.4";

 // Use debug mode if you want to see what the SDK is doing.
 // Debug messages are written to stdout with Console.Writeline,
 // and are viewable in your IDE's debug console or with 'adb logcat', etc.
 // This option is not recommended when deploying your application.
 options.Debug = false;

 // Set TracesSampleRate to 1.0 to capture 100% of transactions for tracing.
 // We recommend adjusting this value in production.
 options.TracesSampleRate = 1.0;

});

In json file in Sentry is null now:

"release":null

livid mason
#

Did you recently added the release? You can omit it and let the sdk automatically find based on your app

magic moss
#

So just not set release in this property "options.Release = "3.0.4";" ? Shoud I do something more in my .net maui app to have proper Release value in json and Sentry UI on issue level?

livid mason
#

This page describes how the release detected

magic moss
#

ok - thanks

magic moss
#

Hi, I have set up my Sentry app exactly as recommended in the documentation:

#

And I still don't have this in Sentry UI

#

why?

magic moss
#

Please help me with this

prisma talon
#

you can also enable the debug option in the SDK and check the app console for more info.

#

do you have any data scrubber in place that could be removing the info?