pub enum ObservationType {
Span,
Generation,
Agent,
Tool,
Chain,
Retriever,
Evaluator,
Embedding,
Guardrail,
Event,
}Available on crate feature
otel only.Expand description
Langfuse observation kinds — the value written under
LANGFUSE_OBSERVATION_TYPE.
Catalog: https://langfuse.com/docs/observability/features/observation-types
Variants§
Span
Generic span (default fallback).
Generation
LLM generation — chat / completion call.
Agent
Agent invocation — root of an agent loop.
Tool
Tool execution.
Chain
Multi-step chain (compaction, MCP control-plane calls, …).
Retriever
Vector / document retriever step.
Evaluator
LLM-as-judge or other automated evaluator.
Embedding
Embedding generation step.
Guardrail
Policy / safety guardrail check.
Event
Discrete event marker.
Implementations§
Trait Implementations§
Source§impl Clone for ObservationType
impl Clone for ObservationType
Source§fn clone(&self) -> ObservationType
fn clone(&self) -> ObservationType
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ObservationType
Source§impl Debug for ObservationType
impl Debug for ObservationType
impl Eq for ObservationType
Source§impl PartialEq for ObservationType
impl PartialEq for ObservationType
Source§fn eq(&self, other: &ObservationType) -> bool
fn eq(&self, other: &ObservationType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ObservationType
Auto Trait Implementations§
impl Freeze for ObservationType
impl RefUnwindSafe for ObservationType
impl Send for ObservationType
impl Sync for ObservationType
impl Unpin for ObservationType
impl UnsafeUnpin for ObservationType
impl UnwindSafe for ObservationType
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.