Struct sentry_core::protocol::Transaction
source · pub struct Transaction<'a> {Show 14 fields
pub event_id: Uuid,
pub name: Option<String>,
pub release: Option<Cow<'a, str>>,
pub environment: Option<Cow<'a, str>>,
pub tags: BTreeMap<String, String, Global>,
pub extra: BTreeMap<String, Value, Global>,
pub sdk: Option<Cow<'a, ClientSdkInfo>>,
pub platform: Cow<'a, str>,
pub timestamp: Option<SystemTime>,
pub start_timestamp: SystemTime,
pub spans: Vec<Span, Global>,
pub contexts: BTreeMap<String, Context, Global>,
pub request: Option<Request>,
pub active_thread_id: Option<u64>,
}Expand description
Represents a tracing transaction.
Fields§
§event_id: UuidThe ID of the event
name: Option<String>The transaction name.
release: Option<Cow<'a, str>>A release identifier.
environment: Option<Cow<'a, str>>An optional environment identifier.
Optional tags to be attached to the event.
extra: BTreeMap<String, Value, Global>Optional extra information to be sent with the event.
sdk: Option<Cow<'a, ClientSdkInfo>>SDK metadata
platform: Cow<'a, str>A platform identifier for this event.
timestamp: Option<SystemTime>The end time of the transaction.
start_timestamp: SystemTimeThe start time of the transaction.
spans: Vec<Span, Global>The collection of finished spans part of this transaction.
contexts: BTreeMap<String, Context, Global>Optional contexts.
request: Option<Request>Optionally HTTP request data to be sent along.
active_thread_id: Option<u64>ID of the thread where the transaction was started
Implementations§
source§impl<'a> Transaction<'a>
impl<'a> Transaction<'a>
sourcepub fn new() -> Transaction<'a>
pub fn new() -> Transaction<'a>
Creates a new span transaction the current timestamp and random id.
sourcepub fn into_owned(self) -> Transaction<'static>
pub fn into_owned(self) -> Transaction<'static>
Creates a fully owned version of the transaction.
Trait Implementations§
source§impl<'a> Clone for Transaction<'a>
impl<'a> Clone for Transaction<'a>
source§fn clone(&self) -> Transaction<'a>
fn clone(&self) -> Transaction<'a>
Returns a copy 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<'a> Debug for Transaction<'a>
impl<'a> Debug for Transaction<'a>
source§impl<'a> Default for Transaction<'a>
impl<'a> Default for Transaction<'a>
source§fn default() -> Transaction<'a>
fn default() -> Transaction<'a>
Returns the “default value” for a type. Read more
source§impl<'de, 'a> Deserialize<'de> for Transaction<'a>
impl<'de, 'a> Deserialize<'de> for Transaction<'a>
source§fn deserialize<__D>(
__deserializer: __D
) -> Result<Transaction<'a>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D
) -> Result<Transaction<'a>, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<'a> Display for Transaction<'a>
impl<'a> Display for Transaction<'a>
source§impl From<Transaction<'static>> for Envelope
impl From<Transaction<'static>> for Envelope
source§fn from(transaction: Transaction<'static>) -> Envelope
fn from(transaction: Transaction<'static>) -> Envelope
Converts to this type from the input type.
source§impl From<Transaction<'static>> for EnvelopeItem
impl From<Transaction<'static>> for EnvelopeItem
source§fn from(transaction: Transaction<'static>) -> EnvelopeItem
fn from(transaction: Transaction<'static>) -> EnvelopeItem
Converts to this type from the input type.
source§impl<'a> PartialEq<Transaction<'a>> for Transaction<'a>
impl<'a> PartialEq<Transaction<'a>> for Transaction<'a>
source§fn eq(&self, other: &Transaction<'a>) -> bool
fn eq(&self, other: &Transaction<'a>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl<'a> Serialize for Transaction<'a>
impl<'a> Serialize for Transaction<'a>
source§fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more