Mindscape.Raygun4Net.NetCore 6.4.3

There is a newer version of this package available.
See the version list below for details.
dotnet add package Mindscape.Raygun4Net.NetCore --version 6.4.3
NuGet\Install-Package Mindscape.Raygun4Net.NetCore -Version 6.4.3
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="Mindscape.Raygun4Net.NetCore" Version="6.4.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Mindscape.Raygun4Net.NetCore --version 6.4.3
#r "nuget: Mindscape.Raygun4Net.NetCore, 6.4.3"
#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 Mindscape.Raygun4Net.NetCore as a Cake Addin
#addin nuget:?package=Mindscape.Raygun4Net.NetCore&version=6.4.3

// Install Mindscape.Raygun4Net.NetCore as a Cake Tool
#tool nuget:?package=Mindscape.Raygun4Net.NetCore&version=6.4.3

Raygun4Net.NetCore - Raygun Provider for .NET 6+ projects

Where is my app API key?

When you create a new application on your Raygun dashboard, your app API key is displayed within the instructions page. You can also find the API key by clicking the "Application Settings" button in the side bar of the Raygun dashboard.

Namespace

The main classes can be found in the Mindscape.Raygun4Net namespace.

Installation

Install the Mindscape.Raygun4Net.NetCore NuGet package into your project. You can either use the below dotnet CLI command, or the NuGet management GUI in the IDE you use.

dotnet add package Mindscape.Raygun4Net.NetCore

Create an instance of RaygunClient by passing your app API key to the constructor, and hook it up to the unhandled exception delegate. This is typically done in Program.cs or the main method.

using Mindscape.Raygun4Net;

private static RaygunClient _raygunClient = new RaygunClient("paste_your_api_key_here");

AppDomain.CurrentDomain.UnhandledException += (object sender, UnhandledExceptionEventArgs e) =>
  _raygunClient.Send(e.ExceptionObject as Exception);

Add some temporary code to throw an exception and manually send it to Raygun.

try
{
  ...
}
catch (Exception e)
{
  _raygunClient.SendInBackground(e);
} 

Manually sending exceptions

The above instructions will setup Raygun4Net to automatically detect and send all unhandled exceptions. Sometimes you may want to send exceptions manually, such as handled exceptions from within a try/catch block.

RaygunClient provides Send and SendInBackground methods for manually sending to Raygun. It's important to note that SendInBackground should only be used for handled exceptions, rather than exceptions that will cause the application to crash - otherwise the application will most likely shutdown all threads before Raygun is able to finish sending.

Additional configuration options and features

Modify or cancel message

On a RaygunClient instance, attach an event handler to the SendingMessage event. This event handler will be called just before the RaygunClient sends an exception - either automatically or manually. The event arguments provide the RaygunMessage object that is about to be sent. One use for this event handler is to add or modify any information on the RaygunMessage. Another use for this method is to identify exceptions that you never want to send to raygun, and if so, set e.Cancel = true to cancel the send.

Strip wrapper exceptions

If you have common outer exceptions that wrap a valuable inner exception which you'd prefer to group by, you can specify these by using the multi-parameter method:

RaygunClient.AddWrapperExceptions(typeof(TargetInvocationException));

In this case, if a TargetInvocationException occurs, it will be removed and replaced with the actual InnerException that was the cause. Note that TargetInvocationException is already added to the wrapper exception list; you do not have to add this manually. This method is useful if you have your own custom wrapper exceptions, or a framework is throwing exceptions using its own wrapper.

Unique (affected) user tracking

There are properties named User and UserInfo on RaygunClient which you can set to provide user info such as ID and email address This allows you to see the count of affected users for each error in the Raygun dashboard. If you provide an email address, and the user has an associated Gravatar, you will see their avatar in the error instance page.

Make sure to abide by any privacy policies that your company follows when using this feature.

Version numbering

You can provide an application version value by setting the ApplicationVersion property of the RaygunClient (in the format x.x.x.x where x is a positive integer).

Tags and custom data

When sending exceptions manually, you can also send an arbitrary list of tags (an array of strings), and a collection of custom data (a dictionary of any objects). This can be done using the various Send and SendInBackground method overloads.


See the Raygun docs for more detailed instructions on how to use this provider.

Product Compatible and additional computed target framework versions.
.NET net5.0 is compatible.  net5.0-windows was computed.  net6.0 is compatible.  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 netcoreapp1.0 was computed.  netcoreapp1.1 was computed.  netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard1.6 is compatible.  netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.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 tizen30 was computed.  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 (6)

Showing the top 5 NuGet packages that depend on Mindscape.Raygun4Net.NetCore:

Package Downloads
Serilog.Sinks.Raygun

Serilog event sink that writes to the Raygun service.

Mindscape.Raygun4Net.NetCore.Signed

Package is deprecated, please use `Mindscape.Raygun4Net.NetCore` which is signed.

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

A library to make things cross-platform that should be.

Raygun4Maui

Raygun's Crash Reporting Provider for MAUI .NET

AspNetCore.AutoHealthCheck.Raygun

Auto Health Check integration for Raygun.

GitHub repositories (1)

Showing the top 1 popular GitHub repositories that depend on Mindscape.Raygun4Net.NetCore:

Repository Stars
reactiveui/splat
Makes things cross-platform
Version Downloads Last updated
10.1.1 2,267 3/27/2024
10.1.1-pre-1 80 3/20/2024
10.1.0 1,071 3/18/2024
10.1.0-pre-2 64 3/18/2024
10.1.0-pre-1 70 3/15/2024
10.0.0 645 3/13/2024
10.0.0-pre-6 74 3/12/2024
10.0.0-pre-5 79 3/12/2024
10.0.0-pre-4 78 2/23/2024
10.0.0-pre-2 66 2/23/2024
10.0.0-pre-1 85 2/22/2024
9.0.4 2,241 3/3/2024
9.0.4-pre-1 66 2/29/2024
9.0.3 609 2/27/2024
9.0.2 772 2/22/2024
9.0.2-pre-1 65 2/19/2024
9.0.1 3,149 2/8/2024
9.0.0-pre3 75 2/7/2024
9.0.0-pre-1 68 2/2/2024
8.3.0-pre1 64 1/26/2024
8.1.0-pre6 2,058 1/14/2024
8.1.0-pre5 65 1/14/2024
8.1.0-pre3 97 1/9/2024
8.1.0-pre2 55 1/9/2024
8.1.0-pre1 297 12/21/2023
8.0.1 12,371 11/28/2023
8.0.1-pre-1 98 11/27/2023
8.0.0 16,106 11/14/2023
8.0.0-pre-1 5,466 11/9/2023
7.1.0 18,797 10/9/2023
7.1.0-pre-1 100 9/22/2023
7.0.0 7,089 9/12/2023
6.7.0 10,048 8/28/2023
6.7.0-pre2 127 8/21/2023
6.4.3 172,523 2/28/2022
6.4.2 464 2/23/2022
6.4.1 111,558 9/2/2021
6.3.1 472,118 8/17/2020
6.3.0 9,064 6/30/2020
6.2.1-beta1 464 2/13/2020
6.2.0 127,274 10/9/2019
6.0.1 86,900 10/4/2018
6.0.0 11,281 5/28/2018
5.5.4 12,269 4/27/2018