pub struct PlanTrace<T> {
filter: Option<SmallVec<[NamedPlan; 4]>>,
path: Mutex<String>,
start: Mutex<Option<Instant>>,
times: Mutex<Vec<Instant>>,
entries: Mutex<Vec<TraceEntry<T>>>,
}
Expand description
A tracing layer used to accumulate a sequence of explainable plans.
Fields§
§filter: Option<SmallVec<[NamedPlan; 4]>>
A specific concrete path to find in this trace. If present,
PlanTrace::push
will only collect traces if the current path is a
prefix of find.
path: Mutex<String>
A path of segments identifying the spans in the current ancestor-or-self
chain. The current path is used when accumulating new entries
.
start: Mutex<Option<Instant>>
The first time when entering a span (None no span was entered yet).
times: Mutex<Vec<Instant>>
A path of times at which the spans in the current ancestor-or-self chain
were started. The duration since the last time is used when accumulating
new entries
.
entries: Mutex<Vec<TraceEntry<T>>>
A sequence of entries associating for a specific plan type T
.
Implementations§
source§impl<T: 'static + Clone> PlanTrace<T>
impl<T: 'static + Clone> PlanTrace<T>
sourcepub fn new(filter: Option<SmallVec<[NamedPlan; 4]>>) -> Self
pub fn new(filter: Option<SmallVec<[NamedPlan; 4]>>) -> Self
Create a new trace for plans of type T
that will only accumulate
TraceEntry
instances along the prefix of the given path
.
sourcefn is_enabled(&self, meta: &Metadata<'_>) -> bool
fn is_enabled(&self, meta: &Metadata<'_>) -> bool
Check if a subscriber layer of this kind will be interested in tracing spans and events with the given metadata.
sourcepub fn drain_as_vec(&self) -> Vec<TraceEntry<T>>
pub fn drain_as_vec(&self) -> Vec<TraceEntry<T>>
Drain the trace data collected so far.
Note that this method will mutate the internal state of the enclosing
PlanTrace
even though its receiver is not &mut self
. This quirk is
required because the tracing Dispatch
does not have downcast_mut
method.
sourcepub fn collect_as_vec(&self) -> Vec<TraceEntry<T>>
pub fn collect_as_vec(&self) -> Vec<TraceEntry<T>>
Retrieve the trace data collected so far while leaving it in place.
sourcepub fn find(&self, path: &str) -> Option<TraceEntry<T>>where
T: Clone,
pub fn find(&self, path: &str) -> Option<TraceEntry<T>>where
T: Clone,
Find and return a clone of the TraceEntry
for the given path
.
sourcefn push(&self, plan: &T)where
T: Clone,
fn push(&self, plan: &T)where
T: Clone,
Push a trace entry for the given plan
to the current trace.
This is a noop if
- the call is within a context without an enclosing span, or if
PlanTrace::filter
is set not equal toPlanTrace::current_path
.
sourcefn current_path(&self) -> Option<String>
fn current_path(&self) -> Option<String>
Helper method: get a copy of the current path.
If PlanTrace::filter
is set, this will also check the current path
against the find
entry and return None
if the two differ.
source§impl PlanTrace<UsedIndexes>
impl PlanTrace<UsedIndexes>
sourcepub fn used_indexes_for(&self, plan_path: &str) -> UsedIndexes
pub fn used_indexes_for(&self, plan_path: &str) -> UsedIndexes
Get the UsedIndexes
corresponding to the given plan_path
.
Note that the path under which a UsedIndexes
entry is traced might
differ from the path of the plan_path
of the plan that needs it.
Trait Implementations§
source§impl<S, T> Filter<S> for PlanTrace<T>where
S: Subscriber,
T: 'static + Clone,
impl<S, T> Filter<S> for PlanTrace<T>where
S: Subscriber,
T: 'static + Clone,
source§fn enabled(&self, meta: &Metadata<'_>, _cx: &Context<'_, S>) -> bool
fn enabled(&self, meta: &Metadata<'_>, _cx: &Context<'_, S>) -> bool
true
if this layer is interested in a span or event with the
given Metadata
in the current Context
, similarly to
Subscriber::enabled
. Read moresource§fn callsite_enabled(&self, meta: &'static Metadata<'static>) -> Interest
fn callsite_enabled(&self, meta: &'static Metadata<'static>) -> Interest
source§fn event_enabled(&self, event: &Event<'_>, cx: &Context<'_, S>) -> bool
fn event_enabled(&self, event: &Event<'_>, cx: &Context<'_, S>) -> bool
Layer]'s [
on_event], to determine if
on_event` should be called. Read moresource§fn max_level_hint(&self) -> Option<LevelFilter>
fn max_level_hint(&self) -> Option<LevelFilter>
source§fn on_new_span(&self, attrs: &Attributes<'_>, id: &Id, ctx: Context<'_, S>)
fn on_new_span(&self, attrs: &Attributes<'_>, id: &Id, ctx: Context<'_, S>)
source§fn on_enter(&self, id: &Id, ctx: Context<'_, S>)
fn on_enter(&self, id: &Id, ctx: Context<'_, S>)
source§impl<S, T> Layer<S> for PlanTrace<T>where
S: Subscriber,
T: 'static,
impl<S, T> Layer<S> for PlanTrace<T>where
S: Subscriber,
T: 'static,
A layer::Layer
implementation for PlanTrace
.
Populates the data
wrapped by the PlanTrace
instance with
TraceEntry
values, one for each span with attached plan in its
extensions map.
source§fn on_new_span(&self, attrs: &Attributes<'_>, _id: &Id, _ctx: Context<'_, S>)
fn on_new_span(&self, attrs: &Attributes<'_>, _id: &Id, _ctx: Context<'_, S>)
Attributes
and Id
.source§fn on_enter(&self, _id: &Id, _ctx: Context<'_, S>)
fn on_enter(&self, _id: &Id, _ctx: Context<'_, S>)
source§fn on_exit(&self, _id: &Id, _ctx: Context<'_, S>)
fn on_exit(&self, _id: &Id, _ctx: Context<'_, S>)
source§fn on_register_dispatch(&self, subscriber: &Dispatch)
fn on_register_dispatch(&self, subscriber: &Dispatch)
Subscriber
. Read moresource§fn register_callsite(&self, metadata: &'static Metadata<'static>) -> Interest
fn register_callsite(&self, metadata: &'static Metadata<'static>) -> Interest
Subscriber::register_callsite
. Read moresource§fn enabled(&self, metadata: &Metadata<'_>, ctx: Context<'_, S>) -> bool
fn enabled(&self, metadata: &Metadata<'_>, ctx: Context<'_, S>) -> bool
true
if this layer is interested in a span or event with the
given metadata
in the current Context
, similarly to
Subscriber::enabled
. Read moresource§fn on_record(&self, _span: &Id, _values: &Record<'_>, _ctx: Context<'_, S>)
fn on_record(&self, _span: &Id, _values: &Record<'_>, _ctx: Context<'_, S>)
Id
recorded the given
values
.source§fn on_follows_from(&self, _span: &Id, _follows: &Id, _ctx: Context<'_, S>)
fn on_follows_from(&self, _span: &Id, _follows: &Id, _ctx: Context<'_, S>)
span
recorded that it
follows from the span with the ID follows
.source§fn on_event(&self, _event: &Event<'_>, _ctx: Context<'_, S>)
fn on_event(&self, _event: &Event<'_>, _ctx: Context<'_, S>)
source§fn on_close(&self, _id: Id, _ctx: Context<'_, S>)
fn on_close(&self, _id: Id, _ctx: Context<'_, S>)
source§fn on_id_change(&self, _old: &Id, _new: &Id, _ctx: Context<'_, S>)
fn on_id_change(&self, _old: &Id, _new: &Id, _ctx: Context<'_, S>)
source§fn and_then<L>(self, layer: L) -> Layered<L, Self, S>
fn and_then<L>(self, layer: L) -> Layered<L, Self, S>
Layer
, returning a Layered
struct implementing Layer
. Read moresource§fn with_subscriber(self, inner: S) -> Layered<Self, S>where
Self: Sized,
fn with_subscriber(self, inner: S) -> Layered<Self, S>where
Self: Sized,
Layer
with the given Subscriber
, returning a
Layered
struct that implements Subscriber
. Read moreAuto Trait Implementations§
impl<T> !Freeze for PlanTrace<T>
impl<T> RefUnwindSafe for PlanTrace<T>
impl<T> Send for PlanTrace<T>where
T: Send,
impl<T> Sync for PlanTrace<T>where
T: Send,
impl<T> Unpin for PlanTrace<T>where
T: Unpin,
impl<T> UnwindSafe for PlanTrace<T>
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
source§impl<F, S> FilterExt<S> for Fwhere
F: Filter<S>,
impl<F, S> FilterExt<S> for Fwhere
F: Filter<S>,
source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request
source§impl<T, U> OverrideFrom<Option<&T>> for Uwhere
U: OverrideFrom<T>,
impl<T, U> OverrideFrom<Option<&T>> for Uwhere
U: OverrideFrom<T>,
source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
source§fn into_rust(self) -> Result<R, TryFromProtoError>
fn into_rust(self) -> Result<R, TryFromProtoError>
RustType::from_proto
.source§fn from_rust(rust: &R) -> P
fn from_rust(rust: &R) -> P
RustType::into_proto
.source§impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
impl<'a, S, T> Semigroup<&'a S> for Twhere
T: Semigroup<S>,
source§fn plus_equals(&mut self, rhs: &&'a S)
fn plus_equals(&mut self, rhs: &&'a S)
std::ops::AddAssign
, for types that do not implement AddAssign
.