ResQueue.MassTransit 1.1.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package ResQueue.MassTransit --version 1.1.0
                    
NuGet\Install-Package ResQueue.MassTransit -Version 1.1.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="ResQueue.MassTransit" Version="1.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ResQueue.MassTransit" Version="1.1.0" />
                    
Directory.Packages.props
<PackageReference Include="ResQueue.MassTransit" />
                    
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 ResQueue.MassTransit --version 1.1.0
                    
#r "nuget: ResQueue.MassTransit, 1.1.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.
#:package ResQueue.MassTransit@1.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=ResQueue.MassTransit&version=1.1.0
                    
Install as a Cake Addin
#tool nuget:?package=ResQueue.MassTransit&version=1.1.0
                    
Install as a Cake Tool

ResQueue

ResQueue (pronounced /ˈrɛskjuː/) is a web-based UI management tool designed for SQL-based message transports. Currently, it offers seamless integration with MassTransit, and we're open to adding support for additional frameworks based on user feedback and demand.

Join our community on Discord for updates, support, and discussions.

All checked features are available in latest NuGet version.

Get Started

To set up ResQueue within your application, follow these simple steps:

dotnet add package ResQueue.MassTransit
var builder = WebApplication.CreateBuilder(args);

// MassTransit configuration...
builder.Services.AddOptions<SqlTransportOptions>().Configure(options =>
{
    options.ConnectionString = "your_connection_string";
});

// migrations

// ResQueue uses SqlTransportOptions credentials internaly
builder.Services.AddResQueue(o => o.SqlEngine = ResQueueSqlEngine.Postgres);

// The order of migrations is very important
builder.Services.AddPostgresMigrationHostedService();
builder.Services.AddResQueueMigrationsHostedService();

var app = builder.Build();

app.UseResQueue("resqueue", options =>
{
    // Highly recommended for production
    options.RequireAuthorization();
});

app.Run();

You can create a standalone web application and deploy it. Simply add ResQueue nuget package and initialize it. It does not need to be tightly integrated with your existing application. There is also docker image below.

Message Transformers

Transformers allow you to modify messages on the backend. They are used to generate useful data for the response, such as assembling links to your monitoring system or other relevant resources.

builder.Services.AddResQueue(opt =>
{
    // Option 1: Custom transformer class
    opt.AddTransformer<CustomTransformer>();
    // ...see below for implementation

    // Option 2: Inline message transformer
    opt.AppendAdditionalData = (messageDeliveryDto) =>
    {
        return new()
        {
            { "CurrentDateTime", DateTime.UtcNow.ToString() },
            { "Custom", "Data" },
            { "SimpleLink", @"<a href='https://www.youtube.com/watch?v=dQw4w9WgXcQ' target='_blank'>This is a link</a>" }
        };
    };
});

// Option 1: The custom transformer class
public class CustomTransformer(
    IHttpContextAccessor httpContextAccessor
) : AbstractMessageTransformer
{
    public override Task<MessageDeliveryDto> TransformAsync(MessageDeliveryDto message)
    {
        message.AdditionalData ??= new();

        // Example using HTTP origin header
        message.AdditionalData["HttpOrigin"] = httpContextAccessor.HttpContext.Request.Headers["Origin"];

        return Task.FromResult(message);
    }
}

Additional data will appear in next format:

<img width="500" alt="image" src="https://github.com/user-attachments/assets/54e5c085-2d59-452c-8d06-d38208332a4f" />

Docker support

Simplify your setup by running ResQueue in standalone mode with Docker. Get up and running effortlessly without additional configurations—just pull the container and you're ready to go.

docker run -it --rm -p 8080:8080 -e ResQueue:SqlEngine=Postgres -e SqlTransport:ConnectionString="Host=host.docker.internal;Database=DATABASE;Username=USERNAME;Password=PASSWORD;" ghcr.io/filipbekic01/resqueue

UI Preview

Here's a quick preview of the ResQueue user interface, providing you with a glimpse of what to expect.

<img width="1840" alt="image" src="https://github.com/user-attachments/assets/b60acf98-68d3-40be-a400-cf21889bc458"> <img width="1617" alt="image" src="https://github.com/user-attachments/assets/167b0ff2-0dea-4cec-94cf-8dab24ac9d40"> <img width="1617" alt="image" src="https://github.com/user-attachments/assets/d7f894a2-7021-485f-9147-52694fa00524"> <img width="1840" alt="image" src="https://github.com/user-attachments/assets/0ed693cb-49d6-40d1-85db-94daed81dad6">

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

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
2.0.1 6,387 12/1/2025
2.0.0 349 11/30/2025
1.5.0 180 11/29/2025
1.4.1 52,131 3/5/2025
1.4.0 3,770 2/12/2025
1.3.0 12,405 1/9/2025
1.2.0 1,088 1/5/2025
1.1.0 213 1/4/2025
1.0.11 711 12/18/2024
1.0.10 164 12/18/2024
1.0.9 3,000 11/24/2024
1.0.8 256 11/22/2024
1.0.7 480 11/12/2024
1.0.6 1,329 10/31/2024
1.0.5 131 10/31/2024
1.0.4 143 10/31/2024
1.0.3 140 10/30/2024
1.0.2 173 10/29/2024
1.0.1 182 10/29/2024
1.0.0 329 10/22/2024
1.0.0-beta.18 123 10/29/2024
1.0.0-beta.17 138 10/28/2024
1.0.0-beta.16 118 10/27/2024
1.0.0-beta.15 121 10/25/2024
1.0.0-beta.14 73 10/25/2024
1.0.0-beta.13 114 10/25/2024
1.0.0-beta.12 116 10/24/2024
1.0.0-beta.11 123 10/24/2024
1.0.0-beta.10 127 10/24/2024
1.0.0-beta.9 122 10/23/2024
1.0.0-beta.8 124 10/23/2024
1.0.0-beta.7 109 10/23/2024
1.0.0-beta.6 115 10/23/2024
1.0.0-beta.5 112 10/23/2024
1.0.0-beta.3 117 10/23/2024
1.0.0-beta.2 120 10/23/2024
1.0.0-beta.1 120 10/23/2024