PRODUCTS // ATLAS
Atlas – Fleet Brain & Mission Archive
Agent registry, mission archive, configuration brain and data engine for your robots.
Atlas keeps track of every agent, mission and log in your fleet. It runs on-prem, at the edge or in the cloud, connects to Blackglass for operations, and feeds ML pipelines for the future.
Atlas in One View
ARCHIVE
Core Archive
- • Time-aligned telemetry & events
- • Search by agent, mission, or tags
- • Debriefs, audits and safety reviews
CONTROL
Fleet Control Plane
- • Agent registry with online status
- • Config templates & version history
- • Software rollout channels
EDGE
Edge & Offline Mode
- • Runs on Monolith or local servers
- • Stores data locally when disconnected
- • Syncs with Core when links return
API-First Design
Operators live in Blackglass, but Atlas is the quiet brain behind the UI. It exposes full REST/gRPC APIs for every function.
- Agents API: Identity, metadata, tags
- Missions API: Plans, states, outcomes
- Logs API: Telemetry, events, attachments
# Example: Fetch Agent Status
GET /api/v1/agents/status?fleet=alpha
{
"agents": [
{ "id": "uav-01", "status": "ONLINE", "mission": "patrol-A" },
{ "id": "ugv-04", "status": "OFFLINE", "last_seen": "2m ago" }
]
}