[][src]Struct appinsights::telemetry::RequestTelemetry

pub struct RequestTelemetry { /* fields omitted */ }

Represents completion of an external request to the application and contains a summary of that request execution and results. This struct is focused on HTTP requests.

Examples

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

// create a telemetry item
let mut telemetry = RequestTelemetry::new(
    Method::GET,
    "https://api.github.com/dmolokanov/appinsights-rs".parse::<Uri>().unwrap(),
    Duration::from_millis(182),
    "200".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("body_size".to_string(), 115.0);

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

Methods

impl RequestTelemetry[src]

pub fn new(
    method: Method,
    uri: Uri,
    duration: StdDuration,
    response_code: String
) -> Self
[src]

Creates a new telemetry item for HTTP request.

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.

pub fn is_success(&self) -> bool[src]

Returns an indication of successful or unsuccessful call.

Trait Implementations

impl Telemetry for RequestTelemetry[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>,