tortoise / tortoise-orm

Familiar asyncio ORM for python, built with relations in mind
https://tortoise.github.io
Apache License 2.0
4.55k stars 374 forks source link

Database event hooks #591

Open notnooblord opened 3 years ago

notnooblord commented 3 years ago

Is your feature request related to a problem? Please describe. I want to add metrics to database (query times, exceptions, create|delete calls, etc.)

Describe the solution you'd like It would be great to have something like hooks into db functions.

Describe alternatives you've considered So far I have considered monkey pathing using decorators, but it seems like a very bad practice.

Additional context SQLalchemy has this thing called events: https://docs.sqlalchemy.org/en/14/orm/session_events.html

Btw, thank you very much for great work, and best Async-ORM so far! 👍

long2ice commented 3 years ago

What about https://tortoise-orm.readthedocs.io/en/latest/signal.html?