Struct opentelemetry_application_insights::PipelineBuilder[][src]

pub struct PipelineBuilder<C> { /* fields omitted */ }

Application Insights exporter pipeline builder

Implementations

impl<C> PipelineBuilder<C>[src]

pub fn with_client<NC>(self, client: NC) -> PipelineBuilder<NC>[src]

Set HTTP client, which the exporter will use to send telemetry to Application Insights.

Use this to set an HTTP client which fits your async runtime.

pub fn with_endpoint(
    self,
    endpoint: &str
) -> Result<Self, Box<dyn StdError + Send + Sync + 'static>>
[src]

Set endpoint used to ingest telemetry. This should consist of scheme and authrity. The exporter will call /v2/track on the specified endpoint.

Default: https://dc.services.visualstudio.com

Note: This example requires reqwest and the reqwest-client-blocking feature.

let tracer = opentelemetry_application_insights::new_pipeline("...".into())
    .with_client(reqwest::blocking::Client::new())
    .with_endpoint("https://westus2-0.in.applicationinsights.azure.com")?
    .install_simple();

pub fn with_sample_rate(self, sample_rate: f64) -> Self[src]

Set sample rate, which is passed through to Application Insights. It should be a value between 0 and 1 and match the rate given to the sampler.

Default: 1.0

Note: This example requires reqwest and the reqwest-client-blocking feature.

let tracer = opentelemetry_application_insights::new_pipeline("...".into())
    .with_client(reqwest::blocking::Client::new())
    .with_sample_rate(0.3)
    .install_simple();

pub fn with_trace_config(self, config: Config) -> Self[src]

Assign the SDK config for the exporter pipeline.

Note: This example requires reqwest and the reqwest-client-blocking feature.

let tracer = opentelemetry_application_insights::new_pipeline("...".into())
    .with_client(reqwest::blocking::Client::new())
    .with_trace_config(sdk::trace::Config::default().with_resource(
        sdk::Resource::new(vec![
            KeyValue::new("service.name", "my-application"),
        ]),
    ))
    .install_simple();

impl<C> PipelineBuilder<C> where
    C: HttpClient + 'static, 
[src]

pub fn build_simple(self) -> TracerProvider[src]

Build a configured TracerProvider with a simple span processor.

pub fn build_batch<R: Runtime>(self, runtime: R) -> TracerProvider[src]

Build a configured TracerProvider with a batch span processor using the specified runtime.

pub fn install_simple(self) -> Tracer[src]

Install an Application Insights pipeline with the recommended defaults.

This registers a global TracerProvider. See the build_simple function if you don’t need that.

pub fn install_batch<R: Runtime>(self, runtime: R) -> Tracer[src]

Install an Application Insights pipeline with the recommended defaults.

This registers a global TracerProvider. See the build_simple function if you don’t need that.

Trait Implementations

impl<C: Debug> Debug for PipelineBuilder<C>[src]

Auto Trait Implementations

impl<C> !RefUnwindSafe for PipelineBuilder<C>

impl<C> Send for PipelineBuilder<C> where
    C: Send

impl<C> Sync for PipelineBuilder<C> where
    C: Sync

impl<C> Unpin for PipelineBuilder<C> where
    C: Unpin

impl<C> !UnwindSafe for PipelineBuilder<C>

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> FutureExt for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

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

impl<T> WithSubscriber for T[src]