[][src]Struct appinsights::telemetry::EventTelemetry

pub struct EventTelemetry { /* fields omitted */ }

Represents structured event records.

Examples

use appinsights::telemetry::{Telemetry, EventTelemetry};

// create a telemetry item
let mut telemetry = EventTelemetry::new("Starting data processing".to_string());

// attach custom properties, measurements and context tags
telemetry.properties_mut().insert("component".to_string(), "data_processor".to_string());
telemetry.tags_mut().insert("os_version".to_string(), "linux x86_64".to_string());
telemetry.measurements_mut().insert("records_count".to_string(), 115.0);

// submit telemetry item to server
client.track(telemetry);

Methods

impl EventTelemetry[src]

pub fn new(name: String) -> Self[src]

Creates an event telemetry item with specified name.

pub fn measurements(&self) -> &Measurements[src]

Returns custom measurements to submit with the telemetry item.

pub fn measurements_mut(&mut self) -> &mut Measurements[src]

Returns mutable reference to custom measurements.

Trait Implementations

impl Telemetry for EventTelemetry[src]

fn timestamp(&self) -> DateTime<Utc>[src]

Returns the time when this telemetry was measured.

fn properties(&self) -> &Properties[src]

Returns custom properties to submit with the telemetry item.

fn properties_mut(&mut self) -> &mut Properties[src]

Returns mutable reference to custom properties.

fn tags(&self) -> &ContextTags[src]

Returns context data containing extra, optional tags. Overrides values found on client telemetry context.

fn tags_mut(&mut self) -> &mut ContextTags[src]

Returns mutable reference to custom tags.

Auto Trait Implementations

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>,