Zelos CLI Installation¶
The Zelos CLI lets you interact with the Zelos App, Zelos Agent, or Zelos Cloud directly from the terminal.
Quick Install¶
Manual Install¶
Download the binary for your platform, extract, and place it somewhere on your PATH:
Download and extract manually:
- Download zelos-x86_64-pc-windows-msvc.zip
- Extract
zelos.exe - Move it to a directory on your
PATH, or add its location toPATH
Verify¶
Commands¶
Usage: zelos [OPTIONS] <COMMAND>
Commands:
status Print Zelos system status
login Login to Zelos Cloud
logout Logout from Zelos Cloud
actions Interact with the Actions gRPC service
extensions Manage Zelos Agent extensions
trace Trace file operations
update Update the Zelos CLI to the latest version
version Print version
help Print this message or the help of the given subcommand(s)
Options:
-q, --quiet Disable logging to console
-v, --verbose... Log to console, with increasing verbosity
-h, --help Print help
-V, --version Print version
Common Workflows¶
Login to Zelos Cloud:
Check connection status:
Merge trace files:
# Merge specific .trz files
zelos trace merge trace1.trz trace2.trz -o combined.trz
# Merge all .trz files in a directory
zelos trace merge ./traces/ -o combined.trz
# Mix files and directories
zelos trace merge ./traces/ extra.trz -o combined.trz
Manage extensions on a local agent:
# List installed extensions
zelos extensions list
# Install an extension
zelos extensions install acme/canbus-listener
# Start an extension
zelos extensions start acme-canbus-listener
Configuration¶
The CLI stores credentials in your system keyring and configuration in ~/.zelos/.
| Environment Variable | Description |
|---|---|
RUST_LOG |
Override log level (e.g. RUST_LOG=debug) |
Uninstall¶
What's Next?¶
-
Install the SDK
Stream data from your application
-
Install the App
Visualize your data in real-time