Kaizen.Mvc.Trace 1.0.4

dotnet add package Kaizen.Mvc.Trace --version 1.0.4
NuGet\Install-Package Kaizen.Mvc.Trace -Version 1.0.4
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.4" />
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.4
#r "nuget: Kaizen.Mvc.Trace, 1.0.4"
#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.4

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

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 true value in appSettings.

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

This tools help you to find out action methods which are 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 summary of particular action method.

Just add following configuration into <configuration> section of Web.config to find 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 will be able to see cosolidate report on Url like http://{domain}/kaizen.axd

For example: http://localhost:54004/Kaizen.axd

By default execution time will be displayed in Milliseconds. You can pass query string 'reporttype=Ticks' if you want to see execution time in Ticks format.

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

Optional configuration to disable/enable Kaizen.Mvc.Trace :

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

Notes : Right now this tool holds maximum 500 hundred requests to show consolidate report. Developer will get report based on latest 500 requests only. It holds like first in first out after having 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 870 8/25/2018
1.0.3 780 8/5/2018
1.0.2 781 8/4/2018
1.0.1 768 8/2/2018
1.0.0 788 8/2/2018

Core Performance service project is merged with this project