pub struct AirflowClusterDagProcessorsConfigLoggingContainers {
pub console: Option<AirflowClusterDagProcessorsConfigLoggingContainersConsole>,
pub custom: Option<AirflowClusterDagProcessorsConfigLoggingContainersCustom>,
pub file: Option<AirflowClusterDagProcessorsConfigLoggingContainersFile>,
pub loggers: Option<BTreeMap<String, AirflowClusterDagProcessorsConfigLoggingContainersLoggers>>,
}Expand description
Log configuration per container.
Fields§
§console: Option<AirflowClusterDagProcessorsConfigLoggingContainersConsole>Configuration for the console appender
custom: Option<AirflowClusterDagProcessorsConfigLoggingContainersCustom>Log configuration provided in a ConfigMap
file: Option<AirflowClusterDagProcessorsConfigLoggingContainersFile>Configuration for the file appender
loggers: Option<BTreeMap<String, AirflowClusterDagProcessorsConfigLoggingContainersLoggers>>Configuration per logger
Trait Implementations§
Source§impl Clone for AirflowClusterDagProcessorsConfigLoggingContainers
impl Clone for AirflowClusterDagProcessorsConfigLoggingContainers
Source§fn clone(&self) -> AirflowClusterDagProcessorsConfigLoggingContainers
fn clone(&self) -> AirflowClusterDagProcessorsConfigLoggingContainers
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 Default for AirflowClusterDagProcessorsConfigLoggingContainers
impl Default for AirflowClusterDagProcessorsConfigLoggingContainers
Source§fn default() -> AirflowClusterDagProcessorsConfigLoggingContainers
fn default() -> AirflowClusterDagProcessorsConfigLoggingContainers
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AirflowClusterDagProcessorsConfigLoggingContainers
impl<'de> Deserialize<'de> for AirflowClusterDagProcessorsConfigLoggingContainers
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for AirflowClusterDagProcessorsConfigLoggingContainers
Auto Trait Implementations§
impl Freeze for AirflowClusterDagProcessorsConfigLoggingContainers
impl RefUnwindSafe for AirflowClusterDagProcessorsConfigLoggingContainers
impl Send for AirflowClusterDagProcessorsConfigLoggingContainers
impl Sync for AirflowClusterDagProcessorsConfigLoggingContainers
impl Unpin for AirflowClusterDagProcessorsConfigLoggingContainers
impl UnsafeUnpin for AirflowClusterDagProcessorsConfigLoggingContainers
impl UnwindSafe for AirflowClusterDagProcessorsConfigLoggingContainers
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