CascadeFlow.NServiceBus.Framework
1.5.0
dotnet add package CascadeFlow.NServiceBus.Framework --version 1.5.0
NuGet\Install-Package CascadeFlow.NServiceBus.Framework -Version 1.5.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="CascadeFlow.NServiceBus.Framework" Version="1.5.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CascadeFlow.NServiceBus.Framework" Version="1.5.0" />
<PackageReference Include="CascadeFlow.NServiceBus.Framework" />
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 CascadeFlow.NServiceBus.Framework --version 1.5.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: CascadeFlow.NServiceBus.Framework, 1.5.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 CascadeFlow.NServiceBus.Framework@1.5.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=CascadeFlow.NServiceBus.Framework&version=1.5.0
#tool nuget:?package=CascadeFlow.NServiceBus.Framework&version=1.5.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
CascadeFlow.NServiceBus.Framework
Zero-config telemetry for NServiceBus 8.x endpoints on .NET Framework 4.7.2+.
Installation
Install-Package CascadeFlow.NServiceBus.Framework
Quick Start
That's it! Once installed, the package automatically registers telemetry behaviors via INeedInitialization. No code changes required.
By default, telemetry is sent to http://localhost:5100.
Requirements
- .NET Framework 4.7.2 or later
- NServiceBus 8.x
For .NET Core / .NET 5+
Use the CascadeFlow.NServiceBus package instead, which targets modern .NET with NServiceBus 9.x.
Configuration
Environment Variables (Zero-Config)
| Variable | Default | Description |
|---|---|---|
CASCADE_COLLECTOR_URL |
http://localhost:5100 |
Collector API URL |
CASCADE_ENDPOINT_NAME |
Auto-detected | Endpoint identifier |
CASCADE_HOST_ID |
Machine name | Host/instance identifier |
CASCADE_ENABLED |
true |
Set to false to disable |
CASCADE_API_KEY |
(none) | API key for authentication (if collector requires it) |
Explicit Configuration
var endpointConfiguration = new EndpointConfiguration("MyEndpoint");
endpointConfiguration.UseCascade(options =>
{
options.CollectorUrl = "http://localhost:5100";
options.EndpointName = "MyEndpoint";
options.HostId = "instance-1";
options.IncludeHeaders = true;
options.BufferSize = 1000;
options.ApiKey = "csk_your-api-key"; // If collector requires authentication
});
Disable Telemetry
endpointConfiguration.DisableCascade();
Links
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET Framework | net472 is compatible. net48 was computed. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.7.2
- CascadeFlow.Core (>= 1.5.0)
- NServiceBus (>= 8.2.4)
- System.Net.Http (>= 4.3.4)
- System.Text.Json (>= 8.0.5)
- System.Threading.Channels (>= 8.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
See https://github.com/erik-mostert/Cascade/releases for release notes.