[][src]Struct appinsights::telemetry::AvailabilityTelemetry

pub struct AvailabilityTelemetry { /* fields omitted */ }

Represents the result of executing an availability test.

Examples

use appinsights::telemetry::{Telemetry, AvailabilityTelemetry};
use std::time::Duration;

// create a telemetry item
let mut telemetry = AvailabilityTelemetry::new(
    "PING https://api.github.com/dmolokanov/appinsights-rs".to_string(),
     Duration::from_secs(2),
     true,
);

// 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("body_size".to_string(), 115.0);

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

Methods

impl AvailabilityTelemetry[src]

pub fn new(name: String, duration: StdDuration, success: bool) -> Self[src]

Creates a new availability telemetry item with the specified test name, duration and success code.

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