Last active
February 17, 2021 11:55
-
-
Save danbirken/10939933 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from sqlalchemy import engine | |
from sqlalchemy import event | |
class DbStats(): | |
def __init__(self): | |
self.clear() | |
def clear(self): | |
self.total_queries = 0 | |
self.total_time = 0 | |
def add_query(self, timing): | |
self.total_queries += 1 | |
self.total_time += timing | |
def as_dict(self): | |
return { | |
'total_queries': self.total_queries, | |
'total_time_ms': self.total_time * 1000, | |
} | |
DB_STATS = DbStats() | |
@event.listens_for(engine.Engine, 'before_cursor_execute') | |
def before_cursor_execute(conn, cursor, statement, parameters, | |
context, exceutemany): | |
context._query_start_time = time.time() | |
@event.listens_for(engine.Engine, 'after_cursor_execute') | |
def after_cursor_execute(conn, cursor, statement, parameters, | |
context, exceutemany): | |
DB_STATS.add_query(time.time() - context._query_start_time) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment