Welcome to Zelos¶
Zelos is the data platform for mission-critical systems. We help teams observe, control, and test their system on a collaborative platform – from prototype to production.
-
Zelos App
The mission control center for capture and control.
-
Zelos SDK
Stream data from your code with minimal overhead. Python, Rust, and Go supported.
-
Zelos Agent
Collect, buffer, and stream data from all your systems. Runs anywhere.
-
Release Notes
Updates on recent versions of all products.
Quick Start¶
Get your first data flowing in seconds:
#!/usr/bin/env -S uv run --script
# /// script
# requires-python = ">=3.10"
# dependencies = [ "zelos-sdk" ]
# ///
import random
import time
import zelos_sdk
zelos_sdk.init()
src = zelos_sdk.TraceSource("example_source")
while True:
src.log("example/event", {"value": random.randint(0, 10)})
time.sleep(0.01)
Then open Zelos App to see your data streaming live!
Documentation Overview¶
Getting Started¶
- What is Zelos? - Platform overview and value
- Core Concepts - Mental models for using Zelos effectively
- SDK Quick Start - Hands-on introduction
Component Guides¶
- Zelos App Guide - Master the visualization interface
- SDK Documentation - Integrate Zelos into your applications
Installation¶
- App Installation - Desktop app for all platforms
- SDK Installation - Language-specific setup
- Agent Installation - System service deployment
Reference¶
- API & Guides - Language references and external docs