NanoProfiler.Web.Import
2.0.5.1
See the version list below for details.
dotnet add package NanoProfiler.Web.Import --version 2.0.5.1
NuGet\Install-Package NanoProfiler.Web.Import -Version 2.0.5.1
<PackageReference Include="NanoProfiler.Web.Import" Version="2.0.5.1" />
paket add NanoProfiler.Web.Import --version 2.0.5.1
#r "nuget: NanoProfiler.Web.Import, 2.0.5.1"
// Install NanoProfiler.Web.Import as a Cake Addin
#addin nuget:?package=NanoProfiler.Web.Import&version=2.0.5.1
// Install NanoProfiler.Web.Import as a Cake Tool
#tool nuget:?package=NanoProfiler.Web.Import&version=2.0.5.1
NanoProfiler Web Profiling Results Import and Export
Product | Versions |
---|---|
.NET Framework | net40 net403 net45 net451 net452 net46 net461 net462 net463 net47 net471 net472 net48 |
-
- NanoProfiler (>= 2.0.5)
- Newtonsoft.Json (>= 7.0.1)
- slf4net (= 0.1.32.1)
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 |
---|---|---|
2.2.1 | 462 | 12/3/2020 |
2.2.0 | 563 | 6/24/2020 |
2.2.0-beta.1 | 212 | 4/2/2020 |
2.1.0.3 | 532 | 1/7/2020 |
2.1.0.2 | 634 | 5/8/2019 |
2.1.0.1 | 1,258 | 9/8/2017 |
2.0.8.4 | 3,461 | 9/27/2016 |
2.0.8.2 | 927 | 9/27/2016 |
2.0.8.1 | 893 | 9/26/2016 |
2.0.7.3 | 883 | 5/6/2016 |
2.0.7.2 | 1,027 | 4/22/2016 |
2.0.7.1 | 1,056 | 4/22/2016 |
2.0.6.2 | 878 | 4/20/2016 |
2.0.6.1 | 1,574 | 11/23/2015 |
2.0.5.1 | 2,087 | 11/16/2015 |
2.0.3.1 | 1,271 | 11/16/2015 |
2.0.2.23899 | 1,230 | 11/16/2015 |
2.0.1.20705 | 1,244 | 11/16/2015 |
2.0.0.27723 | 1,234 | 11/13/2015 |
NanoProfiler
============
NanoProfiler is a light weight profiling library written in C# which requires .NET 4.0+. It was inspired by the MiniProfiler project, but is designed for high performance, big-data analytics, and is easy to be used for both sync & async programming model. It has been used in EF (Education First) projects generating billions of profiling events per day with trivial performance penalty.
NanoProfiler itself implements the core profiling feature and a simple implementation for persisting results via slf4net. If you want better profiling result management feature, you could implement the IProfilingStorage interface by yourself.
NanoProfiler also provides a wonderful view-result Web UI supports view latest profiling results in a tree-timeline view (simply visit ~/nanoprofiler/view in your web application).
For more documentations, please check out wiki pages: https://github.com/englishtown/nanoprofiler/wiki
How to compile the source code?
-------------------------------
Do the following steps before opening NanoProfiler.sln in Visual Studio 2012 +
- git clone
- cd src
- run .\build.ps1
License terms
-------------
NanoProfiler is published under the [MIT license](http://englishtown.mit-license.org/).
About v2.0
----------
Changes since latest version of v1:
- Profiling engine redesign for better performance & less memory concumption;
- Enhanced View-Results UI to display all custom profiling tags & fields;
- Drill down/up to child/parent profiling sessions in View-Results UI;
- Simplified profiling configuration (zero configuration for simple use cases);
- New configuration provider interface for easier integration with existing frameworks;
- New NanoProfiler.Web.Import components for importing and visualizing profiling sessions from log files or elasticsearch;
- New generic custom web request timing support;