pub struct NodeMetrics {
pub duration_ms: Option<u64>,
pub token_usage: Option<TokenUsage>,
pub cost_usd: Option<f64>,
pub api_calls: u32,
pub bytes_transferred: u64,
pub memory_bytes: Option<u64>,
pub custom: HashMap<String, Value>,
}Expand description
Execution metrics for a node
Fields§
§duration_ms: Option<u64>Execution duration in milliseconds
token_usage: Option<TokenUsage>Token usage for LLM nodes
cost_usd: Option<f64>Estimated cost in USD (for LLM API calls)
api_calls: u32API calls made by this node
bytes_transferred: u64Bytes transferred (input + output)
memory_bytes: Option<u64>Memory usage in bytes (if tracked)
custom: HashMap<String, Value>Custom metrics (provider-specific)
Trait Implementations§
Source§impl Clone for NodeMetrics
impl Clone for NodeMetrics
Source§fn clone(&self) -> NodeMetrics
fn clone(&self) -> NodeMetrics
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for NodeMetrics
impl Debug for NodeMetrics
Source§impl Default for NodeMetrics
impl Default for NodeMetrics
Source§fn default() -> NodeMetrics
fn default() -> NodeMetrics
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for NodeMetrics
impl<'de> Deserialize<'de> for NodeMetrics
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for NodeMetrics
impl RefUnwindSafe for NodeMetrics
impl Send for NodeMetrics
impl Sync for NodeMetrics
impl Unpin for NodeMetrics
impl UnwindSafe for NodeMetrics
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more