Glimpse ASP.Net running with Dapper

0

I just saw content I was studying about performance and optimization in ASP.Net applications. They presented me with a diagnostic tool called Glimpse .

The tool's operation is perfect, it measures ajax requests execution times, SQL query time and the command of the SQL queries executed directly in the database, in short, a complete diagnosis, but the queries only work if are made through Entity Framework .

Trying to bring this reality to my work environment, I came across the divergence that I use Dapper and it only works for EF .

My question then is whether it would be possible for such a tool to work with Dapper ? Is there another diagnostic tool that brings rich information like these?

    
asked by anonymous 24.10.2018 / 15:54

1 answer

0

Well, I ended up using LightHouse from Google, eventually meeting my expectations. Below a little more about LightHouse which is basically a diagnostic tool too

  

Lighthouse is an automated open source tool that enhances the quality of web apps. It can be run as a Chrome extension or on the command line. Tell Lighthouse a URL you want to audit. It will run a series of tests on the page and generate a report on page performance. In this report, you can use the tests that failed as indicators of what can be done to improve the application.

Helped a lot on performance / optimization issues and bottlenecks.

    
04.12.2018 / 11:15