pub struct DatadogIntakeConfig {
pub image: String,
pub binary_path: Option<String>,
pub config_path: PathBuf,
}Expand description
datadog-intake configuration.
Fields§
§image: StringContainer image to use.
This must be a valid image reference – datadog-intake:x.y.z,
registry.ddbuild.io/saluki/datadog-intake:x.y.z, etc – to an image containing the datadog-intake binary.
binary_path: Option<String>Path to the datadog-intake binary.
Defaults to /usr/local/bin/datadog-intake.
config_path: PathBufPath to the datadog-intake configuration file to use.
This file is mapped into the datadog-intake container and so it must exist on the system where this command is run from.
Trait Implementations§
Source§impl Clone for DatadogIntakeConfig
impl Clone for DatadogIntakeConfig
Source§fn clone(&self) -> DatadogIntakeConfig
fn clone(&self) -> DatadogIntakeConfig
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 moreAuto Trait Implementations§
impl Freeze for DatadogIntakeConfig
impl RefUnwindSafe for DatadogIntakeConfig
impl Send for DatadogIntakeConfig
impl Sync for DatadogIntakeConfig
impl Unpin for DatadogIntakeConfig
impl UnwindSafe for DatadogIntakeConfig
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