Tabs - Glimpse/Glimpse GitHub Wiki
The diagnostics information displayed in the Glimpse panel is organised into tabs. Each tab contains data specific to various server side concerns, and comes as part of a NuGet package.
Tabs are one of two main means (the other being Heads-up Display) by which data is transferred from the core of Glimpse to the UI. The tabs that are shown are driven by which packages you have referenced or have created yourself.
Are you interested in creating your own tabs? It's easy and straight forward.
These tabs are part of the core Glimpse package, and so are always part of a Glimpse installation. They are not specific to any web development framework:
Note: Ajax and History tabs allow you to change the HTTP request that Glimpse is currently displaying information for. Unlike all the other tabs, they don't display diagnostics information.
-
Glimpse -
Install-Package Glimpse
The Glimpse.AspNet package adds these tabs to Glimpse, which can be used for diagnosing problems common to ASP.NET based frameworks:
-
Glimpse AspNet -
Install-Package Glimpse.AspNet
##ASP.NET MVC
In addition to the ASP.NET tabs above, the Glimpse.Mvc4, Glimpse.Mvc3 and Glimpse.Mvc2 packages add these tabs with functionality specific for Microsoft's ASP.NET MVC framework:
-
Glimpse MVC3 -
Install-Package Glimpse.MVC3 -
Glimpse MVC4 -
Install-Package Glimpse.MVC4 -
Glimpse MVC5 -
Install-Package Glimpse.MVC5
The Glimpse.ADO package adds the SQL tab, which provides insights into the ADO.NET operations that your system is performing. Entity Framework specific packages are available as well for Glimpse.EF6, Glimpse.EF5 and Glimpse.EF43.
-
Glimpse EF4.3 -
Install-Package Glimpse.EF43 -
Glimpse EF5 -
Install-Package Glimpse.EF5 -
Glimpse EF6 -
Install-Package Glimpse.EF6
OR if you are just using ADO directly:
-
Glimpse ADO -
Install-Package Glimpse.ADO
Glimpse is an entirely extensible platform, with many third party tabs available to help with many .NET frameworks.