fix: update sentry, correctly configure sentry dsn

This commit is contained in:
spiral 2021-11-09 01:31:06 -05:00
parent 78fc247b7e
commit b4e8dda9dd
No known key found for this signature in database
GPG Key ID: A6059F0CA0E1BD31
3 changed files with 10 additions and 27 deletions

View File

@ -38,15 +38,13 @@ namespace PluralKit.Bot
var logger = services.Resolve<ILogger>().ForContext<Init>(); var logger = services.Resolve<ILogger>().ForContext<Init>();
// Initialize Sentry SDK, and make sure it gets dropped at the end // Initialize Sentry SDK, and make sure it gets dropped at the end
var sentryDsn = services.Resolve<CoreConfig>().SentryUrl;
if (sentryDsn != null)
{
using var _ = Sentry.SentrySdk.Init((opts) => using var _ = Sentry.SentrySdk.Init((opts) =>
{ {
opts.Dsn = new Dsn(sentryDsn); opts.Dsn = services.Resolve<CoreConfig>().SentryUrl;
opts.Release = BuildInfoService.FullVersion; opts.Release = BuildInfoService.FullVersion;
opts.AutoSessionTracking = true;
}); });
}
// "Connect to the database" (ie. set off database migrations and ensure state) // "Connect to the database" (ie. set off database migrations and ensure state)
logger.Information("Connecting to database"); logger.Information("Connecting to database");

View File

@ -22,7 +22,7 @@
<ItemGroup> <ItemGroup>
<PackageReference Include="Humanizer.Core" Version="2.8.26" /> <PackageReference Include="Humanizer.Core" Version="2.8.26" />
<PackageReference Include="Sentry" Version="2.1.6" /> <PackageReference Include="Sentry" Version="3.11.1" />
<PackageReference Include="SixLabors.ImageSharp" Version="1.0.2" /> <PackageReference Include="SixLabors.ImageSharp" Version="1.0.2" />
</ItemGroup> </ItemGroup>
</Project> </Project>

View File

@ -10,14 +10,9 @@
}, },
"Sentry": { "Sentry": {
"type": "Direct", "type": "Direct",
"requested": "[2.1.6, )", "requested": "[3.11.1, )",
"resolved": "2.1.6", "resolved": "3.11.1",
"contentHash": "Haii3y9JZX9Z/HrHyy8r0cLj6WvTTFS4xbGI0UtItZ53yB/hGaWeXD5mvk47HAVOHeix8Gg64tguxIBCicoMAQ==", "contentHash": "T/NLfs6MMkUSYsPEDajB9ad0124T18I0uUod5MNOev3iwjvcnIEQBrStEX2olbIxzqfvGXzQ/QFqTfA2ElLPlA=="
"dependencies": {
"Newtonsoft.Json": "11.0.2",
"Sentry.PlatformAbstractions": "1.1.1",
"Sentry.Protocol": "2.1.6"
}
}, },
"SixLabors.ImageSharp": { "SixLabors.ImageSharp": {
"type": "Direct", "type": "Direct",
@ -519,16 +514,6 @@
"resolved": "4.3.0", "resolved": "4.3.0",
"contentHash": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==" "contentHash": "VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg=="
}, },
"Sentry.PlatformAbstractions": {
"type": "Transitive",
"resolved": "1.1.1",
"contentHash": "ug99ZPdcQQY2Q2smO5tWfxUdMQF8f90UdCKMSfhucJVOAQtKWM0rXcqLvVZRlXDzeB/xNQWLSuw56I5MuaOS9g=="
},
"Sentry.Protocol": {
"type": "Transitive",
"resolved": "2.1.6",
"contentHash": "AXVI9e/mYp5NI/r+Tfk//YyXGGCUxq698xnOuJbiDUJ2FYw88BdB1Ewmv29pA8FTh/MLBWTPIwTVBWMouZrQBA=="
},
"Serilog": { "Serilog": {
"type": "Transitive", "type": "Transitive",
"resolved": "2.10.0", "resolved": "2.10.0",