NanoProfiler.Data 2.0.0.30295

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

// Install NanoProfiler.Data as a Cake Tool
#tool nuget:?package=NanoProfiler.Data&version=2.0.0.30295

NanoProfiler Data Profiling Support

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  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 (1)

Showing the top 1 NuGet packages that depend on NanoProfiler.Data:

Package Downloads
NanoProfiler.EF

NanoProfiler EntityFramework 6 Support

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.2.1 2,756 12/3/2020
2.2.0 1,718 6/24/2020
2.2.0-beta.1 247 4/2/2020
2.1.0.3 4,042 1/7/2020
2.1.0.2 4,127 5/8/2019
2.1.0.1 23,117 9/8/2017
2.0.8.4 8,500 9/27/2016
2.0.8.2 1,322 9/27/2016
2.0.8.1 1,246 9/26/2016
2.0.7.3 1,818 5/6/2016
2.0.7.2 1,420 4/22/2016
2.0.7.1 1,404 4/22/2016
2.0.6.2 993 4/20/2016
2.0.6.1 2,094 11/23/2015
2.0.5.1 2,586 11/16/2015
2.0.3.1 1,213 11/16/2015
2.0.2.23898 1,381 11/16/2015
2.0.1.20704 1,226 11/16/2015
2.0.0.30295 1,396 11/13/2015
2.0.0.27724 1,460 11/13/2015
1.3.2.1 3,663 8/27/2015
1.2.1.3 5,826 1/14/2015
1.2.1.2 4,414 1/8/2015
1.2.1.1 2,002 12/25/2014
1.2.0.1 3,385 10/24/2014
1.2.0 1,690 10/22/2014
1.1.1 4,861 9/24/2014
1.1.0.3 1,584 7/15/2014
1.1.0.2 2,289 6/28/2014
1.1.0.1 1,394 6/19/2014
1.1.0 1,464 6/10/2014
1.0.3 3,793 6/9/2014
1.0.0 1,392 5/30/2014

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;