Questions tagged [mvc-mini-profiler]

A simple but effective mini-profiler for ASP.NET, WCF and the .NET platform

A simple but effective mini-profiler for ASP.NET, WCF and the .NET platform. It has been designed to be small and unobtrusive and thus to be suitable for production code profiling. Read the introduction.

Installing the mini-profiler can most easily be done using its NuGet package:

Install-Package MiniProfiler
388 questions
0
votes
1 answer

How to monitor/view all actions/methods/events/filters/etc that make up a request?

In terms of performance profiling an ASP.NET MVC application is there a way to monitor or view all the methods that make up a request when rendering a page - essentially the callstack for the entire request. Say I have a page that takes 1000ms to…
Mark Erasmus
  • 2,305
  • 6
  • 25
  • 37
0
votes
1 answer

ServiceStack Built In Profiling Without Global.asax

I'm trying to add profiling to a server running ServiceStack that isn't built with ASP.net. As far as I can tell, there is no Global.asax file associated with the project. Instead, it calls Init() and Start(String urlBase) on a subclass of…
dhakim
  • 508
  • 3
  • 10
0
votes
1 answer

How to add information to Glimpse after EndRequest?

I'm the maintainer of the Miniprofiler Glimpse plugin and with the latest Miniprofiler versions I'm not able to push data to Glimpse because the Profiler is not yet populated (in previous versions it was) when the GetData() method of the tab is…
Marc Climent
  • 9,434
  • 2
  • 50
  • 55
0
votes
1 answer

Glimpse.MiniProfiler plugin not showing duration

When I use MiniProfiler plugin for Glimpse, the duration column is not showing anything. What could be missing? Anyone experienced the same?
Kagawa
  • 1,319
  • 2
  • 21
  • 33
0
votes
0 answers

MiniProfiler and SQL Server Table Valued Parameters

We use SQL Server for our database, and sometimes want to pass table valued parameters to stored procedures. Our current method of doing this involves (C#): // datatable is System.Data.DataTable // command is System.Data.Common.DbCommand var…
0
votes
1 answer

Where does EntityKeyValue originate from in miniprofiler sql queries?

I am debugging some duplicate sql statements in my MVC app using miniprofiler. I'm struggling to find where some sql statements originate and quite a few of these declare a parameter at the beginning EntityKeyValue. For example: DECLARE…
Martin Hansen Lennox
  • 2,837
  • 2
  • 23
  • 64
0
votes
2 answers

Post Glimpse / Mini-Profiler log information to web api or webservice

Is there any possibility to post Glimpse or Mini-Profiler log information to a web api / webservice in order to separate the logged data storing (saving to a database) part from the main application. We would be able to capture Mini-Profiler logged…
DSR
  • 4,588
  • 29
  • 28
0
votes
1 answer

MiniProfiler with Simple.Data and SQLServer Database

I am working on a project which use miniprofiler (3.0.10) with Simple.Data and SqlServer database. Please could anyone point me to use miniprofiler to log sql query details by amending below code sample which used with MySql. var db =…
DSR
  • 4,588
  • 29
  • 28
0
votes
1 answer

ServiceStack Profiler NullReferenceException

I think I'm setting up ServiceStack's profiler correctly, but maybe I'm not. I'm just trying to get the basics in place. What I've done so far The only steps I 've taken so far to install profiling -- In Global.asax.cs: private void…
0
votes
0 answers

MiniProfiler for backend server

We have two asp.net mvc apps - front-end and back-end. Can I configure MiniProfiler http://miniprofiler.com/ to get statistic from the back-end app?
Yuri Fedoseev
  • 539
  • 5
  • 7
0
votes
3 answers

MiniProfiler.Ef issue with EntityFramework6

I have updated EF5 to 6 and MiniProfiler.Ef to 2.0.3 I am having issues to run the application now. As per the suggestion by https://github.com/SamSaffron/MiniProfiler/pull/142 I have updated my Web.Config to access the MiniProfiler Provider for…
Saanch
  • 1,814
  • 1
  • 24
  • 38
0
votes
1 answer

MVC FindView Time

I created my first Web App with MVC 4.0 and I just started using mini-profiler to get some basic information. FindView seems to range from 300 to 600ms depending on page, this seems rather high to me but I don't really know what I should be…
Calidus
  • 1,374
  • 2
  • 14
  • 31
0
votes
2 answers

Miniprofiler isn't profiling assignment statements / fast steps

I'm using the StackExchange Miniprofiler with ASP.NET MVC 4. I'm currently trying to profile an assignment to a member variable of a class with an expensive expression that generates the value to be assigned. Miniprofiler doesn't seem to want to…
Giles Roberts
  • 6,407
  • 6
  • 48
  • 63
0
votes
1 answer

Starting a rails dev server with custom gems

I want to use MiniProfiler on my own dev server, but don't want to force all other devs on the project to install and use it. The only way I would know how would be to have git ignore updates to my gemfile, but that's definitely not what I want. Is…
commandantk
  • 283
  • 1
  • 5
0
votes
1 answer

MvcMiniProfiler.dll vs MiniProfiler.dll

In a C# prject, What is the difference between MvcMiniProfiler.dll (version 1.7) and MiniProfiler.dll (2.1) ?
Martin
  • 745
  • 2
  • 7
  • 23
1 2 3
25
26