mirror of
https://github.com/StefBuwalda/dashboard_test.git
synced 2025-10-29 18:59:59 +00:00
gets all logs from past hour rather than past 300 logs
This commit is contained in:
@@ -46,14 +46,15 @@ def homepage():
|
||||
|
||||
@bp.route("/chart/<int:id>")
|
||||
def chart(id: int):
|
||||
one_hour_ago = datetime.now(timezone.utc) - timedelta(hours=1)
|
||||
with app.app_context():
|
||||
logs = []
|
||||
s = db.session.query(service).filter_by(id=id).first()
|
||||
if s:
|
||||
logs = cast(
|
||||
list[log],
|
||||
s.logs.order_by(log.dateCreated.desc()) # type: ignore
|
||||
.limit(300)
|
||||
s.logs.filter(log.dateCreated >= one_hour_ago)
|
||||
.order_by(log.dateCreated.desc()) # type: ignore
|
||||
.all(),
|
||||
)
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user