Sentry 0.0.1-preview3
Prefix ReservedSee the version list below for details.
dotnet add package Sentry --version 0.0.1-preview3
NuGet\Install-Package Sentry -Version 0.0.1-preview3
<PackageReference Include="Sentry" Version="0.0.1-preview3" />
paket add Sentry --version 0.0.1-preview3
#r "nuget: Sentry, 0.0.1-preview3"
// Install Sentry as a Cake Addin #addin nuget:?package=Sentry&version=0.0.1-preview3&prerelease // Install Sentry as a Cake Tool #tool nuget:?package=Sentry&version=0.0.1-preview3&prerelease
Below you will find a basic introduction to the SDK and its API.
For more details, please: refer to the SDK documentation
Main features
- Automatic Captures global unhandled exceptions (AppDomain)
- Scope management
- Duplicate events automatically dropped
- Events from the same exception automatically dropped
- Web proxy support
- DSN discovered via environment variable
- Release (version) reported automatically
- CLS Compliant
- Strong named
- SourceLink (including PDB in nuget package)
- Device OS info sent
- Device Runtime info sent
- Tested on Windows, Linux and macOS
- Tested on .NET Core, .NET Framework and Mono
Basics
Initialize the SDK:
void Main()
{
using (SentrySdk.Init("dsn"))
{
// App code
}
}
The SDK by default will watch for unhandled exceptions in your app.
If the DSN is not explicitly passed by parameter to Init
, the SDK will try to locate it via environment variable SENTRY_DSN
.
To configure advanced settings, for example a proxy server:
void Main()
{
using (SentrySdk.Init(o =>
{
o.Dsn = new Dsn("dsn");
o.Http(h =>
{
h.Proxy = new WebProxy("https://localhost:3128");
});
}))
{
// App code
}
}
Capture an exception:
try
{
throw null;
}
catch (Exception e)
{
SentrySdk.CaptureException(e);
}
Capture a message:
SentrySdk.CaptureMessage("this just happened");
Internals/Testability
It's often the case we don't want to couple our code with static class like SentrySdk
, especially to allow our code to be testable.
If that's your case, you can use 2 abstractions:
- ISentryClient
- IHub
The ISentryClient
is responsible to queueing the event to be sent to Sentry and abstracting away the internal transport.
The IHub
on the other hand, holds a client and the current scope. It in fact also implements ISentryClient
and is able to dispatch calls to the right client depending on the current scope.
In order to allow different events hold different contextual data, you need to know in which scope you are in.
That's the job of the Hub
. It holds the scope management as well as a client.
If all you are doing is sending events, without modification/access to the current scope, then you depend on ISentryClient
. If on the other hand you would like to have access to the current scope by configuring it or binding a different client to it, etc. You'd depend on IHub
.
An example using IHub
for testability is SentryLogger and its unit tests SentryLoggerTests.
SentryLogger
depends on IHub
because it does modify the scope (through AddBreadcrumb
). In case it only sent events, it should instead depend on ISentryClient
Compatibility
The packages target .NET Standard 2.0. That means it is compatible with the following versions or newer:
- .NET Framework 4.6.1
- .NET Core 2.0
- Mono 5.4
- Xamarin.Android 8.0
- Xamarin.Mac 3.8
- Xamarin.iOS 10.14
- Universal Windows Platform 10.0.16299
Of those, we've tested (we run our unit/integration tests) against:
- .NET Framework 4.6.2 on Windows (AppVeyor)
- Mono 5.12 macOS and Linux (Travis-CI)
- .NET Core 2.0 Windows (AppVeyor), macOS and Linux (Travis-CI)
- .NET Core 2.1 Windows (AppVeyor), macOS and Linux (Travis-CI)
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- Newtonsoft.Json (>= 11.0.2)
- Sentry.PlatformAbstractions (>= 1.0.0-dev-00071)
- System.Collections.Immutable (>= 1.5.0)
NuGet packages (77)
Showing the top 5 NuGet packages that depend on Sentry:
Package | Downloads |
---|---|
Sentry.Extensions.Logging
Official Microsoft.Extensions.Logging integration for Sentry - Open-source error tracking that helps developers monitor and fix crashes in real time. |
|
Sentry.Serilog
Official Serilog integration for Sentry - Open-source error tracking that helps developers monitor and fix crashes in real time. |
|
Sentry.NLog
Official NLog integration for Sentry - Open-source error tracking that helps developers monitor and fix crashes in real time. |
|
Sentry.DiagnosticSource
Official Diagnostic.Listener integration for Sentry - Open-source error tracking that helps developers monitor and fix crashes in real time. Note: This package is not needed when using Sentry with .NET Core 3 or higher. |
|
VisioForge.DotNet.Core
VisioForge .Net products for video capture, editing and playback (Video Capture SDK, Media Player SDK, Video Edit SDK). Core package. |
GitHub repositories (46)
Showing the top 5 popular GitHub repositories that depend on Sentry:
Repository | Stars |
---|---|
files-community/Files
A modern file manager that helps users organize their files and folders.
|
|
ppy/osu
rhythm is just a *click* away!
|
|
Sonarr/Sonarr
Smart PVR for newsgroup and bittorrent users.
|
|
Radarr/Radarr
Movie organizer/manager for usenet and torrent users.
|
|
LykosAI/StabilityMatrix
Multi-Platform Package Manager for Stable Diffusion
|
Version | Downloads | Last updated | |
---|---|---|---|
4.13.0 | 53,587 | 11/5/2024 | |
4.12.2 | 24,540 | 11/2/2024 | |
4.12.1 | 348,021 | 10/10/2024 | |
4.12.1-segv1 | 564 | 11/1/2024 | |
4.12.0 | 142,146 | 10/2/2024 | |
4.11.0 | 329,767 | 9/22/2024 | |
4.10.2 | 669,319 | 8/21/2024 | |
4.10.1 | 120,182 | 8/16/2024 | |
4.10.0 | 46,201 | 8/14/2024 | |
4.9.0 | 984,086 | 7/11/2024 | |
4.9.0-sync.collection.2 | 190 | 7/30/2024 | |
4.9.0-sync.collection.1 | 89 | 7/30/2024 | |
4.8.1 | 210,066 | 7/2/2024 | |
4.8.0 | 184,010 | 6/26/2024 | |
4.7.0 | 855,004 | 5/27/2024 | |
4.6.2 | 389,691 | 5/14/2024 | |
4.6.0 | 89,476 | 5/9/2024 | |
4.5.0 | 259,200 | 4/30/2024 | |
4.4.0 | 443,918 | 4/12/2024 | |
4.3.0 | 141,037 | 4/10/2024 | |
4.2.1 | 775,250 | 3/12/2024 | |
4.2.0 | 41,643 | 3/11/2024 | |
4.1.2 | 1,083,056 | 2/20/2024 | |
4.1.1 | 178,018 | 2/14/2024 | |
4.1.0 | 164,033 | 2/9/2024 | |
4.0.3 | 69,272 | 2/7/2024 | |
4.0.2 | 64,307 | 2/6/2024 | |
4.0.1 | 40,101 | 2/5/2024 | |
4.0.0 | 106,900 | 2/1/2024 | |
4.0.0-beta.9 | 1,119 | 1/30/2024 | |
4.0.0-beta.8 | 17,222 | 1/11/2024 | |
4.0.0-beta.7 | 7,888 | 1/5/2024 | |
4.0.0-beta.6 | 16,015 | 12/13/2023 | |
4.0.0-beta.5 | 2,517 | 12/12/2023 | |
4.0.0-beta.4 | 18,763 | 12/5/2023 | |
4.0.0-beta.3 | 583 | 12/2/2023 | |
4.0.0-beta.2 | 4,732 | 11/23/2023 | |
4.0.0-beta.1 | 1,027 | 11/19/2023 | |
4.0.0-beta.0 | 550 | 11/17/2023 | |
4.0.0-alpha.0 | 5,708 | 11/9/2023 | |
3.41.4 | 1,040,655 | 1/23/2024 | |
3.41.3 | 1,479,824 | 11/29/2023 | |
3.41.2 | 316,900 | 11/23/2023 | |
3.41.1 | 70,822 | 11/22/2023 | |
3.41.0 | 895,228 | 11/8/2023 | |
3.40.1 | 762,296 | 10/12/2023 | |
3.40.0 | 137,352 | 10/10/2023 | |
3.40.0-beta.0 | 14,569 | 9/21/2023 | |
3.39.1 | 1,430,256 | 9/12/2023 | |
3.39.0 | 210,927 | 9/7/2023 | |
3.36.0 | 601,316 | 8/22/2023 | |
3.35.1 | 244,085 | 8/16/2023 | |
3.35.0 | 170,149 | 8/8/2023 | |
3.34.0 | 1,094,433 | 7/13/2023 | |
3.33.1 | 1,298,118 | 6/13/2023 | |
3.33.0 | 1,144,871 | 5/22/2023 | |
3.32.0 | 26,390 | 5/22/2023 | |
3.31.0 | 744,914 | 5/2/2023 | |
3.30.0 | 1,165,860 | 4/11/2023 | |
3.29.1 | 1,767,946 | 3/11/2023 | |
3.29.0 | 237,017 | 3/6/2023 | |
3.28.1 | 1,362,607 | 2/10/2023 | |
3.28.0 | 74,160 | 2/8/2023 | |
3.27.1 | 327,759 | 2/3/2023 | |
3.27.0 | 144,711 | 2/1/2023 | |
3.26.2 | 675,893 | 1/24/2023 | |
3.26.1 | 273,045 | 1/17/2023 | |
3.26.0 | 356,919 | 1/13/2023 | |
3.25.0 | 1,171,911 | 12/23/2022 | |
3.24.1 | 339,650 | 12/16/2022 | |
3.24.0 | 1,658,877 | 11/18/2022 | |
3.23.1 | 890,852 | 10/31/2022 | |
3.23.0 | 101,436 | 10/27/2022 | |
3.22.0 | 1,372,221 | 10/7/2022 | |
3.21.0 | 1,693,952 | 9/2/2022 | |
3.20.1 | 1,671,466 | 7/26/2022 | |
3.19.0 | 946,457 | 6/28/2022 | |
3.18.0 | 607,368 | 6/15/2022 | |
3.17.1 | 1,415,419 | 5/8/2022 | |
3.17.0 | 145,601 | 5/3/2022 | |
3.16.0 | 971,456 | 4/7/2022 | |
3.15.0 | 981,362 | 3/15/2022 | |
3.14.1 | 896,710 | 2/18/2022 | |
3.14.0 | 207,691 | 2/14/2022 | |
3.13.0 | 1,476,486 | 1/11/2022 | |
3.12.3 | 1,055,480 | 12/19/2021 | |
3.12.2 | 82,970 | 12/15/2021 | |
3.12.1 | 364,341 | 12/6/2021 | |
3.12.0 | 292,443 | 11/23/2021 | |
3.12.0-alpha.1 | 5,928 | 11/7/2021 | |
3.11.1 | 672,335 | 11/5/2021 | |
3.11.0 | 150,808 | 11/2/2021 | |
3.10.0 | 643,379 | 10/15/2021 | |
3.9.4 | 965,115 | 9/29/2021 | |
3.9.3 | 171,057 | 9/21/2021 | |
3.9.2 | 234,715 | 9/10/2021 | |
3.9.1 | 14,381 | 9/9/2021 | |
3.9.0 | 304,276 | 8/27/2021 | |
3.8.3 | 816,889 | 7/25/2021 | |
3.8.2 | 141,163 | 7/17/2021 | |
3.8.1 | 27,815 | 7/15/2021 | |
3.8.0 | 120,037 | 7/14/2021 | |
3.7.0 | 134,759 | 7/10/2021 | |
3.6.1 | 180,829 | 7/2/2021 | |
3.6.0 | 235,441 | 6/23/2021 | |
3.6.0-alpha.2 | 641 | 6/18/2021 | |
3.6.0-alpha.1 | 1,254 | 6/11/2021 | |
3.5.0 | 476,320 | 6/7/2021 | |
3.4.0 | 151,739 | 5/31/2021 | |
3.4.0-beta.0 | 321 | 5/27/2021 | |
3.3.5-beta.0 | 2,560 | 5/13/2021 | |
3.3.4 | 758,919 | 4/26/2021 | |
3.3.3 | 9,115 | 4/23/2021 | |
3.3.2 | 24,778 | 4/23/2021 | |
3.3.1 | 575,288 | 4/5/2021 | |
3.3.0 | 33,935 | 4/3/2021 | |
3.2.0 | 132,079 | 3/26/2021 | |
3.1.0 | 385,042 | 3/10/2021 | |
3.0.8 | 70,812 | 3/4/2021 | |
3.0.7 | 240,688 | 2/20/2021 | |
3.0.6 | 101,726 | 2/14/2021 | |
3.0.5 | 70,148 | 2/9/2021 | |
3.0.4 | 31,853 | 2/8/2021 | |
3.0.3 | 79,458 | 2/3/2021 | |
3.0.2 | 22,452 | 2/3/2021 | |
3.0.1 | 142,232 | 1/29/2021 | |
3.0.0 | 40,525 | 1/28/2021 | |
3.0.0-beta.0 | 5,444 | 1/20/2021 | |
3.0.0-alpha.11 | 483 | 1/15/2021 | |
3.0.0-alpha.10 | 63,623 | 1/10/2021 | |
3.0.0-alpha.9 | 2,255 | 12/29/2020 | |
3.0.0-alpha.8 | 4,536 | 12/25/2020 | |
3.0.0-alpha.7 | 2,988 | 12/16/2020 | |
3.0.0-alpha.6 | 3,664 | 11/30/2020 | |
3.0.0-alpha.5 | 3,286 | 11/21/2020 | |
3.0.0-alpha.4 | 2,446 | 11/2/2020 | |
3.0.0-alpha.3 | 1,796 | 10/29/2020 | |
3.0.0-alpha.2 | 837 | 10/21/2020 | |
3.0.0-alpha.1 | 6,052 | 10/16/2020 | |
3.0.0-alpha.0 | 2,113 | 9/25/2020 | |
2.2.0-alpha | 2,422 | 9/19/2020 | |
2.1.8 | 2,030,969 | 11/21/2020 | |
2.1.6 | 2,104,593 | 8/20/2020 | |
2.1.5 | 600,829 | 7/27/2020 | |
2.1.5-beta | 4,226 | 6/30/2020 | |
2.1.4 | 627,201 | 6/25/2020 | |
2.1.3 | 689,788 | 6/5/2020 | |
2.1.2-beta5 | 7,968 | 5/19/2020 | |
2.1.2-beta4 | 4,969 | 5/12/2020 | |
2.1.2-beta3 | 2,102 | 5/7/2020 | |
2.1.2-beta2 | 22,175 | 4/16/2020 | |
2.1.2-beta | 4,395 | 3/31/2020 | |
2.1.1 | 1,577,040 | 3/19/2020 | |
2.1.0 | 769,125 | 2/24/2020 | |
2.0.3 | 592,847 | 2/12/2020 | |
2.0.2 | 36,313 | 2/8/2020 | |
2.0.1 | 274,999 | 1/28/2020 | |
2.0.0-beta8 | 24,223 | 1/15/2020 | |
2.0.0-beta7 | 162,469 | 12/17/2019 | |
2.0.0-beta6 | 102,966 | 10/31/2019 | |
2.0.0-beta5 | 7,346 | 10/29/2019 | |
2.0.0-beta4 | 75,872 | 9/4/2019 | |
2.0.0-beta3 | 17,194 | 7/26/2019 | |
2.0.0-beta2 | 6,252 | 6/9/2019 | |
2.0.0-beta | 3,368 | 6/4/2019 | |
1.2.1-beta | 2,146 | 5/27/2019 | |
1.2.0 | 3,146,759 | 5/23/2019 | |
1.1.3-beta4 | 2,000 | 5/15/2019 | |
1.1.3-beta3 | 1,794 | 5/13/2019 | |
1.1.3-beta2 | 7,968 | 3/28/2019 | |
1.1.3-beta | 5,467 | 2/11/2019 | |
1.1.2 | 632,015 | 1/16/2019 | |
1.1.2-beta | 3,616 | 1/8/2019 | |
1.1.1 | 24,409 | 1/5/2019 | |
1.1.0 | 115,606 | 12/5/2018 | |
1.0.1-beta5 | 2,710 | 12/5/2018 | |
1.0.1-beta4 | 3,459 | 12/3/2018 | |
1.0.1-beta3 | 18,436 | 11/15/2018 | |
1.0.1-beta2 | 3,355 | 11/14/2018 | |
1.0.1-beta | 20,897 | 10/24/2018 | |
1.0.0 | 289,415 | 10/2/2018 | |
1.0.0-rc2 | 24,621 | 9/7/2018 | |
1.0.0-rc | 5,974 | 8/24/2018 | |
0.0.1-preview5 | 7,569 | 8/5/2018 | |
0.0.1-preview4 | 5,123 | 7/30/2018 | |
0.0.1-preview3 | 6,693 | 7/17/2018 | |
0.0.1-preview2 | 6,070 | 7/3/2018 | |
0.0.1-preview1 | 2,648 | 6/28/2018 |
Can be found at: https://github.com/getsentry/sentry-dotnet/releases