Sentry.Extensions.Logging 0.0.1-preview1

Prefix Reserved
This is a prerelease version of Sentry.Extensions.Logging.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Sentry.Extensions.Logging --version 0.0.1-preview1
                    
NuGet\Install-Package Sentry.Extensions.Logging -Version 0.0.1-preview1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Sentry.Extensions.Logging" Version="0.0.1-preview1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Sentry.Extensions.Logging" Version="0.0.1-preview1" />
                    
Directory.Packages.props
<PackageReference Include="Sentry.Extensions.Logging" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Sentry.Extensions.Logging --version 0.0.1-preview1
                    
#r "nuget: Sentry.Extensions.Logging, 0.0.1-preview1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=Sentry.Extensions.Logging&version=0.0.1-preview1&prerelease
                    
Install Sentry.Extensions.Logging as a Cake Addin
#tool nuget:?package=Sentry.Extensions.Logging&version=0.0.1-preview1&prerelease
                    
Install Sentry.Extensions.Logging as a Cake Tool

Integration of Microsoft.Extensions.Logging with Sentry

By default, LogError or LogCritical by will send an event to Sentry.

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 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (15)

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 (9)

Showing the top 9 popular GitHub repositories that depend on Sentry.Extensions.Logging:

Repository Stars
DGP-Studio/Snap.Hutao
实用的开源多功能原神工具箱 🧰 / Multifunctional Open-source Genshin Impact Toolkit 🧰
bitfoundation/bitplatform
Build all of your apps using what you already know and love ❤️
ClassIsland/ClassIsland
一款适用于班级多媒体屏幕的课表信息显示工具,可以一目了然地显示各种信息。
getcellm/cellm
Use LLMs in Excel formulas
benaclejames/VRCFaceTracking
OSC App to allow VRChat avatars to interact with eye and facial tracking hardware
ShokoAnime/ShokoServer
Repository for Shoko Server.
ingen084/KyoshinEewViewerIngen
Custom client for Kyoshin Monitor
Aiko-IT-Systems/DisCatSharp
Your library to write discord apps in C# with focus on always providing access to the latest discord features
RedpointGames/uet
UET (Unreal Engine Tool) makes building and testing Unreal Engine projects and plugins easy. It can distribute builds with BuildGraph, remotely execute automation tests on device and across multiple machines, handles fault tolerance and automatic retries and generally makes the whole experience of automating Unreal Engine a lot more pleasant.
Version Downloads Last updated
5.7.0-beta.0 320 10 days ago
5.6.0 56,228 19 days ago
5.5.1 102,022 a month ago
5.5.0 45,172 a month ago
5.4.0 162,629 2 months ago
5.3.0 99,785 2 months ago
5.2.0 119,221 3 months ago
5.1.1 198,187 3 months ago
5.1.0 223,484 3 months ago
5.0.1 975,261 4 months ago
5.0.0 412,318 5 months ago
5.0.0-alpha.1 7,513 6 months ago
5.0.0-alpha.0 84 6 months ago
4.13.0 1,329,894 6 months ago
4.12.2 50,371 6 months ago
4.12.1 616,320 7 months ago
4.12.1-segv1 308 6 months ago
4.12.0 275,500 7 months ago
4.11.0 378,209 8 months ago
4.10.2 608,856 9 months ago
4.10.1 106,259 9 months ago
4.10.0 44,862 9 months ago
4.9.0 1,002,582 7/11/2024
4.9.0-sync.collection.2 192 9 months ago
4.9.0-sync.collection.1 83 9 months ago
4.8.1 204,589 7/2/2024
4.8.0 187,146 6/26/2024
4.7.0 779,364 5/27/2024
4.6.2 365,196 5/14/2024
4.6.1 9,167 5/14/2024
4.6.0 87,322 5/9/2024
4.5.0 248,647 4/30/2024
4.4.0 435,706 4/12/2024
4.3.0 39,328 4/10/2024
4.2.1 632,968 3/12/2024
4.2.0 36,393 3/11/2024
4.1.2 673,528 2/20/2024
4.1.1 103,367 2/14/2024
4.1.0 134,051 2/9/2024
4.0.3 25,988 2/7/2024
4.0.2 31,003 2/6/2024
4.0.1 30,822 2/5/2024
4.0.0 87,594 2/1/2024
4.0.0-beta.9 394 1/30/2024
4.0.0-beta.8 13,022 1/11/2024
4.0.0-beta.7 7,261 1/5/2024
4.0.0-beta.6 14,422 12/13/2023
4.0.0-beta.5 1,481 12/12/2023
4.0.0-beta.4 4,352 12/5/2023
4.0.0-beta.3 377 12/2/2023
4.0.0-beta.2 2,502 11/23/2023
4.0.0-beta.1 318 11/19/2023
4.0.0-beta.0 233 11/17/2023
4.0.0-alpha.0 2,682 11/9/2023
3.41.4 966,218 1/23/2024
3.41.3 1,188,468 11/29/2023
3.41.2 161,477 11/23/2023
3.41.1 56,378 11/22/2023
3.41.0 410,784 11/8/2023
3.40.1 580,218 10/12/2023
3.40.0 57,913 10/10/2023
3.40.0-beta.0 7,436 9/21/2023
3.39.1 549,667 9/12/2023
3.39.0 88,801 9/7/2023
3.38.0 7,474 9/6/2023
3.37.0 5,010 9/6/2023
3.36.0 282,798 8/22/2023
3.35.1 117,700 8/16/2023
3.35.0 100,914 8/8/2023
3.34.0 755,463 7/13/2023
3.33.1 748,099 6/13/2023
3.33.0 829,188 5/22/2023
3.32.0 13,194 5/22/2023
3.31.0 560,479 5/2/2023
3.30.0 434,261 4/11/2023
3.29.1 976,061 3/11/2023
3.29.0 136,818 3/6/2023
3.28.1 748,435 2/10/2023
3.28.0 47,337 2/8/2023
3.27.1 147,813 2/3/2023
3.27.0 83,207 2/1/2023
3.26.2 268,621 1/24/2023
3.26.1 186,165 1/17/2023
3.26.0 185,063 1/13/2023
3.25.0 734,733 12/23/2022
3.24.1 237,846 12/16/2022
3.24.0 1,388,914 11/18/2022
3.23.1 496,627 10/31/2022
3.23.0 45,628 10/27/2022
3.22.0 939,888 10/7/2022
3.21.0 1,068,702 9/2/2022
3.20.1 1,285,842 7/26/2022
3.20.0 58,710 7/22/2022
3.19.0 558,284 6/28/2022
3.18.0 246,562 6/15/2022
3.17.1 856,916 5/8/2022
3.17.0 101,905 5/3/2022
3.16.0 551,950 4/7/2022
3.15.0 634,643 3/15/2022
3.14.1 457,001 2/18/2022
3.14.0 136,646 2/14/2022
3.13.0 930,269 1/11/2022
3.12.3 349,258 12/19/2021
3.12.2 74,952 12/15/2021
3.12.1 234,845 12/6/2021
3.12.0 166,274 11/23/2021
3.12.0-alpha.1 4,647 11/7/2021
3.11.1 500,000 11/5/2021
3.11.0 141,821 11/2/2021
3.10.0 360,904 10/15/2021
3.9.4 392,771 9/29/2021
3.9.3 82,117 9/21/2021
3.9.2 113,828 9/10/2021
3.9.1 6,423 9/9/2021
3.9.0 168,777 8/27/2021
3.8.3 394,751 7/25/2021
3.8.2 73,985 7/17/2021
3.8.1 10,664 7/15/2021
3.8.0 112,425 7/14/2021
3.7.0 70,160 7/10/2021
3.6.1 125,663 7/2/2021
3.6.0 144,053 6/23/2021
3.6.0-alpha.2 669 6/18/2021
3.6.0-alpha.1 482 6/11/2021
3.5.0 324,392 6/7/2021
3.4.0 64,933 5/31/2021
3.4.0-beta.0 268 5/27/2021
3.3.5-beta.0 2,496 5/13/2021
3.3.4 498,218 4/26/2021
3.3.3 5,195 4/23/2021
3.3.2 21,921 4/23/2021
3.3.1 349,365 4/5/2021
3.3.0 30,072 4/3/2021
3.2.0 53,060 3/26/2021
3.1.0 323,473 3/10/2021
3.0.8 45,911 3/4/2021
3.0.7 118,751 2/20/2021
3.0.6 63,575 2/14/2021
3.0.5 44,600 2/9/2021
3.0.4 15,923 2/8/2021
3.0.3 52,964 2/3/2021
3.0.2 19,078 2/3/2021
3.0.1 93,703 1/29/2021
3.0.0 40,541 1/28/2021
3.0.0-beta.0 773 1/20/2021
3.0.0-alpha.11 450 1/15/2021
3.0.0-alpha.10 1,698 1/10/2021
3.0.0-alpha.9 1,990 12/29/2020
3.0.0-alpha.8 923 12/25/2020
3.0.0-alpha.7 2,915 12/16/2020
3.0.0-alpha.6 2,171 11/30/2020
3.0.0-alpha.5 3,426 11/21/2020
3.0.0-alpha.4 2,032 11/2/2020
3.0.0-alpha.3 326 10/29/2020
3.0.0-alpha.2 445 10/21/2020
3.0.0-alpha.1 399 10/16/2020
3.0.0-alpha.0 1,022 9/25/2020
2.2.0-alpha 1,993 9/19/2020
2.1.8 1,176,092 11/21/2020
2.1.6 1,178,803 8/20/2020
2.1.5 268,471 7/27/2020
2.1.5-beta 3,688 6/30/2020
2.1.4 395,231 6/25/2020
2.1.3 556,294 6/5/2020
2.1.2-beta5 4,824 5/19/2020
2.1.2-beta4 2,639 5/12/2020
2.1.2-beta3 1,678 5/7/2020
2.1.2-beta2 19,950 4/16/2020
2.1.2-beta 3,772 3/31/2020
2.1.1 1,001,068 3/19/2020
2.1.0 451,360 2/24/2020
2.0.3 146,405 2/12/2020
2.0.2 23,075 2/8/2020
2.0.1 95,316 1/28/2020
2.0.0 14,626 1/28/2020
2.0.0-beta8 22,940 1/15/2020
2.0.0-beta7 156,527 12/17/2019
2.0.0-beta6 100,419 10/31/2019
2.0.0-beta5 6,653 10/29/2019
2.0.0-beta4 71,702 9/4/2019
2.0.0-beta3 15,457 7/26/2019
2.0.0-beta2 4,313 6/9/2019
2.0.0-beta 2,592 6/4/2019
1.2.1-beta 1,320 5/27/2019
1.2.0 1,575,977 5/23/2019
1.1.3-beta4 1,496 5/15/2019
1.1.3-beta3 1,201 5/13/2019
1.1.3-beta2 2,768 3/28/2019
1.1.3-beta 4,140 2/11/2019
1.1.2 416,739 1/16/2019
1.1.2-beta 2,533 1/8/2019
1.1.1 17,155 1/5/2019
1.1.0 70,463 12/5/2018
1.0.1-beta5 1,812 12/5/2018
1.0.1-beta4 2,392 12/3/2018
1.0.1-beta3 14,210 11/15/2018
1.0.1-beta2 2,299 11/14/2018
1.0.1-beta 17,014 10/24/2018
1.0.0 209,188 10/2/2018
1.0.0-rc2 21,961 9/7/2018
1.0.0-rc 5,010 8/24/2018
0.0.1-preview5 5,845 8/5/2018
0.0.1-preview4 4,283 7/30/2018
0.0.1-preview3 5,817 7/17/2018
0.0.1-preview2 5,406 7/3/2018
0.0.1-preview1 1,960 6/28/2018