pub struct TracingConfig {
    pub service_name: String,
    pub exporter_type: ExporterType,
    pub jaeger_endpoint: Option<String>,
    pub otlp_endpoint: Option<String>,
    pub sampling_rate: f64,
    pub environment: String,
    pub service_version: Option<String>,
}Expand description
Tracing configuration
Fields§
§service_name: StringService name for traces
exporter_type: ExporterTypeExporter type (Jaeger or OTLP)
jaeger_endpoint: Option<String>Jaeger endpoint (e.g., “http://localhost:14268/api/traces”)
otlp_endpoint: Option<String>OTLP endpoint (e.g., “http://localhost:4317”)
sampling_rate: f64Sampling rate (0.0 to 1.0)
environment: StringEnvironment (e.g., “development”, “production”)
service_version: Option<String>Service version
Implementations§
Source§impl TracingConfig
 
impl TracingConfig
Sourcepub fn with_jaeger(service_name: String, endpoint: String) -> Self
 
pub fn with_jaeger(service_name: String, endpoint: String) -> Self
Create config for Jaeger exporter
Sourcepub fn with_otlp(service_name: String, endpoint: String) -> Self
 
pub fn with_otlp(service_name: String, endpoint: String) -> Self
Create config for OTLP exporter
Sourcepub fn with_sampling_rate(self, rate: f64) -> Self
 
pub fn with_sampling_rate(self, rate: f64) -> Self
Set sampling rate
Sourcepub fn with_environment(self, env: String) -> Self
 
pub fn with_environment(self, env: String) -> Self
Set environment
Sourcepub fn with_service_version(self, version: String) -> Self
 
pub fn with_service_version(self, version: String) -> Self
Set service version
Trait Implementations§
Source§impl Clone for TracingConfig
 
impl Clone for TracingConfig
Source§fn clone(&self) -> TracingConfig
 
fn clone(&self) -> TracingConfig
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from 
source. Read moreSource§impl Debug for TracingConfig
 
impl Debug for TracingConfig
Auto Trait Implementations§
impl Freeze for TracingConfig
impl RefUnwindSafe for TracingConfig
impl Send for TracingConfig
impl Sync for TracingConfig
impl Unpin for TracingConfig
impl UnwindSafe for TracingConfig
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
 
impl<T> BorrowMut<T> for Twhere
    T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
Source§impl<T> FutureExt for T
 
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
 
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
 
fn with_current_context(self) -> WithContext<Self>
Source§impl<T> Instrument for T
 
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
 
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
 
fn into_request(self) -> Request<T>
Wrap the input message 
T in a tonic::Request