LF.RequestSky 1.1.0

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

// Install LF.RequestSky as a Cake Tool
#tool nuget:?package=LF.RequestSky&version=1.1.0

To record your web application visit history and api request history!

How to use it:

0. dependance:EF,JQuery,Bootstrap

1. Open your web root(ex: asp.net mvc is open Global.asax.cs)

2. to add this code as bellow
using LF.RequestSky;

protected void Application_Start()
{
           AreaRegistration.RegisterAllAreas();
           FilterConfig.RegisterGlobalFilters(GlobalFilters.Filters);
           RouteConfig.RegisterRoutes(RouteTable.Routes);
           BundleConfig.RegisterBundles(BundleTable.Bundles);

           RequestListenner listenner = new RequestListenner("your project namespace", "dbcontext name", "table schema"=dbo);
           var res = listenner.AddInAsync().Result;
}
void Application_EndRequest(object sender, EventArgs e)
{
           var t = RequestListenner.AddRequestAsync(Request, Response);
}

3. then you can get your datas from this link ---> http://your server/application name/RequestSky/

1.0.2 ---> update UI and can export as Excel
1.1.0 ---> Add Request chart

Product Versions
.NET Framework net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 net481
Compatible target framework(s)
Additional computed target framework(s)
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
1.1.3 228 10/28/2022
1.1.2 223 10/26/2022
1.1.0 255 10/20/2022
1.0.2 230 10/19/2022

To record your web application visit history and api request history!