Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Glimpse diagnostics platform which is full compatible to ASP.NET Core

I used Glimpse on the old ASP.NET MVC5 stack and liked it very much cause it gives a pretty and detailed representation of nearly all important data for debugging purpose. Sadly, its not compatible with ASP.NET Core (yet). I tried to install the demo, which assurance to work with ASP.NET Core.

But thats not entirely true cause it works on ASP.NET Core, but depends on the old 4.x framework. So it destroys the cross-platform compability, which is not suiteable for me. The app is designed to run on a Linux based server using docker.

Although, I would like to benefit from those nice features in my Core app, too. Is there any similar alternative to Glimpse that is full compatible to ASP.NET Core? I'm currently using ASP.NET Core 1.1, but could also downgrade to 1.0 if necessary. The most important things for me are request duration and database (SQL) querys, may Redis included if possible.

like image 370
Lion Avatar asked Jan 17 '17 11:01

Lion


People also ask

How to use Glimpse ASP net?

Start the ASP.Net Core application and turn on Glimpse To enable Glimpse, start the application, go to the URL host/Glimpse. axd, and click on the “Turn Glimpse On” button in the top-right corner of the page (see figure below).

What is Glimpse ASPnet?

Glimpse is a thriving and growing family of open source NuGet packages that provides detailed performance, debugging and diagnostic information for ASP.NET apps. It's trivial to install, lightweight, ultra-fast, and displays key performance metrics at the bottom of every page.

What is the asp net core platform Why is it useful and how is it used in an application?

ASP.NET Core is a cross-platform, high-performance, open-source framework for building modern, cloud-enabled, Internet-connected apps. With ASP.NET Core, you can: Build web apps and services, Internet of Things (IoT) apps, and mobile backends. Use your favorite development tools on Windows, macOS, and Linux.

What's new in glimpse webforms?

ASP.NET WebForms Too - Glimpse 's ASP.NET WebForms with the best View State decoder available embedded directly into the server control tree. Improved Tracing - Glimpse automatically displays trace statements, eliminating the headache of digging through log files. Popular logging frameworks can be integrated with some slight configuration as well!

What is the use of the glimpse feature?

Glimpse lists each of them, so excessive or under-performant queries can be reigned in. View Rendering & Resolution - Glimpse provides complete visibility into ASP.NET MVC's view resolution process, including file access paths. Route Debugging - ASP.NET routing is a powerful, and sometimes maddening, feature.

What is MVC glimpse?

View Rendering & Resolution - Glimpse provides complete visibility into ASP.NET MVC's view resolution process, including file access paths. Route Debugging - ASP.NET routing is a powerful, and sometimes maddening, feature. Glimpse cracks into the black box and exposes how routes are matched.

What is web native glimpse?

Web Native - Glimpse is built with web technologies that you love: HTML, CSS & JS. It requires no proprietary browser plugin and works everywhere you do. Hardened Security - Hardened by default, only you get to choose who can see what Glimpse data and when.


1 Answers

I'm using https://miniprofiler.com/dotnet/AspDotNetCore.

It can profile MVC and Entity Framework and it has an UI representation via a Tag helper

like image 68
HamedH Avatar answered Oct 16 '22 08:10

HamedH