glimpse

Glimpse making everything 50x slower

£可爱£侵袭症+ 提交于 2019-12-03 08:03:14
Ive been using glimpse to try to address some slow page issues, only to discover that glimpse is the cause. The page requests are 30000+ seconds, without glimpse they are instant. So I've been chasing ghosts. How can I use glimpse to see how long everything takes when it is causing such speed differences. Do I have something configured wrong or is it always this slow Update your glimpse web.config element to have the following entries: <glimpse defaultRuntimePolicy="On" endpointBaseUri="~/Glimpse.axd"> <tabs> <ignoredTypes> <add type="Glimpse.Mvc.Tab.ModelBinding, Glimpse.Mvc3" /> <add type=

Should I deploy Glimpse to the production site?

女生的网名这么多〃 提交于 2019-12-02 14:02:47
I recently added the Glimpse Debugger package to my project. This added a reference to the Glimpse dll, and modified some Web.Config. I like my project as much the same as possible on my development and production environment. So is it save/wise to deploy Glimpse to my production site, or should I create a different project (or create branch from my csproj file) to keep it only locally? Stuff that I'm worried about include: Performance Security breaches I believe if the cookie for Glimpse is not found it doesn't load or do anything so performance should be negligible. Security wise you can

Why is Glimpse still running?

戏子无情 提交于 2019-12-01 09:40:33
问题 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 <DbProviderFactories> section underneath <system.data> shouldn't glimpse be out of asp.net mvc pipeline after making it off? Update : I also commented all the glimpse related part in web.config but I still get the same above error 回答1: The reason is that even when you disable Glimpse

How to display timeline information for routines used by controllers in glimpse/Asp.NET MVC

六月ゝ 毕业季﹏ 提交于 2019-12-01 08:28:06
I am currently using Asp.Net MVC 4 and I would like to include the time of some routines used by my controllers in the glimpse's timeline tab. I know that I have to create an ITimeLineMessage Implementation and send the timing information with a message broker. But how to create the ITimeLineMessage ? Here is a way but its not very nice and not supported: Retrieve the MessageBroker for the following static method: Glimpse.Core.Framework.GlimpseConfiguration.GetConfiguredMessageBroker() Then publish an ITimelineMessage to the MessageBroker: messageBroker.Publish(timelineMessage) Note, you could

How to use Glimpse in Orchard CMS

笑着哭i 提交于 2019-12-01 04:36:57
I'm new to Orchard CMS. I want to use Glimpse in Orchard cms and config it as quick start , but when I go to http://localhost:30320/OrchardLocal/glimpse.axd it show error message "The resource cannot be found" Anyone know how to resolve it, please show me. Thanks! You need to modify the web.config in the Orchard.Web folder. If you installed Glimpse using NuGet, it added two settings to the web.config to tell the web server to use Glimpse to handle the glimpse.axd resource. The problem is the Orchard.Web\web.config file's <httpHandlers> and <handlers> sections both include a catch all handler

How to display timeline information for routines used by controllers in glimpse/Asp.NET MVC

孤街浪徒 提交于 2019-12-01 04:14:39
问题 I am currently using Asp.Net MVC 4 and I would like to include the time of some routines used by my controllers in the glimpse's timeline tab. I know that I have to create an ITimeLineMessage Implementation and send the timing information with a message broker. But how to create the ITimeLineMessage ? 回答1: Here is a way but its not very nice and not supported: Retrieve the MessageBroker for the following static method: Glimpse.Core.Framework.GlimpseConfiguration.GetConfiguredMessageBroker()

How to use Glimpse in Orchard CMS

筅森魡賤 提交于 2019-12-01 02:09:25
问题 I'm new to Orchard CMS. I want to use Glimpse in Orchard cms and config it as quick start, but when I go to http://localhost:30320/OrchardLocal/glimpse.axd it show error message "The resource cannot be found" Anyone know how to resolve it, please show me. Thanks! 回答1: You need to modify the web.config in the Orchard.Web folder. If you installed Glimpse using NuGet, it added two settings to the web.config to tell the web server to use Glimpse to handle the glimpse.axd resource. The problem is