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
1
vote
1 answer

MiniProfiler with EF5 CodeFirst SimpleMembership and Specify database name

I have an MVC 4 web application with EF 5 CodeFirst (DBContext) with migrations. I am using SimpleMembership which is tied in through EF 5. My database is SQL Server 2012 and I do not have the permission to create and drop databses so because of…
1
vote
1 answer

mini-profiler drop some steps

I'm starting to use Stackoverflow MiniProfiler on my ASP MVC 4 web application. I've put only the Start and Stop calls in BeginRequest and EndRequest respectively. I've add to one action some steps like so: private ActionResult MyAction(string…
Ido Ran
  • 10,584
  • 17
  • 80
  • 143
1
vote
1 answer

MiniProfiler "Share" Link Shows Nothing

When I click on "Share" the screen it loads has no content. Even when I view source there isn't anything. I've set MiniProfiler.Settings.Results_Authorize = r => true; in global.asax BeginRequest When I set auth to false it shows "hidden" so I know…
Mark Rucker
  • 6,952
  • 4
  • 39
  • 65
1
vote
1 answer

I do not seem to get LINQ2SQL queries back with mini-profiler?

I have a 2 tier web application. DataAccess and WebSite. So in my dataContext.cs on the DataAccess tier I added the wrapper... //The autogenreated context when I made the linq2sql class public static MyDataContext DataContext { get …
Piotr Kula
  • 9,597
  • 8
  • 59
  • 85
1
vote
0 answers

profiling wcf and mvc 4 with miniprofiler

I am working with miniprofiler and find it very helpful. I have an mvc4 application that gets its data from a set of wcf services over named pipes. I am in control of both the mvc4 app and the wcf services. I was reading this post on how to profile…
amateur
  • 43,371
  • 65
  • 192
  • 320
1
vote
0 answers

Integrating MvcMiniProfiler.RavenDB with ServiceStack.MiniProfiler

I have tried to follow the instruction mentioned on the ServiceStack.MiniProfiler page, on the MvcMiniProflier.RavenDB page and on the MiniProfiler page but I cannot get the profiling data for RavenDB to be displayed in the…
Alex Pop
  • 655
  • 1
  • 11
  • 20
1
vote
1 answer

EF 5 & MiniProfiler Issue

I have a strange problem with EF5 and mini profiler. Basically I have created a really simple project using the Blog/Post example. If i do a linq command (for example, debug.writeline mycontext.Blogs.Count()) it works the first time, but then the…
Stono
  • 2,337
  • 2
  • 16
  • 18
1
vote
1 answer

Why does ServiceStack v3.9.28 nuget not contain SqlServerStorage class for MiniProfiler

I used the nuget command to get the ServiceStack dll's. The 3.9.28 I have does not contain the SqlServerStorage class in the MiniProfiler namespace. Why is that?
1
vote
1 answer

How to get MVC4 Project with MiniProfiler to build in TFS 2010?

I have an ASP.NET MVC4 project which builds in TFS. Since adding the MiniProfiler to the project, the builds fail as follows: CA0001 : The following error was encountered while reading module 'MiniProfiler': Assembly reference cannot be resolved:…
ItsJason
  • 747
  • 1
  • 4
  • 20
1
vote
1 answer

Using mini-profiler and MVC3 - profiling connections from model class in separate dll

I've got an MVC3 project and one of the models is built as a separate class library project, for re-use in other applications. I'm using mini-profiler and would like to find a way to profile the database connections and queries that are made from…
growse
  • 3,554
  • 9
  • 43
  • 66
1
vote
1 answer

Cannot get MiniProfiler to work with Asp.net Webform

I'm new to MiniProfiler and try to get it to work. After doing as the instruction I got stuck with error 405: "The HTTP verb POST used to access path '/Faconnect.Portal/mini-profiler-resources/results' is not allowed." When I try the directlink:…
Nhím Hổ Báo
  • 572
  • 5
  • 20
1
vote
1 answer

Async profiling with MiniProfiler.Current.AddProfilerResults version 2 and above

In version 1.9 of the mini profiler I found a way to get the SQL timings of asynchronous DB calls into the profiler results. Basically, I added a ContinueWith to my async task and then added all the SQL timings to the step that initiated the async…
Keith
  • 150,284
  • 78
  • 298
  • 434
1
vote
1 answer

What does this line mean in firebug? Blue writing on right hand side

I have firebug installed and I can see on one of my 'Net' requests that there is a bit of 'blue' writing on the right hand side..... Im wondering what this is? Im using mini-profiler.
Exitos
  • 29,230
  • 38
  • 123
  • 178
1
vote
1 answer

how to use mvc-mini-profiler for database-first entity framework?

I am trying to use mvc-mini-profiler for db-first EF, but it is not working properly. (note that I'm using objectcontext, not dbcontext) Here is the list of stackoverflows I've tried: Setup of mvc-mini-profiler for EF-db- first How to get…
soleiljy
  • 1,121
  • 2
  • 13
  • 20
1
vote
1 answer

MiniProfiler, get rid of request for own resources

What's the easiest way to get rid of profiling info about MiniProfiler's own resources, e.g http://localhost:9591/admin/mini-profiler-resources/results Setup in Application_Start GlobalFilters.Filters.Add(new…
Daniel
  • 8,133
  • 5
  • 36
  • 51