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.
12 lines
411 B
Rust
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;
|