fix: 左侧菜单重复分组头——移除KPI字典和管报表的多余group

This commit is contained in:
Hermes CI Fix
2026-07-13 14:49:14 +08:00
parent 7867f246af
commit 72bc060afd
3 changed files with 33 additions and 2 deletions
Binary file not shown.
+31
View File
@@ -0,0 +1,31 @@
#!/usr/bin/env bash
# CMA预警检查 — 通过wrapper脚本避免systemd引号冲突
set -euo pipefail
cd /root/cma-management/backend
VENV="/root/cma-management/backend/venv"
# 1. KPI阈值检查
"$VENV/bin/python3" -c "
from app.database import get_db_session
from app.api.alert_rules import check_all_kpi_alerts
db = next(get_db_session())
try:
count = check_all_kpi_alerts(db)
print(f'KPI预警检查完成: 新增{count}条')
finally:
db.close()
" 2>&1
# 2. 差异预警推送检查
"$VENV/bin/python3" -c "
from app.database import get_db_session
from app.api.deviation_push import check_all_push
db = next(get_db_session())
try:
count = check_all_push(db)
print(f'差异预警检查完成: 新增{count}条')
finally:
db.close()
" 2>&1