Skip to main content

MetricKind

Enum MetricKind 

Source
pub enum MetricKind {
Show 13 variants CpuLoad, MemoryPressure, Latency, Coherence, ErrorRate, DiskIo, SwapUsage, ImaginationQuality, ResearchOutput, ScenarioConfidence, SimulationVariance, ConformalCoverage, BrierScore,
}
Expand description

Kinds of metrics tracked by the self-model.

Variants§

§

CpuLoad

CPU load fraction (0.0 = idle, 1.0 = saturated).

§

MemoryPressure

Memory pressure fraction (0.0 = plenty, 1.0 = critical).

§

Latency

Dispatch latency in milliseconds.

§

Coherence

Citta coherence score (0.0–1.0).

§

ErrorRate

Tool error rate fraction (0.0 = no errors, 1.0 = all errors).

§

DiskIo

Disk I/O rate fraction (0.0 = idle, 1.0 = saturated).

§

SwapUsage

Swap usage fraction (0.0 = none, 1.0 = full).

§

ImaginationQuality

Imagination quality score (0.0–1.0) — scenario evaluation score.

§

ResearchOutput

Research output rate (0.0–1.0) — hypotheses generated per cycle.

§

ScenarioConfidence

Scenario confidence (0.0–1.0) — MC rollout positive fraction.

§

SimulationVariance

Simulation variance (0.0–1.0) — MC std dev (lower is better).

§

ConformalCoverage

Conformal empirical coverage (0.0–1.0) — fraction of prediction sets/intervals that contained the truth in the latest monitor run. Drift monitoring: sustained drops below the target (1 − α) mean the calibration is stale and should be re-fit.

§

BrierScore

Average Brier score of resolved predictions (lower is better). Rising Brier = deteriorating calibration honesty.

Implementations§

Source§

impl MetricKind

Source

pub const fn as_str(self) -> &'static str

Human-readable name.

Source

pub const fn all() -> &'static [Self]

All metric kinds.

Source

pub const fn higher_is_better(self) -> bool

Whether higher values are better (true) or worse (false).

Source

pub const fn default_warning(self) -> f32

Default warning threshold for this metric.

Source

pub const fn default_critical(self) -> f32

Default critical threshold for this metric.

Trait Implementations§

Source§

impl Clone for MetricKind

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for MetricKind

Source§

impl Debug for MetricKind

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for MetricKind

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl Eq for MetricKind

Source§

impl Hash for MetricKind

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for MetricKind

Source§

fn eq(&self, other: &Self) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for MetricKind

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for MetricKind

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.