Reputation: 31
I have a project which is an ASP.NET CORE REST API and the UI is hosted using Http.sys IIS doesn't come anywhere in picture here. There are multiple backend services created as windows service which include many API calls. I am looking for a memory profiler tool to monitor the performance. Any suggestions will be helpful. I have tried using .NET memory profiler but due to absence of IIS, things are difficult to manage in it. Can anyone please suggest me a better tool?
Upvotes: 0
Views: 1876
Reputation: 2217
Have you tried MiniProfiler https://miniprofiler.com/dotnet/AspDotNetCore
MiniProfiler https://www.youtube.com/watch?v=7ThPz-9XM54
NewRelic also has a profiler (if you are using for development purpose only)
There is one from JetBrains as well (dotTrace) https://www.jetbrains.com/help/profiler/Profile_.NET_Core_Application.html
Upvotes: 0