Beginner question, and it's probably a duplicate, sorry! But I can't find the answer by Googling or by searching on here.
My Django/postgres application is slow. I know how to log the queries being executed on postgres, so I'm doing that.
Now, how do I identify which of them are slow... short of typing them all in myself, and using a stopwatch?
In short: is there a way to log how long each query took to execute, using Django ORM & a postgres database?