So, on my Index.cshtml page, when I initially load the page, I:
@inherits ViewPage <!DOCTYPE html> <html> <head> <script type="text/javascript" src="ext-all-debug.js"></script> <script type="text/javascript" src="app.js"></script> <script type="text/javascript" src="app.ext.js"></script> <script type="text/javascript" src="dump.js"></script> @ServiceStack.MiniProfiler.Profiler.RenderIncludes().AsRaw() </head> <body> </body> </html>

Ok, I can see the profiling index, a bunch of ExtJS and the first ajax call for my ServerStack ServiceStack (in / api / session).
Now in my ExtJS form, I have a Customers tab, when I click it, it sends an ajax request to /api/customers , and I have a tab, when I click on it, it calls /api/orders .
But then, when I start clicking, tell the Customers tab, does Miniprofiler no longer add any subsequent ajax requests to the list? I thought that Miniprofiler can log ajax requests, nothing special needs to be done? Why doesn't it log subsequent ajax requests for me? Am I missing something?
source share