Struct opentelemetry_application_insights::PipelineBuilder [−][src]
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]
self,
endpoint: &str
) -> Result<Self, Box<dyn StdError + Send + Sync + 'static>>
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]
C: HttpClient + 'static,
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
Auto Trait Implementations
impl<C> !RefUnwindSafe for PipelineBuilder<C>
impl<C> Send for PipelineBuilder<C> where
C: Send,
C: Send,
impl<C> Sync for PipelineBuilder<C> where
C: Sync,
C: Sync,
impl<C> Unpin for PipelineBuilder<C> where
C: Unpin,
C: Unpin,
impl<C> !UnwindSafe for PipelineBuilder<C>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> From<T> for T
[src]
impl<T> FutureExt for T
[src]
pub fn with_context(self, otel_cx: Context) -> WithContext<Self>
[src]
pub fn with_current_context(self) -> WithContext<Self>
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
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]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,
pub fn vzip(self) -> V
impl<T> WithSubscriber for T
[src]
pub fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
[src]
S: Into<Dispatch>,