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

learn more… | top users | synonyms (1)

1
vote
0answers
11 views

Using ServiceStack MiniProfiler to profile all service client calls

Context: I'm writing a service using ServiceStack. This service is calling some other remote services (using the ServiceStack JsonServiceClient). Requirement: show every call to the remote service as ...
1
vote
0answers
16 views

Can MiniProfiler profile transactions

I am able to get Miniprofiler to work with the following dapper statement var connString = ConfigurationManager.ConnectionStrings["DefaultConnection"].ConnectionString; var conn = new ...
0
votes
2answers
28 views

How do I optimize the rendering of my HTML not SQL queries?

So I am using mini-profiler and it gives me some nice stats. However, one thing I have noticed is that I have gotten a lot of the SQL calls down to a minimum and now the biggest thing is the ...
1
vote
1answer
26 views

ServiceStack Profile Steps not rendering

I have a ServiceStack Service with a service call like so: public class MyService : Service { public object Get(MyServiceRequest request) { using ...
0
votes
0answers
11 views

Using MiniProfiler to time script bundles loaded using Modernizr/yepnope

I'm having some trouble figuring out a way to get MiniProfiler and Modernizr.load() (aka yepnope) to work in harmony. For MiniProfiler to time client-side script bundles, it needs to wrap the ...
1
vote
1answer
29 views

Can I disable MiniProfiler's duplicate SQL warnings for a block of code?

MiniProfiler detects "duplicate" SQL queries and gives you a red exclamation mark in the corner when it detects them (I'm using MiniProfilerEF to link in to my code-first EF database access). This is ...
6
votes
1answer
45 views

MiniProfiler and SqlMembershipProvider

I am trying to get any DB queries that happen when using the SqlMembershipProvider to show in MiniProfiler but I can't think of any way to swap out the SqlConnection is uses with a ...
0
votes
1answer
36 views

Connection has not been initialized when using SqlCommand with mini profiler

I'm receiving the error "Connection property has not been initialized" with the following code: DbConnection connection = new SqlConnection(connStr); connection.Open(); connection = new ...
4
votes
1answer
79 views

How much overhead does using MiniProfiler's Step() IDisposable add?

I'd like to use MiniProfiler from time to time to profile my code, but I don't want to branch off and keep re-introducing it; I'd like to leave it in there and just remove the ...
0
votes
0answers
16 views

Integrating MiniProfiler with Enterprise Library

I am currently using EntLib to call my stored procs using the accessor, so my code looks like this: var results = db.ExecuteSprocAccessor<Customer>("GetCustomerById", id); I am using ...
1
vote
1answer
47 views

How to improve Linq-To-Sql code

Using the StackExchange.Profiling.MiniProfiler class to profile an ASP.NET MVC application with Linq-To-Sql as ORM. I'm trying to reduce one action to one SQL, so that I don't have any duplicates ...
1
vote
1answer
61 views

Miniprofiler always starts

I am using the MiniProfiler for a small ASP.Net web application. It is great when in development, but I would like a simple way to enable/disable it in production mode. After reading How to hide ...
1
vote
1answer
44 views

Log Request time in IIS

I am running on a performance issue with ASP.Net 2.0 Application. A page takes atmost 20+ secs to load in a browser. I would like to know where the problem is occurring, i.e in browser(rendering) or ...
1
vote
1answer
48 views

MiniProfiler MvcSiteMapProvider

History We are getting excessive load times of over 6 seconds, on static content pages, which seems to happen around the "Render: Index", We have managed to work out its the MvcSiteMapProvider ...
2
votes
0answers
145 views

Poor WebAPI performance

I recently converted our existing ASP.NET MVC 2 application to MVC 4 with a WebAPI backend. Unfortunately though, I have been noticing some severe performance issues in regards to WebAPI. I have ...
2
votes
1answer
51 views

How to get Mini-Profiler webpage for Services only

I have a ServiceStack API for which I would like to see some profiling data. I do not have any pages (MVC or native) inside the Web Project. How can I view the profiling data?
1
vote
1answer
55 views

MiniProfiler with EF5 CodeFirst SimpleMembership and Specify database name

I am relatively new to MVC and EF so please bare with me. 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. ...
5
votes
1answer
116 views

ASP.NET Compiler complaining of mismatching framework versions with MiniProfiler

I have an MVC3 project that I upgraded from VS2010 to VS2012. The project also has a reference to MiniProfiler. Our application compiles and runs fine in VS2012 without any warnings/errors. Both ...
5
votes
1answer
200 views

Entity framework 5 TSQL not compatible with SQL 2005 calling stored procedures

I'm using Entity Framework 5, Code first against a SQL 2005 database. I have a repository, with a method which executes a stored procedure- The method looks like this; public ...
0
votes
0answers
37 views

Mini profiler is appearing twice on the screen

I just implemented security for the mini profiler, I want to be seen remotely for one specific hard coded user(which I will put in the config later), or a specific role. I did with the code here: ...
2
votes
1answer
65 views

enable mini profiler only to specific user and roles

In asp.net mvc the scott hanselman example shows how to show the mini profiler for a local environmnet protected void Application_BeginRequest() { if (Request.IsLocal) { ...
0
votes
0answers
35 views

MiniProfiler AddProfilerResults Null Reference

I have the following code with the nugget version (2.1.0) of MiniProfiler library: MiniProfiler.Start(); var profiler = MiniProfiler.Current; var innerProfiler = new MiniProfiler("Inner profiler"); ...
1
vote
1answer
126 views

Using MiniProfiler in ASP.NET MVC 4 with EF5

I tried EF Tracing Provider to check the SQL statements generated, but now I want to use MiniProfiler, but I'm not able to see the results... What I made so far: Intalled packages: Uncomment ...
3
votes
1answer
100 views

ServiceStack MiniProfiler Ajax Requests Logging

So, in my Index.cshtml page, when I initially load up the page I have: @inherits ViewPage <!DOCTYPE html> <html> <head> <script type="text/javascript" ...
5
votes
1answer
99 views

Rails partials rendering has 10x spikes render time

Looking ruby mini-profiler output I noticed this pattern of 5-6 partials rendering at about 6-7 ms each and then one rendering at an off 60-70 ms. I was wondering what would cause this, it looks like ...
0
votes
0answers
23 views

Disable profiler plugin

I have integrated the grails miniprofiler plugin in my application and it is working fine. Now I want to disable the profiler plugin using grails.profiler.disable = true But I am getting following ...
0
votes
1answer
73 views

MvcMiniProfiler.dll vs MiniProfiler.dll

In a C# prject, What is the difference between MvcMiniProfiler.dll (version 1.7) and MiniProfiler.dll (2.1) ?
1
vote
1answer
53 views

Determine if Glimpse is running during Application_BeginRequest()

I have installed Glimpse (Glimpse MVC4) and MiniProfiler (with EF support). I also installed the MiniProfiler plugin for Glimpse. I have that all wired up and working. I want to allow the ...
0
votes
1answer
38 views

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 ...
0
votes
1answer
67 views

How to use miniprofiler to help us crush loading speeds?

As a developer and constant user of minipfoler, I use stakoverflow as the benchmark for my .NET sites. That is because the entire stack network is just a blazingly fast. I know miniprofiler is used ...
0
votes
0answers
43 views

MiniProfiler not show SQL trace

I've added MiniProfiler to my ASP project and it traces all timings for page loads and also traces some SQL (when I login) but when I get something like a list of orders the SQL for this isn't shown. ...
2
votes
0answers
41 views

Is it possible to combine the two MiniProfiler results for an IIS Default Document request?

I have MiniProfiler setup in an ASP.NET website on IIS 7.5, and the Default Document is set as Default.aspx. If I browse to http://localhost/Default.aspx directly only one result is correctly shown. ...
5
votes
1answer
131 views

Changing my query and causing SQL exception

I'm lovin MiniProfiler for our .NET project. However, I'm running into an issue. The profiler is actually causing queries to be slightly different which is causing errors. For example, when the ...
1
vote
2answers
116 views

Miniprofiler for ASP.NET web site

How can I use miniprofiler in asp.net web site(NOT FOR MVC)? There are many resources for MVC but I can not find anything for web site. Thanks to Alex. Now it works for asp.net web site. But I can ...
1
vote
1answer
37 views

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 ...
0
votes
0answers
116 views

MiniProfiler EF6 Database SQL Queries

I am trying to get MiniProfiler to work with my Entity Framework Project. I am using Database first and for the life of me cannot seem to get it to work. I can get it to display, but cannot get it to ...
1
vote
1answer
83 views

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 ...
2
votes
1answer
76 views

What is an easy way to enable Mini-profiler for a session only?

I have a simple web form application that uses a masterpage. I followed the instructions on how to get mini-profiler working. I get all the stats OK. Now I do not really know how to toggle it on or ...
2
votes
2answers
177 views

MiniProfiler with ASP.NET WebForms Classic Mode

We're trying to configure MiniProfiler with an ASP.NET WebForms app that runs in a classic mode app pool (cannot change it to integrated). We couldn't get the handlers to work so loading the resources ...
7
votes
1answer
297 views

how to store MVC MiniProfiler results

I want to save the results of the MVC MiniProfiler to a sql server database. I profile a high load mvc4 page to spot a tricky performance problem which is non-reproducible on our test or development ...
1
vote
1answer
171 views

Use MiniProfiler only for debugging or local request

I would like to use the MiniProfiler for my MVC3 application, so I followed Scott Hanselman's blog post My Global.asax.cs file has the necessary changes like in the source's MVC sample. But I would ...
3
votes
1answer
105 views

Many calls to mini-profiler-resources on one page

I have a weird problem, I'm using MiniProfiler and it's great, no problem whatsoever on my local machine but it seems to behave differently on our testing server. It seems to generate many queries to ...
0
votes
1answer
59 views

Fix overlapping CSS

I started to use Miniprofiler in my site but encountered rendering issues in its popup. The problem is that my site's CSS are "too global", for example: thead th:last-child { background: ...
2
votes
2answers
338 views

AOP for MVC Mini Profiler

I am using the mvc mini profiler to profile a NUnit Test suite. I am just curious whether it would be possible to use the mvc mini profiler's profiling mechanism as an aspect, i.e., rather than ...
1
vote
0answers
175 views

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 ...
12
votes
1answer
778 views

MVC MiniProfiler with Entity Framework 5 Model First Error: Unable to determine the provider name

Using Entity Framework 5, MiniProfiler 2. Nuget installed for MiniProfiler.EF. Creating a connection as follows var conn = new EFProfiledDbConnection(DbConnections.GetSqlConnection(), ...
1
vote
0answers
81 views

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 ...
1
vote
1answer
233 views

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 ...
1
vote
0answers
123 views

Donut hole caching - exclude MiniProfiler.RenderIncludes

I have an ASP.NET MVC action that is decorated with the OutputCache attribute, but the problem is that the MiniProfiler output is cached as well. I'd like to exclude the MiniProfiler output from the ...
2
votes
1answer
160 views

MiniProfiler Ruby: Getting a better breakdown for non-SQL calls

I'm trying to profile some of our Rails controllers using Mini Profiler, but I think I'm trying to use it for something it isn't built for. I've got it profiling SQL queries just fine, but I need to ...

1 2 3 4 5 6