Raygun.Blazor 1.0.0

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

// Install Raygun.Blazor as a Cake Tool
#tool nuget:?package=Raygun.Blazor&version=1.0.0                

Raygun for Blazor

Usage

Installation

NuGet Package manager

The best way to install Raygun is to use the NuGet package manager. Right-click on your project and select "Manage NuGet Packages....". Navigate to the Browse tab, then use the search box to find Raygun.Blazor and install it.

.NET Cli

To install the latest version:

dotnet add package Raygun.Blazor

Alternatively, you can specify a version tag to install a specific version of the package. See Raygun.Blazor NuGet Gallery page for information on available versions.

dotnet add package Raygun.Blazor --version x.y.z

Setup

See the packages Blazor WebAssembly, Blazor Server and MAUI Blazor Hybrid for specific setup instructions depending on the project type.

Raygun Settings

Raygun for Blazor uses the appsettings.json to load configuration settings.

RaygunSettings will be obtained from the configuration section name Raygun.

For example:

{
  "Raygun": {
    "ApiKey": "YOUR_API_KEY",
    "CatchUnhandledExceptions": "false",
    "LogLevel": "Debug"
  }
}

For all configuration values, check the RaygunSettings class under src/Raygun.Blazor/RaygunSettings.cs.

See Configuration in ASP.NET Core to learn more about managing application settings.

Initialize the client

Inject the RaygunBlazorClient in your code:

@inject RaygunBlazorClient raygunClient;

And call to raygunClient.InitializeAsync() at least once.

This method should be called as early as possible in the course of using the app. The best place to do it is inside the OnAfterRenderAsync method of the main layout page. However, it will also be called automatically before sending any exceptions, just in case.

Recording an error

To send an exception to Raygun call to raygunClient.RecordExceptionAsync(...)

This method accepts the following arguments:

  • ex: The Exception to send back to Raygun.
  • userDetails: Optional. Attach user details to exception, takes priority over IRaygunUserProvider.
  • tags: Optional. User-specified tags that should be applied to the error.
  • userCustomData: Optional. Any custom data that you like sent with the report to assist with troubleshooting.
  • cancellationToken: Optional. A CancellationToken to allow you to cancel the current request, if necessary.

Recording a breadcrumb

Records a Breadcrumb to help you track what was going on in your application before an error occurred.

Call to raygunClient.RecordBreadcrumb(...);

This method accepts the following arguments:

  • message: The message you want to record for this Breadcrumb.
  • type: The BreadcrumbType for the message. Defaults to BreadcrumbType.Manual.
  • category: A custom value used to arbitrarily group this Breadcrumb.
  • customData: Any custom data you want to record about application state when the Breadcrumb was recorded.

Attaching user details

Raygun for Blazor provides two ways to attach user details to error reports:

  1. Provide UserDetails in the RecordExceptionAsync method call.
  2. Implement a IRaygunUserProvider.
User details class

The following properties can be provided as user details:

  • UserId: Unique identifier for the user is the user identifier.
  • IsAnonymous: Flag indicating if the user is anonymous or not.
  • Email: User's email address.
  • FullName: User's full name.
  • FirstName: User's first name (what you would use if you were emailing them - "Hi {{firstName}}, ...")
  • DeviceId: Device unique identifier. Useful if sending errors from a mobile device.

All properties are strings except isAnonymous, which is a boolean. As well, they are all optional.

User details in RecordExceptionAsync

The simplest way to attach user details to an error report, is to do it when calling to RecordExceptionAsync.

Pass a UserDetails object to the method call:

var userDetails = new UserDetails() { Email = "test@example.com", FullName = "Test User", UserId = "123456" };

await RaygunClient.RecordExceptionAsync(ex, userDetails);
Implementing IRaygunUserProvider

Providing an instance of IRaygunUserProvider to the Raygun Blazor client allows you to attach user details also to errors reported automatically, for example, captured unhandled exceptions or exceptions from the JavaScript layer.

Implement an IRaygunUserProvider, for example:

public class MyUserProvider : IRaygunUserProvider
{
    public Task<UserDetails?> GetCurrentUser()
    {
        return Task.FromResult(new UserDetails());
    }
}

And inject it into the Raygun Blazor client:

builder.Services.AddSingleton<IRaygunUserProvider, MyUserProvider>();

For a complete example on how to implement a IRaygunUserProvider with the AuthenticationStateProvider check the example project file src/Raygun.Samples.Blazor.WebAssembly/Program.cs.

Background processing

You can enable a throttled background message processor for the Raygun provider by setting the UseBackgroundQueue to true.

{
  "Raygun": {
    "UseBackgroundQueue": true
  }
}

Background processing is disabled by default.

You can adjust the following background processor settings as well:

  • BackgroundMessageQueueMax to set the maximum queue size.
  • BackgroundMessageWorkerCount to set the maximum number of workers.
  • BackgroundMessageWorkerBreakpoint to set a threshold on when a new worker will be added.

Check the RaygunSettings class for a complete documentation of these parameters and their default values.

Modifying or cancelling requests

The RaygunClient exposes the OnBeforeSend event listener, which allows you to modify or cancel error message requests before they are sent to Raygun.

To cancel sending a request, set the Cancel property to false inside your listener:

RaygunClient.OnBeforeSend += (sender, args) =>
{
  // Example of how to cancel sending a message to Raygun
  if (args.Request.Details.Error.Message == "Cancel me")
  {
    // If the error message is "Cancel me"
    // then cancel the send
    args.Cancel = true;
  }
}

As well, you can modify the Request payload:

RaygunClient.OnBeforeSend += (sender, args) =>
{
  args.Request.Details.Error.Message = "Changed message";
};

Offline storage configuration

Raygun for Blazor supports storing error reports when they can't be sent, for example, if the communication between the server and Raygun is interrupted.

You can enable offline storage support by setting the UseOfflineStore to true.

{
  "Raygun": {
    "UseOfflineStore": true
  }
}

Offline storage is disabled by default.

You can adjust the following offline store settings as well:

  • DirectoryName to set the folder to store crash reports, relative to the system local application data.
  • MaxOfflineFiles to set the maximum number of stored reports, defaults to 50.

For example:

{
  "Raygun": {
    "UseOfflineStore": true,
    "DirectoryName": "MyApp",
    "MaxOfflineFiles": 100
  }
}

With this configuration, Raygun will store a maximum of 100 Raygun offline reports under C:\Users\<USER>\AppData\Local\MyApp.

Internal logger

Raygun for Blazor uses an internal logger to help facilitate the integration of the package. The default log level is "Warning". To completely disable the internal logger, set the "LogLevel" setting to "None".

For example:

{
  "Raygun": {
    "LogLevel": "None"
  }
}

For all configuration values, check the RaygunLogLevel enum under src/Raygun.Blazor/Logging/RaygunLogLevel.cs.

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (3)

Showing the top 3 NuGet packages that depend on Raygun.Blazor:

Package Downloads
Raygun.Blazor.WebAssembly

Raygun's Crash Reporting extension for Blazor WebAssembly

Raygun.Blazor.Server

Raygun's Crash Reporting extension for Blazor Server

Raygun.Blazor.Maui

Raygun's Crash Reporting extension for MAUI Blazor Hybrid apps

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 40 9/27/2024
0.0.2 96 8/22/2024
0.0.1 86 8/22/2024