MCPcopy Create free account
hub / github.com/NVIDIA/OpenShell / emit_provider_lifecycle

Function emit_provider_lifecycle

crates/openshell-core/src/telemetry.rs:495–509  ·  view source on GitHub ↗
(
    operation: LifecycleOperation,
    outcome: TelemetryOutcome,
    provider_profile: ProviderProfile,
)

Source from the content-addressed store, hash-verified

493}
494
495pub fn emit_provider_lifecycle(
496 operation: LifecycleOperation,
497 outcome: TelemetryOutcome,
498 provider_profile: ProviderProfile,
499) {
500 emit_event(
501 "openshell_provider_lifecycle_event",
502 json!({
503 "nvidiaSource": SOURCE.as_str(),
504 "operation": operation.as_str(),
505 "outcome": outcome.as_str(),
506 "providerProfile": provider_profile.as_str(),
507 }),
508 );
509}
510
511pub fn emit_sandbox_create(
512 outcome: TelemetryOutcome,

Calls 1

emit_eventFunction · 0.85