Moesif.Middleware
1.3.12
See the version list below for details.
dotnet add package Moesif.Middleware --version 1.3.12
NuGet\Install-Package Moesif.Middleware -Version 1.3.12
<PackageReference Include="Moesif.Middleware" Version="1.3.12" />
paket add Moesif.Middleware --version 1.3.12
#r "nuget: Moesif.Middleware, 1.3.12"
// Install Moesif.Middleware as a Cake Addin #addin nuget:?package=Moesif.Middleware&version=1.3.12 // Install Moesif.Middleware as a Cake Tool #tool nuget:?package=Moesif.Middleware&version=1.3.12
Moesif Middleware for .NET
Middleware SDK that captures incoming or outgoing API calls from .NET apps and sends to Moesif API Analytics.
How to install
Install the Nuget Package:
Install-Package Moesif.Middleware
Jump to installation for your specific framework:
Net Core installation
The below installation is intended for .NET 5 or .NET Core 2.1 and higher. For .NET Framework, go to .NET Framework installation.
In Startup.cs
file in your project directory, please add app.UseMiddleware<MoesifMiddleware>(moesifOptions);
to the pipeline.
To collect the most context, it is recommended to add the middleware after other middleware such as SessionMiddleware and AuthenticationMiddleware.
Add the middleware to your application:
using Moesif.Middleware;
public class Startup {
// moesifOptions is an object of type Dictionary<string, object> which holds configuration options for your application.
Dictionary<string, object> moesifOptions = new Dictionary<string, object>
{
{"ApplicationId", "Your Moesif Application Id"},
{"LogBody", true},
...
# For other options see below.
};
public void ConfigureServices(IServiceCollection services)
{
services.AddMvc();
}
public void Configure(IApplicationBuilder app, IHostingEnvironment env)
{
app.UseMiddleware<MoesifMiddleware>(moesifOptions);
app.UseMvc();
}
}
Your Moesif Application Id can be found in the Moesif Portal. After signing up for a Moesif account, your Moesif Application Id will be displayed during the onboarding steps.
You can always find your Moesif Application Id at any time by logging into the Moesif Portal, click on the top-right menu, and then clicking Installation.
.NET Core example
Checkout the examples using .NET Core 2.0 and .NET Core 3.0
NET Framework installation
The below installation is intended for .NET Framework 4.5 and higher. For .NET 5 or .NET 2.1 and higher, go to .Net Core / .NET 5 installation.
In Startup.cs
file in your project directory, please add app.Use<MoesifMiddleware>(moesifOptions);
to the pipeline.
To collect the most context, it is recommended to add the middleware after other middleware such as SessionMiddleware and AuthenticationMiddleware.
Add the middleware to your application:
using Moesif.Middleware;
public class Startup {
// moesifOptions is an object of type Dictionary<string, object> which holds configuration options for your application.
Dictionary<string, object> moesifOptions = new Dictionary<string, object>
{
{"ApplicationId", "Your Moesif Application Id"},
{"LogBody", true},
...
# For other options see below.
};
public void Configuration(IAppBuilder app)
{
app.Use<MoesifMiddleware>(moesifOptions);
}
}
Your Moesif Application Id can be found in the Moesif Portal. After signing up for a Moesif account, your Moesif Application Id will be displayed during the onboarding steps.
You can always find your Moesif Application Id at any time by logging into the Moesif Portal, click on the top-right menu, and then clicking Installation.
Add OWIN dependencies
IIS integrated pipeline
If you're running your .NET app on IIS (or Visual Studio IIS Express) using integrated mode (most common), you will have to install the OWIN SystemWeb package if not done so already: Review OWIN Middleware in the IIS integrated pipeline for more info.
Install-Package Microsoft.Owin.Host.SystemWeb
Moesif does not support IIS running in Classic mode (Backwards compatibility for IIS 6.0). Unless your app predates IIS 6.0 and requires classic mode, you should switch to integrated mode.
{: .notice--primary}
Self-Host executable
While uncommon, if your application is a self-hosted executable that does not run on IIS, you may have to install the SelfHost package if not done so already:
For .NET Web API applications:
Install-Package Microsoft.AspNet.WebApi.OwinSelfHost
For all other .NET applications:
Install-Package Microsoft.Owin.SelfHost -Pre
.NET Framework Examples
The following examples are available for .NET Framework with Moesif:
- .NET Framework Example using .NET Framework 4.6.1 and IIS
- .NET Framework SelfHost Example using .NET Framework 4.6.1 (SelfHost is uncommon)
Troubleshooting
Legacy website broken/Can I activate on API only?
If your .NET app is a traditional monolith consisting of both an API and website, you can choose to activate the middleware
on just your API only. Some legacy apps may have delicate and custom middleware chains.
An easy way to do that is via MapWhen
:
app.MapWhen(context => context.Request.Path.ToString().Contains("/api"), appBuilder =>
{
appBuilder.Use<MoesifMiddleware>(new System.Collections.Generic.Dictionary<string, object> {
{"ApplicationId", "Your Moesif Application Id"}
});
});
The response body not logged
For .NET Core and .NET 5, you will need to set the following option to ensure the response body is logged: More info on this workaround.
.ConfigureKestrel((context, options) => {
options.AllowSynchronousIO = true;
});
How to test
- Manually clone the git repo
- From terminal/cmd navigate to the root directory of the middleware.
- Invoke 'Install-Package Moesif.Middleware'
- Add your own application id to 'Moesif.Middleware.Test/MoesifMiddlewareTest.cs'. You can find your Application Id from Moesif Dashboard → Top Right Menu → Installation
- The tests are contained in the Moesif.Middleware.Test project. In order to invoke these test cases, you will need NUnit 3.0 Test Adapter Extension for Visual Studio. Once the SDK is complied, the test cases should appear in the Test Explorer window. Here, you can click Run All to execute these test cases.
Tested versions
Moesif has validated Moesif.Middleware
against the following framework.
Framework Version | |
---|---|
.NET | 5.0 |
.NET Core | 2.0-3.0 |
.NET Framework MVC | 4.5-4.7 |
.NET Framework Web API | 4.5-4.7 |
.NET Framework Web API SelfHost | 4.5-4.7 |
Other integrations
To view more documentation on integration options, please visit the Integration Options Documentation.
Product | Versions 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 | net45 is compatible. net451 was computed. net452 was computed. net46 was computed. 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. |
-
.NETFramework 4.5
- Microsoft.Owin (>= 3.1.0)
- Moesif.Api (>= 2.0.3)
- Newtonsoft.Json (>= 9.0.1)
- System.IdentityModel.Tokens.Jwt (>= 6.8.0)
- System.ValueTuple (>= 4.5.0)
-
.NETStandard 2.0
- Microsoft.AspNetCore.Http (>= 2.1.0)
- Microsoft.AspNetCore.Http.Extensions (>= 2.1.0)
- Moesif.Api (>= 2.0.3)
- Newtonsoft.Json (>= 9.0.1)
- System.IdentityModel.Tokens.Jwt (>= 6.8.0)
- System.ValueTuple (>= 4.5.0)
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 |
---|---|---|
3.0.11 | 39 | 11/15/2024 |
3.0.10 | 50 | 11/13/2024 |
3.0.9 | 52 | 11/12/2024 |
1.5.2 | 38 | 11/15/2024 |
1.5.1 | 85 | 11/8/2024 |
1.5.0 | 69 | 11/8/2024 |
1.4.9 | 252 | 8/30/2024 |
1.4.8 | 841 | 6/6/2024 |
1.4.7 | 250 | 6/4/2024 |
1.4.6 | 106 | 5/29/2024 |
1.4.5 | 139 | 5/23/2024 |
1.4.4 | 107 | 5/21/2024 |
1.4.3 | 2,552 | 11/8/2023 |
1.4.2 | 112 | 11/7/2023 |
1.4.1 | 119 | 11/3/2023 |
1.4.0 | 155 | 10/31/2023 |
1.3.25 | 12,622 | 8/8/2023 |
1.3.24 | 220 | 7/24/2023 |
1.3.23 | 180 | 6/13/2023 |
1.3.22 | 163 | 6/10/2023 |
1.3.21 | 183 | 6/10/2023 |
1.3.20 | 3,735 | 10/6/2022 |
1.3.19 | 403 | 10/5/2022 |
1.3.18 | 409 | 10/5/2022 |
1.3.17 | 486 | 9/13/2022 |
1.3.16 | 452 | 9/7/2022 |
1.3.15 | 448 | 9/1/2022 |
1.3.14 | 418 | 8/30/2022 |
1.3.13 | 2,940 | 4/15/2021 |
1.3.12 | 426 | 4/1/2021 |
1.3.11 | 405 | 3/26/2021 |
1.3.10 | 528 | 3/18/2021 |
1.3.8 | 476 | 3/12/2021 |
1.3.7 | 442 | 2/9/2021 |
1.3.5 | 448 | 2/4/2021 |
1.3.4 | 416 | 2/2/2021 |
1.3.3 | 421 | 1/15/2021 |
1.3.2 | 484 | 1/9/2021 |
1.3.1 | 624 | 6/15/2020 |
1.3.0 | 499 | 6/15/2020 |
1.2.1 | 485 | 6/11/2020 |
1.1.6 | 557 | 6/9/2020 |
1.1.5 | 491 | 6/8/2020 |
1.1.4 | 525 | 6/8/2020 |
1.1.3 | 806 | 1/7/2020 |
1.1.2 | 594 | 12/19/2019 |
1.1.1 | 588 | 12/14/2019 |
1.1.0 | 566 | 11/15/2019 |
1.0.3 | 585 | 10/22/2019 |
1.0.2 | 593 | 8/27/2019 |
1.0.1 | 705 | 8/23/2019 |
0.2.2 | 603 | 6/26/2019 |
0.2.1 | 605 | 6/18/2019 |
0.2.0 | 618 | 5/30/2019 |
0.1.7 | 601 | 3/23/2019 |
0.1.6 | 659 | 3/1/2019 |
0.1.5 | 636 | 2/25/2019 |
0.1.4 | 616 | 2/25/2019 |
0.1.3 | 667 | 2/11/2019 |
0.1.1 | 752 | 11/19/2018 |
0.1.0 | 786 | 11/17/2018 |