Questions tagged [glimpse]

What Firebug is for the client, Glimpse does for the server... in other words, a client side Glimpse into what's going on in your ASP.NET server.

Glimpse allows you to debug your ASP.NET web site or web service right in the browser. Glimpse allows you to "Glimpse" into what's going on in your web server. In other words what Firebug is to debugging your client side code, Glimpse is to debugging your server within the client.

Project Links:

319 questions
2
votes
1 answer

glimpse(sql tab) is not working for nopcommerce

In Nopcommerce, I have added nuget package Install-Package Glimpse.MVC5 it's working fine for mvc, when I add Install-Package Glimpse.EF6 & ADO it's throwing like Unable to define EFProfiledDbProviderServices class of type …
2
votes
2 answers

Why does disposing of an entity context not free up memory

In my tests I am reading a text file line by line and inserting an entity along with other related entities. The problem is when too many are inserted I receive an Out of memory exception. In my attempt to prevent this I create a new DbContext for…
user2945722
  • 1,293
  • 1
  • 16
  • 35
2
votes
1 answer

Glimpse sql tab not enabled

Have installed: Glimpse 1.8.6 Glimpse.Ado 1.7.3 Glimpse.AspNet 1.9.2 Glimpse.EF6 1.6.5 Glimpse.Mvc5 1.5.3 in an MVC5 project using EF 6.1.3 I create my connection with a simple using (var db = new DbModel()) where DbModel inherits from…
Wavel
  • 956
  • 8
  • 31
2
votes
1 answer

ASP.NET WebAPI + Durandal SPA + Glimpse

What's the exact recipe I need to get Glimpse working on a JavaScript-powered Single Page Application when I'm using WebAPI as the server end (i.e. all ajax requests rather than form POSTs)?
Neil Barnwell
  • 41,080
  • 29
  • 148
  • 220
2
votes
0 answers

Glimpse.Ado issue with missing "CreatedOn" column in EF schema

I'm using the latest bits. When I initialise my EF data context, I get An exception of type 'System.Data.SqlServerCe.SqlCeException' occurred in Glimpse.Ado.dll but was not handled in user code. The exception detail is Either The column name is not…
h bob
  • 3,610
  • 3
  • 35
  • 51
2
votes
0 answers

What happened to Glimpse v2?

Currently the version of Glimpse.Core on NuGet is 1.8.6. There is a really nice feature in v2 - GlimpseTimeline - that I'd like to take advantage of, but although I can find references to Glimpse v2 as far back as September 2013 and v2 is on GitHub…
Lex
  • 6,758
  • 2
  • 27
  • 42
2
votes
1 answer

Turn Glimpse off completely

I am interested in being able to turn Glimpse off completely in the lightest weight way that I can manage. Between the glimpse documentat and the response to this question How to disable Glimpse, the difference between turning Glimpse.axd off and…
David W Gray
  • 681
  • 6
  • 18
2
votes
0 answers

Profiling ASP Razor view rendering

I'm using Glimpse to get an insight into my ASP MVC website's behaviour. I can see that view rendering seems to take the longest. My controller action takes about 122ms and does 70ms of database queries, but the code is a little complex so I can…
Steven Sproat
  • 4,398
  • 4
  • 27
  • 40
2
votes
1 answer

How can I have Glimpse instrument all requests, but still restrict access to the Glimpse panel?

I'd like Glimpse to instrument all requests to my site, but still restrict the Glimpse.axd page and the HUD to selected people. I already have a custom runtime policy, but when this policy restricts access to the Glimpse HUD, it also doesn't…
Chris Payne
  • 1,700
  • 1
  • 16
  • 33
2
votes
3 answers

Entity Framework / Glimpse duration disparity

I'm using the latest ASP.NET MVC and Entity Framework (MVC 5.2.2, EF 6.1.2), and latest of Glimpse. I'm working on improving query times to eagerly load an entity with several nested child objects, and have reduced the number of queries by using…
Noah Stahl
  • 6,905
  • 5
  • 25
  • 36
2
votes
2 answers

Increasing Glimpse History tab limit

The documentation says: What happens when the maximum number of stored requests is reached (by default 25)? Internally we store the requests in a FIFO Queue. This means that when the maximum number spaces in the queue are filled, we take the…
Pol
  • 5,064
  • 4
  • 32
  • 51
2
votes
1 answer

Save Glimpse data as report

I am looking to capture web application performance (total time taken) to visualize a code change impact. I am not looking at scientific precision method as of now (we may employ an automated tool at later stage) just a quick comparison will do. My…
SBirthare
  • 5,117
  • 4
  • 34
  • 59
2
votes
1 answer

Using Glimpse on a javascript website

I have a website that is written with Node.js/AngularJS that makes ajax calls to an ASP.Net mvc backend. Because I don't use the traditional 'Views' and 'aspx' pages, is there a way to use Glimpse in this scenario?
Kevin Up
  • 791
  • 1
  • 6
  • 11
2
votes
1 answer

Why is Glimpse still running?

I made glimpse defaultRuntimePolicy Off but it still shows an error like this Unable to define EFProfiledDbProviderServices class of type 'GlimpseDbProviderServices'. Please check that your web.config defines a section…
Amir Jalali
  • 3,132
  • 4
  • 33
  • 46
2
votes
1 answer

Use Glimpse with self-hosting

Is it possible to use Glimpse with a self-hosted web application? Specifically, I'm trying to use Glimpse with Nancy (self-hosted) on Mono. The only information that I'm able to find is about Glimpse within ASP.NET.
theDmi
  • 17,546
  • 6
  • 71
  • 138