pub struct AltMetricsIntake {
pub enabled: bool,
pub url: String,
pub use_v3_series: bool,
}Expand description
An alternate metrics intake (Observability Pipelines Worker or Vector) that replaces the Datadog intake when enabled.
Fields§
§enabled: boolWhether this alternate intake replaces the default one.
url: StringURL of the alternate metrics intake.
use_v3_series: boolWhether metrics ship to this intake over the V3 series protocol
(observability_pipelines_worker.metrics.use_v3_api.series / vector.metrics.use_v3_api.series).
Trait Implementations§
Source§impl Clone for AltMetricsIntake
impl Clone for AltMetricsIntake
Source§fn clone(&self) -> AltMetricsIntake
fn clone(&self) -> AltMetricsIntake
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 AltMetricsIntake
impl Debug for AltMetricsIntake
Source§impl Default for AltMetricsIntake
impl Default for AltMetricsIntake
Source§fn default() -> AltMetricsIntake
fn default() -> AltMetricsIntake
Returns the “default value” for a type. Read more
Source§impl PartialEq for AltMetricsIntake
impl PartialEq for AltMetricsIntake
Source§impl Serialize for AltMetricsIntake
impl Serialize for AltMetricsIntake
impl StructuralPartialEq for AltMetricsIntake
Auto Trait Implementations§
impl Freeze for AltMetricsIntake
impl RefUnwindSafe for AltMetricsIntake
impl Send for AltMetricsIntake
impl Sync for AltMetricsIntake
impl Unpin for AltMetricsIntake
impl UnwindSafe for AltMetricsIntake
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