annator-command-center / scripts /list_incomplete.py
techprotrade's picture
Deploy ATOM FastAPI command center runtime (part 6)
383cb38 verified
Raw
History Blame Contribute Delete
497 Bytes
import json
try:
with open('backend/integration_health_report.json', 'r') as f:
data = json.load(f)
incomplete = []
for service_name, details in data.get('detailed_results', {}).items():
if details.get('status') == 'INCOMPLETE':
incomplete.append(service_name)
print(f"Found {len(incomplete)} INCOMPLETE services:")
for service in sorted(incomplete):
print(f"- {service}")
except Exception as e:
print(f"Error: {e}")