Sentry.Extensions.Logging 0.0.1-preview5

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-preview5                
NuGet\Install-Package Sentry.Extensions.Logging -Version 0.0.1-preview5                
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-preview5" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Sentry.Extensions.Logging --version 0.0.1-preview5                
#r "nuget: Sentry.Extensions.Logging, 0.0.1-preview5"                
#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.
// Install Sentry.Extensions.Logging as a Cake Addin
#addin nuget:?package=Sentry.Extensions.Logging&version=0.0.1-preview5&prerelease

// Install Sentry.Extensions.Logging as a Cake Tool
#tool nuget:?package=Sentry.Extensions.Logging&version=0.0.1-preview5&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 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 (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 (6)

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

Repository Stars
bitfoundation/bitplatform
Build all of your apps using what you already know and love ❤️
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
Version Downloads Last updated
5.0.1 0 3 hours ago
5.0.0 126,336 21 days ago
5.0.0-alpha.1 1,341 a month ago
5.0.0-alpha.0 63 2 months ago
4.13.0 578,554 2 months ago
4.12.2 29,976 2 months ago
4.12.1 394,501 3 months ago
4.12.1-segv1 284 2 months ago
4.12.0 172,853 3 months ago
4.11.0 285,219 4 months ago
4.10.2 455,528 5 months ago
4.10.1 84,949 5 months ago
4.10.0 35,676 5 months ago
4.9.0 840,012 6 months ago
4.9.0-sync.collection.2 136 5 months ago
4.9.0-sync.collection.1 68 5 months ago
4.8.1 147,330 6 months ago
4.8.0 150,235 6 months ago
4.7.0 638,755 7 months ago
4.6.2 322,642 8 months ago
4.6.1 5,660 8 months ago
4.6.0 73,944 8 months ago
4.5.0 212,579 8 months ago
4.4.0 356,393 9 months ago
4.3.0 35,186 9 months ago
4.2.1 561,818 10 months ago
4.2.0 33,442 10 months ago
4.1.2 560,366 2/20/2024
4.1.1 91,773 2/14/2024
4.1.0 122,359 2/9/2024
4.0.3 23,531 2/7/2024
4.0.2 25,289 2/6/2024
4.0.1 28,812 2/5/2024
4.0.0 79,889 2/1/2024
4.0.0-beta.9 373 1/30/2024
4.0.0-beta.8 12,880 1/11/2024
4.0.0-beta.7 7,240 1/5/2024
4.0.0-beta.6 12,000 12/13/2023
4.0.0-beta.5 1,472 12/12/2023
4.0.0-beta.4 4,326 12/5/2023
4.0.0-beta.3 368 12/2/2023
4.0.0-beta.2 2,463 11/23/2023
4.0.0-beta.1 305 11/19/2023
4.0.0-beta.0 222 11/17/2023
4.0.0-alpha.0 1,880 11/9/2023
3.41.4 787,929 1/23/2024
3.41.3 1,066,555 11/29/2023
3.41.2 143,462 11/23/2023
3.41.1 46,872 11/22/2023
3.41.0 377,243 11/8/2023
3.40.1 530,073 10/12/2023
3.40.0 55,933 10/10/2023
3.40.0-beta.0 7,417 9/21/2023
3.39.1 505,159 9/12/2023
3.39.0 77,815 9/7/2023
3.38.0 7,159 9/6/2023
3.37.0 4,496 9/6/2023
3.36.0 254,191 8/22/2023
3.35.1 113,605 8/16/2023
3.35.0 97,196 8/8/2023
3.34.0 677,645 7/13/2023
3.33.1 711,830 6/13/2023
3.33.0 758,976 5/22/2023
3.32.0 12,501 5/22/2023
3.31.0 516,428 5/2/2023
3.30.0 400,417 4/11/2023
3.29.1 931,397 3/11/2023
3.29.0 128,884 3/6/2023
3.28.1 728,815 2/10/2023
3.28.0 43,433 2/8/2023
3.27.1 134,691 2/3/2023
3.27.0 81,756 2/1/2023
3.26.2 250,565 1/24/2023
3.26.1 177,560 1/17/2023
3.26.0 176,042 1/13/2023
3.25.0 689,702 12/23/2022
3.24.1 216,844 12/16/2022
3.24.0 1,256,284 11/18/2022
3.23.1 477,764 10/31/2022
3.23.0 44,400 10/27/2022
3.22.0 880,074 10/7/2022
3.21.0 1,003,085 9/2/2022
3.20.1 1,224,383 7/26/2022
3.20.0 57,768 7/22/2022
3.19.0 539,712 6/28/2022
3.18.0 235,504 6/15/2022
3.17.1 827,884 5/8/2022
3.17.0 101,364 5/3/2022
3.16.0 536,860 4/7/2022
3.15.0 609,857 3/15/2022
3.14.1 444,666 2/18/2022
3.14.0 131,666 2/14/2022
3.13.0 904,511 1/11/2022
3.12.3 336,196 12/19/2021
3.12.2 71,274 12/15/2021
3.12.1 222,138 12/6/2021
3.12.0 163,017 11/23/2021
3.12.0-alpha.1 4,528 11/7/2021
3.11.1 492,840 11/5/2021
3.11.0 129,646 11/2/2021
3.10.0 335,008 10/15/2021
3.9.4 368,390 9/29/2021
3.9.3 80,948 9/21/2021
3.9.2 111,355 9/10/2021
3.9.1 6,164 9/9/2021
3.9.0 163,418 8/27/2021
3.8.3 386,908 7/25/2021
3.8.2 73,722 7/17/2021
3.8.1 10,557 7/15/2021
3.8.0 106,779 7/14/2021
3.7.0 67,697 7/10/2021
3.6.1 122,573 7/2/2021
3.6.0 141,574 6/23/2021
3.6.0-alpha.2 635 6/18/2021
3.6.0-alpha.1 446 6/11/2021
3.5.0 316,135 6/7/2021
3.4.0 64,625 5/31/2021
3.4.0-beta.0 231 5/27/2021
3.3.5-beta.0 2,460 5/13/2021
3.3.4 488,600 4/26/2021
3.3.3 5,087 4/23/2021
3.3.2 21,876 4/23/2021
3.3.1 345,288 4/5/2021
3.3.0 29,518 4/3/2021
3.2.0 51,682 3/26/2021
3.1.0 318,584 3/10/2021
3.0.8 45,465 3/4/2021
3.0.7 115,904 2/20/2021
3.0.6 61,115 2/14/2021
3.0.5 43,873 2/9/2021
3.0.4 15,751 2/8/2021
3.0.3 52,646 2/3/2021
3.0.2 16,826 2/3/2021
3.0.1 91,928 1/29/2021
3.0.0 34,898 1/28/2021
3.0.0-beta.0 730 1/20/2021
3.0.0-alpha.11 405 1/15/2021
3.0.0-alpha.10 1,659 1/10/2021
3.0.0-alpha.9 1,949 12/29/2020
3.0.0-alpha.8 883 12/25/2020
3.0.0-alpha.7 2,874 12/16/2020
3.0.0-alpha.6 2,074 11/30/2020
3.0.0-alpha.5 3,382 11/21/2020
3.0.0-alpha.4 1,977 11/2/2020
3.0.0-alpha.3 276 10/29/2020
3.0.0-alpha.2 395 10/21/2020
3.0.0-alpha.1 351 10/16/2020
3.0.0-alpha.0 930 9/25/2020
2.2.0-alpha 1,906 9/19/2020
2.1.8 1,142,191 11/21/2020
2.1.6 1,157,380 8/20/2020
2.1.5 264,114 7/27/2020
2.1.5-beta 3,618 6/30/2020
2.1.4 386,527 6/25/2020
2.1.3 545,448 6/5/2020
2.1.2-beta5 4,776 5/19/2020
2.1.2-beta4 2,590 5/12/2020
2.1.2-beta3 1,619 5/7/2020
2.1.2-beta2 19,834 4/16/2020
2.1.2-beta 3,724 3/31/2020
2.1.1 976,283 3/19/2020
2.1.0 448,064 2/24/2020
2.0.3 141,584 2/12/2020
2.0.2 23,016 2/8/2020
2.0.1 91,444 1/28/2020
2.0.0 14,168 1/28/2020
2.0.0-beta8 22,887 1/15/2020
2.0.0-beta7 153,821 12/17/2019
2.0.0-beta6 100,259 10/31/2019
2.0.0-beta5 6,607 10/29/2019
2.0.0-beta4 71,591 9/4/2019
2.0.0-beta3 15,413 7/26/2019
2.0.0-beta2 4,257 6/9/2019
2.0.0-beta 2,548 6/4/2019
1.2.1-beta 1,251 5/27/2019
1.2.0 1,560,737 5/23/2019
1.1.3-beta4 1,448 5/15/2019
1.1.3-beta3 1,154 5/13/2019
1.1.3-beta2 2,719 3/28/2019
1.1.3-beta 4,092 2/11/2019
1.1.2 412,272 1/16/2019
1.1.2-beta 2,482 1/8/2019
1.1.1 17,077 1/5/2019
1.1.0 68,878 12/5/2018
1.0.1-beta5 1,738 12/5/2018
1.0.1-beta4 2,342 12/3/2018
1.0.1-beta3 14,154 11/15/2018
1.0.1-beta2 2,242 11/14/2018
1.0.1-beta 16,825 10/24/2018
1.0.0 204,358 10/2/2018
1.0.0-rc2 21,865 9/7/2018
1.0.0-rc 4,947 8/24/2018
0.0.1-preview5 5,747 8/5/2018
0.0.1-preview4 4,184 7/30/2018
0.0.1-preview3 5,671 7/17/2018
0.0.1-preview2 5,307 7/3/2018
0.0.1-preview1 1,863 6/28/2018