diff --git a/setup.sh b/setup.sh index b5a1cdae..10d34d24 100755 --- a/setup.sh +++ b/setup.sh @@ -223,25 +223,31 @@ check_service() { echo "AITBC Service Health Check" echo "========================" -# Check core blockchain services -check_service "Wallet API" "http://localhost:8003/health" -check_service "Exchange API" "http://localhost:8001/api/health" +# Core Services (8000-8009) +echo "" +echo "🔧 Core Services (8000-8009):" check_service "Coordinator API" "http://localhost:8000/health" - -# Check AI and processing services -check_service "GPU Service" "http://localhost:8010/health" -check_service "Marketplace API" "http://localhost:8021/health" -check_service "OpenClaw Service" "http://localhost:8007/health" -check_service "AI Service" "http://localhost:8009/health" -check_service "Learning Service" "http://localhost:8010/health" - -# Check additional services -check_service "Explorer" "http://localhost:8005/health" -check_service "Web UI" "http://localhost:8016/health" -check_service "Agent Coordinator" "http://localhost:8011/health" -check_service "Agent Registry" "http://localhost:8008/health" +check_service "Exchange API" "http://localhost:8001/api/health" check_service "Multimodal Service" "http://localhost:8002/health" +check_service "Wallet API" "http://localhost:8003/health" check_service "Modality Optimization" "http://localhost:8004/health" +check_service "Explorer" "http://localhost:8005/health" +check_service "Agent Registry" "http://localhost:8008/health" +check_service "AI Service" "http://localhost:8009/health" + +# AI/Agent/GPU Services (8010-8019) +echo "" +echo "🚀 AI/Agent/GPU Services (8010-8019):" +check_service "GPU Service" "http://localhost:8010/health" +check_service "Learning Service" "http://localhost:8010/health" +check_service "Agent Coordinator" "http://localhost:8011/health" +check_service "Web UI" "http://localhost:8016/health" + +# Other Services (8020-8029) +echo "" +echo "📊 Other Services (8020-8029):" +check_service "OpenClaw Service" "http://localhost:8007/health" +check_service "Marketplace API" "http://localhost:8021/health" # Check blockchain node and RPC echo ""