Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Stackify Prefix doesn't collect any data in ASP.NET Core

I tried Prefix from Stackify as an alternative to Glimpse, which doesn't support native ASP.NET Core.

According to this article and the docs, I installed the server application using chocolately. Then installed the NuGet-Package StackifyMiddleware and activated it in the Configure method - bevor MVC is added, like mentioned in the official docs. Finally, I activated .NET profiling using the tray icon and re-opened Visual Studio.

The browser opened the data overview page of Prefix (http://localhost:2012), but no information is collected. I have no hint what I am doing wrong.

like image 913
Lion Avatar asked May 03 '26 12:05

Lion


1 Answers

I solved the problem creating a file named Stackify.json in the deployment folder of your application with

{ "AppName": "MyApp" }

like image 108
karpediemnow Avatar answered May 06 '26 01:05

karpediemnow