[][src]Struct appinsights::telemetry::PageViewTelemetry

pub struct PageViewTelemetry { /* fields omitted */ }

Represents generic actions on a page like a button click.

Examples

use appinsights::telemetry::{Telemetry, PageViewTelemetry};
use http::Uri;
use std::time::Duration;

// create a telemetry item
let mut telemetry = PageViewTelemetry::new(
    "check github repo page".to_string(),
    "https://github.com/dmolokanov/appinsights-rs".parse::<Uri>().unwrap(),
);

// 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 PageViewTelemetry[src]

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

Creates a new page view telemetry item with the specified name and url.

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