Kaizen.Mvc.Trace 1.0.2

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

// Install Kaizen.Mvc.Trace as a Cake Tool
#tool nuget:?package=Kaizen.Mvc.Trace&version=1.0.2

This is a generic and plugable tool, developer can add this tool in any existing MVC application. It can be removed any time, even it can be disabled anytime by just setting in appsettings.

By use of this tool, developer will find average time, minimum time and maximum time of each action method.

This tools help you to find out action methods which is taking highest time to execute its life cycle, so that developer can focus on those aciton methods. It may happen in a page can have more than one ajax calls. It will also help you to give sum of particular action method.

Just add following configuration into Web.config to see consolidate report of execution time taken by each action methods.

<system.webServer> <handlers> <add name="kaizen" verb="*" path="kaizen.axd" type="Kaizen.Mvc.Trace.Handler"/> </handlers> </system.webServer>

=================== After adding configuration given above, user is able to see cosolidate report on Url like http://{domainname}/kaizen.axd

For example :

http://localhost:54004/Kaizen.axd

By default execution time will be displayed in Milliseconds. Hit Url with followig query string if you want to see execution time in Ticks format.

http://localhost:54004/Kaizen.axd?reporttype=Ticks

Following configuration is optional. It is only required to add in appsettings if you want to disable Kaizen.Mvc.Trace.

<appSettings> <add key="DisableKaizenMvcTrace" value="false"/> </appSettings>

=============== Notes : Right now this tool holds maximum 500 hundred request to show consoidate report. Developer will get report based on latest 500 requests. It holds like first in first out after havnig collection of 500 requrests.

Product Compatible and additional computed target framework versions.
.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. 
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
1.0.4 873 8/25/2018
1.0.3 782 8/5/2018
1.0.2 783 8/4/2018
1.0.1 770 8/2/2018
1.0.0 790 8/2/2018

appsettings is added to disable Kaizen Mvc Trace