How can I track specific user actions with Django.
For example:
- user logged in
- user changes password
- user visited a specific page
- rest api call within a specific view took 300ms
- user deleted / updated / created a specific model
Is there a nice third party app which can do this for me and display this information in an human readable admin interface or at least in django-admin?
If there is no app out there. How would you do this with Django?