[][src]Struct appinsights::telemetry::OperationTags

pub struct OperationTags<'a> { /* fields omitted */ }

Tag helper type that provides access to context fields grouped under 'operation'.

Methods

impl<'a> OperationTags<'a>[src]

pub fn id(&self) -> Option<&str>[src]

A unique identifier for the operation instance. The operation.id is created by either a request or a page view. All other telemetry sets this to the value for the containing request or page view. Operation.id is used for finding all the telemetry items for a specific operation instance.

pub fn name(&self) -> Option<&str>[src]

The name (group) of the operation. The operation.name is created by either a request or a page view. All other telemetry items set this to the value for the containing request or page view. Operation.name is used for finding all the telemetry items for a group of operations (i.e. 'GET Home/Index').

pub fn parent_id(&self) -> Option<&str>[src]

The unique identifier of the telemetry item's immediate parent.

pub fn synthetic_source(&self) -> Option<&str>[src]

Name of synthetic source. Some telemetry from the application may represent a synthetic traffic. It may be web crawler indexing the web site, site availability tests or traces from diagnostic libraries like Application Insights SDK itself.

pub fn correlation_vector(&self) -> Option<&str>[src]

The correlation vector is a light weight vector clock which can be used to identify and order related events across clients and services.

Auto Trait Implementations

impl<'a> RefUnwindSafe for OperationTags<'a>

impl<'a> Send for OperationTags<'a>

impl<'a> Sync for OperationTags<'a>

impl<'a> Unpin for OperationTags<'a>

impl<'a> UnwindSafe for OperationTags<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,