pub enum TransactionOrSpan {
Transaction(Transaction),
Span(Span),
}
Expand description
A wrapper that groups a Transaction
and a Span
together.
Variants§
Implementations§
Source§impl TransactionOrSpan
impl TransactionOrSpan
Sourcepub fn set_data(&self, key: &str, value: Value)
pub fn set_data(&self, key: &str, value: Value)
Set some extra information to be sent with this Transaction/Span.
Sourcepub fn get_trace_context(&self) -> TraceContext
pub fn get_trace_context(&self) -> TraceContext
Get the TransactionContext of the Transaction/Span.
Note that this clones the underlying value.
Sourcepub fn get_status(&self) -> Option<SpanStatus>
pub fn get_status(&self) -> Option<SpanStatus>
Set the status of the Transaction/Span.
Sourcepub fn set_status(&self, status: SpanStatus)
pub fn set_status(&self, status: SpanStatus)
Set the status of the Transaction/Span.
Sourcepub fn set_request(&self, request: Request)
pub fn set_request(&self, request: Request)
Set the HTTP request information for this Transaction/Span.
Sourcepub fn iter_headers(&self) -> TraceHeadersIter ⓘ
pub fn iter_headers(&self) -> TraceHeadersIter ⓘ
Returns the headers needed for distributed tracing.
Sourcepub fn is_sampled(&self) -> bool
pub fn is_sampled(&self) -> bool
Get the sampling decision for this Transaction/Span.
Sourcepub fn start_child(&self, op: &str, description: &str) -> Span
pub fn start_child(&self, op: &str, description: &str) -> Span
Starts a new child Span with the given op
and description
.
The span must be explicitly finished via Span::finish
, as it will
otherwise not be sent to Sentry.
Sourcepub fn finish(self)
pub fn finish(self)
Finishes the Transaction/Span.
This records the end timestamp and either sends the inner Transaction
directly to Sentry, or adds the Span
to its transaction.
Trait Implementations§
Source§impl Clone for TransactionOrSpan
impl Clone for TransactionOrSpan
Source§fn clone(&self) -> TransactionOrSpan
fn clone(&self) -> TransactionOrSpan
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more