Sentry.Extensions.Logging 0.0.1-preview1

The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org. 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.
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.
// Install Sentry.Extensions.Logging as a Cake Addin
#addin nuget:?package=Sentry.Extensions.Logging&version=0.0.1-preview1&prerelease

// Install Sentry.Extensions.Logging as a Cake Tool
#tool nuget:?package=Sentry.Extensions.Logging&version=0.0.1-preview1&prerelease

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. 
.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 (12)

Showing the top 5 NuGet packages that depend on Sentry.Extensions.Logging:

Package Downloads
Sentry.AspNetCore The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Official ASP.NET Core integration for Sentry - Open-source error tracking that helps developers monitor and fix crashes in real time.

DisCatSharp The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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 The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

Official MAUI integration for Sentry - Open-source error tracking that helps developers monitor and fix crashes in real time.

Sentry.Azure.Functions.Worker The ID prefix of this package has been reserved for one of the owners of this package by NuGet.org.

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

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

Repository Stars
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
4.8.0 2,792 6/26/2024
4.7.0 265,061 5/27/2024
4.6.2 136,357 5/14/2024
4.6.1 3,625 5/14/2024
4.6.0 40,115 5/9/2024
4.5.0 98,487 4/30/2024
4.4.0 202,510 4/12/2024
4.3.0 24,758 4/10/2024
4.2.1 388,564 3/12/2024
4.2.0 29,041 3/11/2024
4.1.2 355,793 2/20/2024
4.1.1 60,553 2/14/2024
4.1.0 87,949 2/9/2024
4.0.3 17,971 2/7/2024
4.0.2 16,133 2/6/2024
4.0.1 22,109 2/5/2024
4.0.0 50,608 2/1/2024
4.0.0-beta.9 332 1/30/2024
4.0.0-beta.8 9,818 1/11/2024
4.0.0-beta.7 7,178 1/5/2024
4.0.0-beta.6 9,063 12/13/2023
4.0.0-beta.5 1,022 12/12/2023
4.0.0-beta.4 4,188 12/5/2023
4.0.0-beta.3 331 12/2/2023
4.0.0-beta.2 2,399 11/23/2023
4.0.0-beta.1 264 11/19/2023
4.0.0-beta.0 183 11/17/2023
4.0.0-alpha.0 887 11/9/2023
3.41.4 457,941 1/23/2024
3.41.3 799,568 11/29/2023
3.41.2 106,475 11/23/2023
3.41.1 32,327 11/22/2023
3.41.0 307,775 11/8/2023
3.40.1 433,186 10/12/2023
3.40.0 50,631 10/10/2023
3.40.0-beta.0 7,297 9/21/2023
3.39.1 435,687 9/12/2023
3.39.0 58,321 9/7/2023
3.38.0 6,670 9/6/2023
3.37.0 3,892 9/6/2023
3.36.0 205,020 8/22/2023
3.35.1 93,401 8/16/2023
3.35.0 90,270 8/8/2023
3.34.0 549,503 7/13/2023
3.33.1 588,539 6/13/2023
3.33.0 656,851 5/22/2023
3.32.0 11,786 5/22/2023
3.31.0 443,425 5/2/2023
3.30.0 347,500 4/11/2023
3.29.1 838,654 3/11/2023
3.29.0 114,888 3/6/2023
3.28.1 674,165 2/10/2023
3.28.0 39,050 2/8/2023
3.27.1 115,618 2/3/2023
3.27.0 78,078 2/1/2023
3.26.2 215,909 1/24/2023
3.26.1 154,154 1/17/2023
3.26.0 146,449 1/13/2023
3.25.0 622,348 12/23/2022
3.24.1 187,525 12/16/2022
3.24.0 1,040,832 11/18/2022
3.23.1 443,250 10/31/2022
3.23.0 41,841 10/27/2022
3.22.0 735,009 10/7/2022
3.21.0 883,009 9/2/2022
3.20.1 1,116,231 7/26/2022
3.20.0 56,583 7/22/2022
3.19.0 500,802 6/28/2022
3.18.0 214,789 6/15/2022
3.17.1 784,969 5/8/2022
3.17.0 97,581 5/3/2022
3.16.0 514,827 4/7/2022
3.15.0 582,728 3/15/2022
3.14.1 422,423 2/18/2022
3.14.0 122,088 2/14/2022
3.13.0 855,351 1/11/2022
3.12.3 320,357 12/19/2021
3.12.2 66,729 12/15/2021
3.12.1 201,693 12/6/2021
3.12.0 155,577 11/23/2021
3.12.0-alpha.1 4,058 11/7/2021
3.11.1 456,146 11/5/2021
3.11.0 108,699 11/2/2021
3.10.0 300,991 10/15/2021
3.9.4 331,654 9/29/2021
3.9.3 79,472 9/21/2021
3.9.2 105,695 9/10/2021
3.9.1 5,941 9/9/2021
3.9.0 154,363 8/27/2021
3.8.3 373,245 7/25/2021
3.8.2 71,950 7/17/2021
3.8.1 10,385 7/15/2021
3.8.0 100,631 7/14/2021
3.7.0 64,427 7/10/2021
3.6.1 118,746 7/2/2021
3.6.0 137,926 6/23/2021
3.6.0-alpha.2 595 6/18/2021
3.6.0-alpha.1 403 6/11/2021
3.5.0 303,546 6/7/2021
3.4.0 63,848 5/31/2021
3.4.0-beta.0 198 5/27/2021
3.3.5-beta.0 2,424 5/13/2021
3.3.4 471,626 4/26/2021
3.3.3 4,902 4/23/2021
3.3.2 21,769 4/23/2021
3.3.1 338,133 4/5/2021
3.3.0 28,423 4/3/2021
3.2.0 49,975 3/26/2021
3.1.0 304,152 3/10/2021
3.0.8 44,808 3/4/2021
3.0.7 112,276 2/20/2021
3.0.6 57,758 2/14/2021
3.0.5 43,046 2/9/2021
3.0.4 15,505 2/8/2021
3.0.3 51,913 2/3/2021
3.0.2 14,968 2/3/2021
3.0.1 87,525 1/29/2021
3.0.0 30,651 1/28/2021
3.0.0-beta.0 696 1/20/2021
3.0.0-alpha.11 371 1/15/2021
3.0.0-alpha.10 1,618 1/10/2021
3.0.0-alpha.9 1,907 12/29/2020
3.0.0-alpha.8 845 12/25/2020
3.0.0-alpha.7 2,836 12/16/2020
3.0.0-alpha.6 1,888 11/30/2020
3.0.0-alpha.5 3,346 11/21/2020
3.0.0-alpha.4 1,921 11/2/2020
3.0.0-alpha.3 240 10/29/2020
3.0.0-alpha.2 360 10/21/2020
3.0.0-alpha.1 312 10/16/2020
3.0.0-alpha.0 896 9/25/2020
2.2.0-alpha 1,798 9/19/2020
2.1.8 1,088,438 11/21/2020
2.1.6 1,124,785 8/20/2020
2.1.5 258,673 7/27/2020
2.1.5-beta 3,551 6/30/2020
2.1.4 371,922 6/25/2020
2.1.3 526,859 6/5/2020
2.1.2-beta5 4,726 5/19/2020
2.1.2-beta4 2,528 5/12/2020
2.1.2-beta3 1,543 5/7/2020
2.1.2-beta2 19,619 4/16/2020
2.1.2-beta 3,670 3/31/2020
2.1.1 951,983 3/19/2020
2.1.0 440,561 2/24/2020
2.0.3 134,072 2/12/2020
2.0.2 22,929 2/8/2020
2.0.1 85,932 1/28/2020
2.0.0 12,741 1/28/2020
2.0.0-beta8 22,828 1/15/2020
2.0.0-beta7 152,993 12/17/2019
2.0.0-beta6 99,935 10/31/2019
2.0.0-beta5 6,546 10/29/2019
2.0.0-beta4 71,034 9/4/2019
2.0.0-beta3 15,350 7/26/2019
2.0.0-beta2 4,171 6/9/2019
2.0.0-beta 2,481 6/4/2019
1.2.1-beta 1,162 5/27/2019
1.2.0 1,537,756 5/23/2019
1.1.3-beta4 1,382 5/15/2019
1.1.3-beta3 1,101 5/13/2019
1.1.3-beta2 2,656 3/28/2019
1.1.3-beta 4,025 2/11/2019
1.1.2 403,470 1/16/2019
1.1.2-beta 2,414 1/8/2019
1.1.1 16,931 1/5/2019
1.1.0 66,545 12/5/2018
1.0.1-beta5 1,650 12/5/2018
1.0.1-beta4 2,273 12/3/2018
1.0.1-beta3 14,100 11/15/2018
1.0.1-beta2 2,172 11/14/2018
1.0.1-beta 16,621 10/24/2018
1.0.0 200,921 10/2/2018
1.0.0-rc2 21,707 9/7/2018
1.0.0-rc 4,879 8/24/2018
0.0.1-preview5 5,678 8/5/2018
0.0.1-preview4 4,119 7/30/2018
0.0.1-preview3 5,599 7/17/2018
0.0.1-preview2 5,239 7/3/2018
0.0.1-preview1 1,800 6/28/2018