Sentry.Extensions.Logging
1.0.0-rc
Prefix Reserved
See the version list below for details.
dotnet add package Sentry.Extensions.Logging --version 1.0.0-rc
NuGet\Install-Package Sentry.Extensions.Logging -Version 1.0.0-rc
<PackageReference Include="Sentry.Extensions.Logging" Version="1.0.0-rc" />
paket add Sentry.Extensions.Logging --version 1.0.0-rc
#r "nuget: Sentry.Extensions.Logging, 1.0.0-rc"
// Install Sentry.Extensions.Logging as a Cake Addin #addin nuget:?package=Sentry.Extensions.Logging&version=1.0.0-rc&prerelease // Install Sentry.Extensions.Logging as a Cake Tool #tool nuget:?package=Sentry.Extensions.Logging&version=1.0.0-rc&prerelease
Below you will find a basic introduction to the SDK and its API.
For more details, please: refer to the SDK documentation
Description
Integration of Microsoft.Extensions.Logging
with Sentry
Depends on the main Sentry SDK and makes all its features available to use.
Main features
- BeginScope data added to scope
- LogInformation or higher added as breadcrumb. Sent with next events.
- LogError or higher automatically captures an event
- Strong named
By default, LogError
or LogCritical
by will send an event to Sentry. That can be configured to any level or disable altogether.
Log messages of level Information
or higher will be kept as breadcrumbs and if an event is sent, all breadcrumbs from that transaction are included.
These levels can be configured so that the level you define, tracks breadcrumbs, sends events or completely disable it.
That means that log mesages logged by you or the framework, related to the failed transaction, will be added to the event!
Sample:
using (var loggerFactory = new LoggerFactory()
.AddConsole(LogLevel.Trace)
.AddSentry(o =>
{
// Initialize the SDK, alternative to relying on previously called: `using(SentrySdk.Init)`:
// this is useful when Logging is the first or is the only integration enabled:
o.Init(i =>
{
i.Dsn = new Dsn("https://5fd7a6cda8444965bade9ccfd3df9882@sentry.io/1188141");
i.MaxBreadcrumbs = 150; // Increasing from default 100
});
// Optionally configure options: The default values are:
o.MinimumBreadcrumbLevel = LogLevel.Information; // It requires at least this level to store breadcrumb
o.MinimumEventLevel = LogLevel.Error; // This level or above will result in event sent to Sentry
}))
{
var logger = loggerFactory.CreateLogger<Program>();
logger.LogTrace("1 - By *default* this log level is ignored by Sentry.");
logger.LogInformation("2 - Information messages are stored as Breadcrumb, sent with the next event.");
logger.LogError("3 - This generates an event, captured by sentry and includes breadcrumbs (2) tracked in this transaction.");
using (logger.BeginScope(new Dictionary<string, string>
{
{"A", "some value"},
{"B", "more value"},
}))
{
logger.LogWarning("4 - Breadcrumb that only exists inside this scope");
logger.LogError("5 - An event that includes the scoped key-value (A, B) above and also the breadcrumbs: (2, 4) and event (3)");
}
}
}
}
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
- Microsoft.Extensions.Logging.Configuration (>= 2.1.0)
- Sentry (>= 1.0.0-rc)
NuGet packages (14)
Showing the top 5 NuGet packages that depend on Sentry.Extensions.Logging:
Package | Downloads |
---|---|
Sentry.AspNetCore
Official ASP.NET Core integration for Sentry - Open-source error tracking that helps developers monitor and fix crashes in real time. |
|
DisCatSharp
DisCatSharp Your library to write discord bots in C# with a focus on always providing access to the latest discord features. Written with love and for everyone. |
|
Sentry.Maui
Official MAUI integration for Sentry - Open-source error tracking that helps developers monitor and fix crashes in real time. |
|
Sentry.Azure.Functions.Worker
Official Azure Functions Worker SDK integration for Sentry - Open-source error tracking that helps developers monitor and fix crashes in real time. |
|
Fsel.Core
Fsel Core Package |
GitHub repositories (5)
Showing the top 5 popular GitHub repositories that depend on Sentry.Extensions.Logging:
Repository | Stars |
---|---|
benaclejames/VRCFaceTracking
OSC App to allow VRChat avatars to interact with eye and facial tracking hardware
|
|
ClassIsland/ClassIsland
一款适用于班级多媒体屏幕的课表的信息显示工具,可以一目了然地显示各种信息。
|
|
ShokoAnime/ShokoServer
Repository for Shoko Server.
|
|
Aiko-IT-Systems/DisCatSharp
Your library to write discord apps in C# with focus on always providing access to the latest discord features
|
|
ingen084/KyoshinEewViewerIngen
Custom client for Kyoshin Monitor
|
Version | Downloads | Last updated |
---|---|---|
4.13.0 | 5,535 | 11/5/2024 |
4.12.2 | 11,408 | 11/2/2024 |
4.12.1 | 194,379 | 10/10/2024 |
4.12.1-segv1 | 167 | 11/1/2024 |
4.12.0 | 102,174 | 10/2/2024 |
4.11.0 | 223,499 | 9/22/2024 |
4.10.2 | 360,933 | 8/21/2024 |
4.10.1 | 70,311 | 8/16/2024 |
4.10.0 | 28,242 | 8/14/2024 |
4.9.0 | 724,499 | 7/11/2024 |
4.9.0-sync.collection.2 | 110 | 7/30/2024 |
4.9.0-sync.collection.1 | 54 | 7/30/2024 |
4.8.1 | 124,908 | 7/2/2024 |
4.8.0 | 133,485 | 6/26/2024 |
4.7.0 | 563,575 | 5/27/2024 |
4.6.2 | 291,622 | 5/14/2024 |
4.6.1 | 4,993 | 5/14/2024 |
4.6.0 | 66,258 | 5/9/2024 |
4.5.0 | 189,666 | 4/30/2024 |
4.4.0 | 315,884 | 4/12/2024 |
4.3.0 | 33,317 | 4/10/2024 |
4.2.1 | 525,856 | 3/12/2024 |
4.2.0 | 32,818 | 3/11/2024 |
4.1.2 | 514,583 | 2/20/2024 |
4.1.1 | 84,899 | 2/14/2024 |
4.1.0 | 117,381 | 2/9/2024 |
4.0.3 | 21,868 | 2/7/2024 |
4.0.2 | 23,942 | 2/6/2024 |
4.0.1 | 27,662 | 2/5/2024 |
4.0.0 | 75,885 | 2/1/2024 |
4.0.0-beta.9 | 362 | 1/30/2024 |
4.0.0-beta.8 | 12,329 | 1/11/2024 |
4.0.0-beta.7 | 7,218 | 1/5/2024 |
4.0.0-beta.6 | 11,123 | 12/13/2023 |
4.0.0-beta.5 | 1,464 | 12/12/2023 |
4.0.0-beta.4 | 4,276 | 12/5/2023 |
4.0.0-beta.3 | 356 | 12/2/2023 |
4.0.0-beta.2 | 2,450 | 11/23/2023 |
4.0.0-beta.1 | 294 | 11/19/2023 |
4.0.0-beta.0 | 210 | 11/17/2023 |
4.0.0-alpha.0 | 1,658 | 11/9/2023 |
3.41.4 | 701,910 | 1/23/2024 |
3.41.3 | 1,004,369 | 11/29/2023 |
3.41.2 | 134,919 | 11/23/2023 |
3.41.1 | 42,548 | 11/22/2023 |
3.41.0 | 363,541 | 11/8/2023 |
3.40.1 | 506,668 | 10/12/2023 |
3.40.0 | 54,859 | 10/10/2023 |
3.40.0-beta.0 | 7,394 | 9/21/2023 |
3.39.1 | 485,825 | 9/12/2023 |
3.39.0 | 72,073 | 9/7/2023 |
3.38.0 | 7,086 | 9/6/2023 |
3.37.0 | 4,394 | 9/6/2023 |
3.36.0 | 240,765 | 8/22/2023 |
3.35.1 | 108,717 | 8/16/2023 |
3.35.0 | 95,647 | 8/8/2023 |
3.34.0 | 643,904 | 7/13/2023 |
3.33.1 | 682,405 | 6/13/2023 |
3.33.0 | 734,777 | 5/22/2023 |
3.32.0 | 12,277 | 5/22/2023 |
3.31.0 | 494,693 | 5/2/2023 |
3.30.0 | 386,062 | 4/11/2023 |
3.29.1 | 908,259 | 3/11/2023 |
3.29.0 | 125,482 | 3/6/2023 |
3.28.1 | 714,845 | 2/10/2023 |
3.28.0 | 42,681 | 2/8/2023 |
3.27.1 | 128,900 | 2/3/2023 |
3.27.0 | 80,656 | 2/1/2023 |
3.26.2 | 243,215 | 1/24/2023 |
3.26.1 | 171,739 | 1/17/2023 |
3.26.0 | 169,026 | 1/13/2023 |
3.25.0 | 669,364 | 12/23/2022 |
3.24.1 | 207,270 | 12/16/2022 |
3.24.0 | 1,191,585 | 11/18/2022 |
3.23.1 | 467,231 | 10/31/2022 |
3.23.0 | 43,530 | 10/27/2022 |
3.22.0 | 847,871 | 10/7/2022 |
3.21.0 | 977,706 | 9/2/2022 |
3.20.1 | 1,193,196 | 7/26/2022 |
3.20.0 | 57,514 | 7/22/2022 |
3.19.0 | 530,574 | 6/28/2022 |
3.18.0 | 230,754 | 6/15/2022 |
3.17.1 | 816,903 | 5/8/2022 |
3.17.0 | 100,917 | 5/3/2022 |
3.16.0 | 530,340 | 4/7/2022 |
3.15.0 | 600,352 | 3/15/2022 |
3.14.1 | 439,336 | 2/18/2022 |
3.14.0 | 129,155 | 2/14/2022 |
3.13.0 | 890,444 | 1/11/2022 |
3.12.3 | 331,386 | 12/19/2021 |
3.12.2 | 69,901 | 12/15/2021 |
3.12.1 | 216,565 | 12/6/2021 |
3.12.0 | 161,071 | 11/23/2021 |
3.12.0-alpha.1 | 4,392 | 11/7/2021 |
3.11.1 | 480,171 | 11/5/2021 |
3.11.0 | 122,674 | 11/2/2021 |
3.10.0 | 325,693 | 10/15/2021 |
3.9.4 | 360,118 | 9/29/2021 |
3.9.3 | 80,406 | 9/21/2021 |
3.9.2 | 110,305 | 9/10/2021 |
3.9.1 | 6,138 | 9/9/2021 |
3.9.0 | 161,390 | 8/27/2021 |
3.8.3 | 383,328 | 7/25/2021 |
3.8.2 | 73,457 | 7/17/2021 |
3.8.1 | 10,501 | 7/15/2021 |
3.8.0 | 104,931 | 7/14/2021 |
3.7.0 | 66,589 | 7/10/2021 |
3.6.1 | 121,140 | 7/2/2021 |
3.6.0 | 140,273 | 6/23/2021 |
3.6.0-alpha.2 | 624 | 6/18/2021 |
3.6.0-alpha.1 | 435 | 6/11/2021 |
3.5.0 | 312,544 | 6/7/2021 |
3.4.0 | 64,499 | 5/31/2021 |
3.4.0-beta.0 | 222 | 5/27/2021 |
3.3.5-beta.0 | 2,450 | 5/13/2021 |
3.3.4 | 484,263 | 4/26/2021 |
3.3.3 | 5,007 | 4/23/2021 |
3.3.2 | 21,858 | 4/23/2021 |
3.3.1 | 343,487 | 4/5/2021 |
3.3.0 | 29,308 | 4/3/2021 |
3.2.0 | 51,244 | 3/26/2021 |
3.1.0 | 315,877 | 3/10/2021 |
3.0.8 | 45,339 | 3/4/2021 |
3.0.7 | 114,708 | 2/20/2021 |
3.0.6 | 60,045 | 2/14/2021 |
3.0.5 | 43,591 | 2/9/2021 |
3.0.4 | 15,674 | 2/8/2021 |
3.0.3 | 52,442 | 2/3/2021 |
3.0.2 | 16,276 | 2/3/2021 |
3.0.1 | 90,711 | 1/29/2021 |
3.0.0 | 33,582 | 1/28/2021 |
3.0.0-beta.0 | 719 | 1/20/2021 |
3.0.0-alpha.11 | 396 | 1/15/2021 |
3.0.0-alpha.10 | 1,647 | 1/10/2021 |
3.0.0-alpha.9 | 1,935 | 12/29/2020 |
3.0.0-alpha.8 | 870 | 12/25/2020 |
3.0.0-alpha.7 | 2,860 | 12/16/2020 |
3.0.0-alpha.6 | 1,976 | 11/30/2020 |
3.0.0-alpha.5 | 3,372 | 11/21/2020 |
3.0.0-alpha.4 | 1,962 | 11/2/2020 |
3.0.0-alpha.3 | 267 | 10/29/2020 |
3.0.0-alpha.2 | 386 | 10/21/2020 |
3.0.0-alpha.1 | 342 | 10/16/2020 |
3.0.0-alpha.0 | 923 | 9/25/2020 |
2.2.0-alpha | 1,878 | 9/19/2020 |
2.1.8 | 1,126,355 | 11/21/2020 |
2.1.6 | 1,147,953 | 8/20/2020 |
2.1.5 | 262,413 | 7/27/2020 |
2.1.5-beta | 3,596 | 6/30/2020 |
2.1.4 | 382,571 | 6/25/2020 |
2.1.3 | 541,297 | 6/5/2020 |
2.1.2-beta5 | 4,766 | 5/19/2020 |
2.1.2-beta4 | 2,580 | 5/12/2020 |
2.1.2-beta3 | 1,603 | 5/7/2020 |
2.1.2-beta2 | 19,815 | 4/16/2020 |
2.1.2-beta | 3,710 | 3/31/2020 |
2.1.1 | 969,303 | 3/19/2020 |
2.1.0 | 446,255 | 2/24/2020 |
2.0.3 | 139,098 | 2/12/2020 |
2.0.2 | 22,995 | 2/8/2020 |
2.0.1 | 89,555 | 1/28/2020 |
2.0.0 | 14,068 | 1/28/2020 |
2.0.0-beta8 | 22,874 | 1/15/2020 |
2.0.0-beta7 | 153,529 | 12/17/2019 |
2.0.0-beta6 | 100,121 | 10/31/2019 |
2.0.0-beta5 | 6,597 | 10/29/2019 |
2.0.0-beta4 | 71,535 | 9/4/2019 |
2.0.0-beta3 | 15,403 | 7/26/2019 |
2.0.0-beta2 | 4,241 | 6/9/2019 |
2.0.0-beta | 2,538 | 6/4/2019 |
1.2.1-beta | 1,232 | 5/27/2019 |
1.2.0 | 1,553,877 | 5/23/2019 |
1.1.3-beta4 | 1,435 | 5/15/2019 |
1.1.3-beta3 | 1,139 | 5/13/2019 |
1.1.3-beta2 | 2,707 | 3/28/2019 |
1.1.3-beta | 4,078 | 2/11/2019 |
1.1.2 | 409,411 | 1/16/2019 |
1.1.2-beta | 2,471 | 1/8/2019 |
1.1.1 | 17,043 | 1/5/2019 |
1.1.0 | 68,366 | 12/5/2018 |
1.0.1-beta5 | 1,717 | 12/5/2018 |
1.0.1-beta4 | 2,326 | 12/3/2018 |
1.0.1-beta3 | 14,139 | 11/15/2018 |
1.0.1-beta2 | 2,226 | 11/14/2018 |
1.0.1-beta | 16,763 | 10/24/2018 |
1.0.0 | 202,437 | 10/2/2018 |
1.0.0-rc2 | 21,800 | 9/7/2018 |
1.0.0-rc | 4,930 | 8/24/2018 |
0.0.1-preview5 | 5,731 | 8/5/2018 |
0.0.1-preview4 | 4,171 | 7/30/2018 |
0.0.1-preview3 | 5,659 | 7/17/2018 |
0.0.1-preview2 | 5,294 | 7/3/2018 |
0.0.1-preview1 | 1,849 | 6/28/2018 |
Can be found at: https://github.com/getsentry/sentry-dotnet/releases