Commit acb114b7 authored by ZZH's avatar ZZH

home page lst alarm add log 2024-02-2

parent 03b50bcb
......@@ -31,6 +31,7 @@ from unify_api.modules.home_page.procedures.count_info_pds import (
from unify_api.modules.common.dao.common_dao import storey_by_cid
from unify_api.modules.alarm_manager.service.list_alarm_service import \
new_list_alarm_service
from pot_libs.logger import log
# 数据对外开放接口
......@@ -151,9 +152,18 @@ async def post_home_page_lst_alarm(req, body: HomeLstAlarmReq) -> \
storeys = await storey_by_cid(cid)
storey_ids = [item["storey_id"] for item in storeys]
return await new_list_alarm_service(cid, storey_ids, page_num, page_size,
start, end, importance, point_ids,
product)
rlt = await new_list_alarm_service(cid, storey_ids, page_num, page_size,
start, end, importance, point_ids,
product)
msg = f"time:{start}-{end}, {rlt.total}, {rlt.rows}\n"
log.info(f"home_page_lst_alarm {msg}")
try:
with open("/home/ubuntu/data/code/log/open_data.txt", "a+") as file:
file.write(msg)
except Exception as e:
pass
return rlt
@summary("首页-运行趋势")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment