YOLO Vision 2026:

Monitoring#

Ultralytics Platform provides monitoring for deployed endpoints. Track request metrics, view logs, and check health status with automatic polling.

Ultralytics Platform Deploy Page Overview Cards And World Map

Deployments Dashboard#

The Deploy page in the sidebar serves as the monitoring dashboard for all your deployments. It combines the world map, overview metrics, and deployment management in one view. See Dedicated Endpoints for creating and managing deployments.

graph TB
    subgraph Dashboard
        Map[World Map]:::proc --- Cards[Overview Cards]:::proc
        Cards --- List[Deployments List]:::decide
    end
    subgraph "Per Deployment"
        Metrics[Metrics Row]:::out
        Health[Health Check]:::out
        Logs[Logs Tab]:::out
        Code[Code Tab]:::out
        Predict[Predict Tab]:::out
    end
    List --> Metrics
    List --> Health
    List --> Logs
    List --> Code
    List --> Predict

    classDef proc fill:#2196F3,color:#fff
    classDef decide fill:#FF9800,color:#fff
    classDef out fill:#9C27B0,color:#fff

Overview Cards#

Four summary cards at the top of the page show:

Ultralytics Platform Deploy Page Four Overview Cards

MetricDescription
Total Requests (24h)Requests across all endpoints
Active DeploymentsCurrently running endpoints
Error Rate (24h)Percentage of failed requests
P95 Latency (24h)95th percentile response time
Error Rate Alert

The error rate card highlights in red when the rate exceeds 5%. Check the Logs tab on individual deployments to diagnose errors.

World Map#

The interactive world map shows:

  • Region pins for all 42 available regions
  • Green pins for deployed regions
  • Animated blue pins for regions with active deployments in progress
  • Pin size varies based on deployment status and latency

Ultralytics Platform Deploy Page World Map With Deployed Regions

Deployments List#

Below the overview cards, the deployments list shows all endpoints across your projects. Use the view mode toggle to switch between:

ViewDescription
CardsFull detail cards with metrics, logs, code, and predict tabs
CompactGrid of smaller cards (1-4 columns) with key metrics
TableDataTable with sortable columns: Name, Region, Status, Requests, P95, Errors
Real-Time Updates

The dashboard polls every 15 seconds for deployment status updates. When deployments are in a transitional state (creating, deploying, or stopping), polling increases to every 3 seconds. Per-deployment metrics refresh every 60 seconds. Click the refresh button for immediate updates.

Per-Deployment Metrics#

Each deployment card (in cards view) shows real-time metrics:

Metrics Row#

MetricDescription
RequestsRequest count (24h) with icon
P95 Latency95th percentile response time
Error RatePercentage of failed requests

Metrics are fetched from the sparkline API endpoint and refresh every 60 seconds.

Health Check#

Running deployments show a health check indicator:

IndicatorMeaning
Green heartHealthy — shows response latency
Red heartUnhealthy — shows error message
Spinning iconHealth check in progress

Health checks auto-retry every 20 seconds when unhealthy. Click the refresh icon to manually trigger a health check. The health check uses a 55-second timeout to accommodate cold starts on scale-to-zero endpoints.

Ultralytics Platform Deployment Card Health Check Healthy With Latency

Cold Start Tolerance

The health-check request allows up to 55 seconds so a scale-to-zero endpoint has time to start.

Logs#

Each deployment card includes a Logs tab for viewing recent log entries:

Ultralytics Platform Deployment Card Logs Tab With Severity Filter

Log Entries#

Each log entry shows:

FieldDescription
SeverityColor-coded bar (see below)
TimestampRequest time (local format)
MessageLog content
HTTP infoStatus code and latency (if applicable)

Filter logs by severity using the filter buttons:

LevelColorDescription
DEBUGGrayDebug messages
INFOBlueNormal requests
WARNINGYellowNon-critical issues
ERRORRedFailed requests
CRITICALDark RedCritical failures

The UI shows the 20 most recent entries. The API defaults to 50 entries per request (max 200).

Debugging Workflow

When investigating errors: first click Errors to filter to ERROR and WARNING entries, then review timestamps and HTTP status codes. Copy logs to clipboard for sharing with your team.

Code Examples#

Each deployment card includes a Code tab showing ready-to-use API code with your actual endpoint URL and API key:

import requests

# Deployment endpoint
url = "https://predict-abc123.run.app/predict"

# Headers with your deployment API key
headers = {"Authorization": "Bearer YOUR_API_KEY"}

# Inference parameters
data = {"conf": 0.25, "iou": 0.7, "imgsz": 640}

# Send image for inference
with open("image.jpg", "rb") as f:
    response = requests.post(url, headers=headers, data=data, files={"file": f})

print(response.json())
Auto-Populated Credentials

When viewing the Code tab in the platform, your actual endpoint URL and API key are automatically filled in. Copy the code and run it directly. See API Keys to generate a key.

Deployment Predict#

The Predict tab on each deployment card provides an inline predict panel — the same interface as the model's Predict tab, but running inference through the deployment endpoint instead of the shared service. This is useful for testing a deployed endpoint directly from the browser. See Inference for parameter details and response formats.

API Endpoints#

Monitoring Overview#

GET /api/monitoring

Returns aggregated metrics for all deployments owned by the authenticated user. Workspace-aware via optional owner query parameter.

Deployment Metrics#

GET /api/deployments/{deploymentId}/metrics?sparkline=true&range=24h

Returns sparkline data and summary metrics for a specific deployment. Refresh interval: 60 seconds.

ParameterTypeDescription
sparklineboolInclude sparkline data
rangestringTime range: 1h, 6h, 24h, 7d, or 30d

Deployment Logs#

GET /api/deployments/{deploymentId}/logs?limit=50&severity=ERROR,WARNING

Returns recent log entries with optional severity filter and pagination.

ParameterTypeDescription
limitintMax entries to return (default: 50, max: 200)
severitystringComma-separated severity filter
pageTokenstringPagination token from previous response

Deployment Health#

GET /api/deployments/{deploymentId}/health

Returns health check status with response latency.

{
    "healthy": true,
    "status": 200,
    "latencyMs": 142,
    "serverTiming": { "db": 8, "ping": 142, "total": 150 }
}

Performance Optimization#

Use monitoring data to optimize your deployments:

If latency is too high:

  1. Verify the model size is appropriate
  2. Consider a closer region
  3. Check the image size sent with each request
Reducing Latency

Try a smaller imgsz value and compare the resulting latency and accuracy for your model. Deploy to a region closer to callers to reduce network latency.

FAQ#

  • The metrics API supports selectable windows from 1 hour through 30 days. The deployment card shows the 20 most recent log entries; the logs API can return up to 200 entries per request and supports pagination.

  • Yes, the deployments page shows all endpoints with aggregated overview cards. Use the table view to compare performance across deployments.

Comments