New diagnostics::vastai (record/sampler/shipper/logs) + vastai-synth crate for reproducible synthetic fleet telemetry. Dashboard live_collector unifies collector + fleet SSE UI; pp example adds vastai_mon, profiles, docker base image, scripts. Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
20 lines
517 B
TOML
20 lines
517 B
TOML
[package]
|
|
name = "vastai-synth"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
description = "Synthetic telemetry generator for the vastai node observational stream"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "vastai_synth"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "vastai-synth"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
distribution = { path = "../distribution", features = ["collector"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "net", "time", "io-util"] }
|