pub struct PageViewTelemetry { /* private fields */ }
Expand description

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",
    "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);

Implementations

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

Returns custom measurements to submit with the telemetry item.

Returns mutable reference to custom measurements.

Trait Implementations

Formats the value using the given formatter. Read more

Returns the time when this telemetry was measured.

Returns custom properties to submit with the telemetry item.

Returns mutable reference to custom properties.

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

Returns mutable reference to custom tags.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.
Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more