pub trait TelemetrySink: Send + Sync {
// Required method
fn emit(&self, payload_json: String);
}Expand description
Host-provided transport for runtime telemetry events.
The sink is intentionally synchronous and best-effort: core constructs the JSON payload and hands it off to the host implementation (CLI HTTP/UDP, Desktop fetch proxy, etc.).