Questions tagged [mvcminiprofiler]
13 questions
11
votes
1 answer
MVC4 MiniProfiler results-index page errors "MiniProfiler.list is undefined"
I get the error "MiniProfiler.list is undefined" error when trying to load the miniprofiler list:
/mini-profiler-resources/results-index
The javascript miniprofiler injects doesn't have any method or property called "list".
The page that shows one…

David Aleu
- 3,922
- 3
- 27
- 48
5
votes
2 answers
Miniprofiler and umbraco
I'm running an instance of umbraco 7. But I can't seem to set miniprofiler to work with it.
Set this on my global.asax:
protected void Application_BeginRequest()
{
if (Request.IsLocal)
{
MiniProfiler.Start();
…

antao
- 767
- 1
- 9
- 24
5
votes
1 answer
Limit for HttpRuntime cache storage in mvc mini profiler
I believe that the mvc mini profiler stores all the response times in HttpRuntime cache. Please let me know if I'm wrong but if that's the case then what is the max limit for this cache? How many operations can it profile before the cache is full?…

Kumar Vaibhav
- 2,632
- 8
- 32
- 54
4
votes
2 answers
MiniProfiler Doesn't work
I just created a new MVC 4 Basic project and added the package to the project and the needed code to the layout but nothing happened after first run.
This is the Layout:
@using StackExchange.Profiling;

ahmadali shafiee
- 4,350
- 12
- 56
- 91
4
votes
1 answer
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 failed.
To solve this we included the .js,…

pbz
- 8,865
- 14
- 56
- 70
3
votes
1 answer
How to customize the Mini-Profiler UI
I have installed Mini-Profiler on my MVC 4 application and it is working like a charm. The only problem I have with it is that the UI covers up a critical part of my UI. I can move it around the page using the css but ideally I would like to make…

PlTaylor
- 7,345
- 11
- 52
- 94
2
votes
1 answer
Miniprofiler.Current method does not return the time
I'm trying to get time with this code using MiniProfiler.
var profiler = StackExchange.Profiling.MiniProfiler.Current;
But it returns 0 ms in result. How to get current time in miniprofiler.
This method gives me result with MiniProfiler version…

Ankita
- 1,416
- 4
- 17
- 42
2
votes
2 answers
How to get MiniProfiler logs from the redirected request?
I have the MiniProfiler installed in my ASP.NET MVC 3 project running good but i got a problem, the MiniProfiler only shows logs from the last request and some "summary" of the whole site loading.
I have a form that posts to /MyForm and MyForm…

RickardP
- 2,558
- 7
- 34
- 42
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
0
votes
0 answers
How do I prevent posts to mini-profiler-resources/results in production?
I am trying to setup MiniProfiler to run in all of our environments instead of just on our local machines. It is my understanding that StackOverflow runs MiniProfiler in production without any issues. When I open my developer tools in Chrome and go…

Christopher Haws
- 1,715
- 21
- 21
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
1 answer
MVC3 application doesn't show miniprofiler (IIS 7.5 on Windows Server 2008 R2)
Need help with miniprofiler and IIS 7.5 on Windows Server 2008 R2. My MVC3 application works great on localhost but fails to render profile information when deployed on the server. Wondering if I am missing any configuration. Here is my…

user805599
- 21
- 4
0
votes
1 answer
MVCMiniProfiler does not show WHERE part of Linq Query
I'm using MVCMiniProfiler to profile some database queries.
For one query it fails to show the Where part of the query that I have defined in my code.
code is as follows:
MyAppDataContext.cs:
public partial class MyAppDataContext :…

jao
- 18,273
- 15
- 63
- 96