pub struct TelemetryEnvOverrides {
pub otel_endpoint: Option<String>,
pub otel_traces: Option<bool>,
pub otel_metrics: Option<bool>,
pub export_timeout_ms: Option<u64>,
pub service_environment: Option<String>,
}Expand description
Telemetry exporter settings read from relay-specific environment variables.
Fields§
§otel_endpoint: Option<String>§otel_traces: Option<bool>§otel_metrics: Option<bool>§export_timeout_ms: Option<u64>§service_environment: Option<String>Trait Implementations§
Source§impl Clone for TelemetryEnvOverrides
impl Clone for TelemetryEnvOverrides
Source§fn clone(&self) -> TelemetryEnvOverrides
fn clone(&self) -> TelemetryEnvOverrides
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TelemetryEnvOverrides
impl Debug for TelemetryEnvOverrides
Source§impl Default for TelemetryEnvOverrides
impl Default for TelemetryEnvOverrides
Source§fn default() -> TelemetryEnvOverrides
fn default() -> TelemetryEnvOverrides
Returns the “default value” for a type. Read more
Source§impl PartialEq for TelemetryEnvOverrides
impl PartialEq for TelemetryEnvOverrides
Source§fn eq(&self, other: &TelemetryEnvOverrides) -> bool
fn eq(&self, other: &TelemetryEnvOverrides) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for TelemetryEnvOverrides
impl StructuralPartialEq for TelemetryEnvOverrides
Auto Trait Implementations§
impl Freeze for TelemetryEnvOverrides
impl RefUnwindSafe for TelemetryEnvOverrides
impl Send for TelemetryEnvOverrides
impl Sync for TelemetryEnvOverrides
impl Unpin for TelemetryEnvOverrides
impl UnsafeUnpin for TelemetryEnvOverrides
impl UnwindSafe for TelemetryEnvOverrides
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