Description
I have been switching from django-debug-toolbar to django-silk because django-silk is more versatile (for example, I can use it to profile and HTTP request, not just templates), and have been enjoying it. Thank you for this tool!
One feature I really miss from django-debug-toolbar is the requests panel. This means I can see HTTP requests made (by the server) while serving a request.
This is particularly useful for individuals with microservices architectures, where a lot of the API response time is made up simply waiting for other API calls. Often profiles and SQL query analysis does not give that much insight, but the requests panel is helpful to debug poorly-utilised APIs.
I would love it if django-silk could incorporate a similar functionality.