stasis-rs 0.9.3

Durable AI orchestration framework with runtime jobs, lineage, and memory integration
1
2
3
4
5
6
7
use crate::ports::outbound::runtime::runtime_metrics::RuntimeMetrics;
use crate::ports::outbound::runtime::runtime_tracing::RuntimeTracing;

/// Combined metrics + tracing handle wired through the runtime builder.
pub trait RuntimeTelemetry: RuntimeMetrics + RuntimeTracing {}

impl<T> RuntimeTelemetry for T where T: RuntimeMetrics + RuntimeTracing {}