Reputation: 421
I have a ServiceStack API for which I would like to see some profiling data. I do not have any pages (MVC or native) inside the Web Project. How can I view the profiling data?
Upvotes: 2
Views: 427
Reputation: 4535
When you load a ServiceStack
endpoint from the browser you are presented with an HTML view of that data. if you have activated MiniProfiler, it will be displayed in the top right of the page.
Please see here for instructions: https://github.com/ServiceStack/ServiceStack/wiki/Built-in-profiling
Upvotes: 2