swactor/apps/myelin/src/observability/mod.rs
Zachery Aaron Shores-Chmielewski c7d9c28e2b refactor(myelin): rework control and runtime integration
Add actor-backed manual node provisioning, control-plane endpoints, and fleet UI assets with durable provider lifecycle handling.

Simplify Myelin orchestration, node runtime, staging, and telemetry paths while removing obsolete engine-builder, dashboard-view, and local-mock implementations.

Align runtime delivery, data-plane, distribution, job-runner, process, telemetry, dashboard, Vast.ai integrations, and their tests with the revised actor and transport contracts.
2026-08-20 01:46:11 +04:00

12 lines
411 B
Rust

//! Myelin observability public surface.
pub(crate) mod benchmark;
pub(crate) mod frame_archive;
pub(crate) mod frame_collector;
// Lifecycle event schema is currently consumed only by the test harness
// (mock nodes + guarantee tests); the production binary never constructs it.
#[cfg(test)]
pub(crate) mod lifecycle;
pub(crate) mod orch_telemetry;
pub(crate) mod provisioning_logs;
pub(crate) mod telemetry;