stasis-rs 0.9.3

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

#[derive(Clone, Default)]
pub struct NoopRuntimeMetrics;

impl RuntimeMetrics for NoopRuntimeMetrics {
    fn incr_counter(&self, _name: &str, _value: u64) {}

    fn observe_duration_ms(&self, _name: &str, _duration_ms: u64) {}
}