هذا الالتزام موجود في:
root
2026-07-26 19:36:57 +00:00
الأصل 7aa9b47b2a
التزام 220e88fdb3
3 ملفات معدلة مع 21 إضافات و60 حذوفات

عرض الملف

@@ -8,6 +8,9 @@ RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
# Copy the dashboard folder
COPY q1-deploy-monitor q1-deploy-monitor
EXPOSE 5000
CMD ["python", "app.py"]

عرض الملف

@@ -65,7 +65,7 @@ const start=performance.now();
try{
const response=await fetch("http://localhost:5000/health");
const response=await fetch("/health");
const data=await response.json();
const latency=(performance.now()-start).toFixed(2);