Hacker News new | ask | show | jobs
by nwenzel 4389 days ago
"but it doesn't help you with profiling HTTP APIs that don't have a UI"

That's been my only complaint about an otherwise fantastic debug tool.

Anyone have any thoughts on running multiple debug tools like these together? I think mostly you would get comfortable with one and stick with it.

1 comments

I end up using Django Rest Framework (http://www.django-rest-framework.org/) generated UIs along with the debug toolbar, and then disabling the generated UIs when I'm done profiling.
Also, the browsable api that DRF provides can be used to perform the profiling with django-debug-toolbar.