pub struct FileAccessLog {
pub path: String,
}
Expand description
An object that represents an access log file.
Fields§
§path: String
The file path to write access logs to. You can use /dev/stdout
to send
access logs to standard out and configure your Envoy container to use a log driver, such as
awslogs
, to export the access logs to a log storage service such as Amazon
CloudWatch Logs. You can also specify a path in the Envoy container's file system to write
the files to disk.
<note>
<p>The Envoy process must have write permissions to the path that you specify here.
Otherwise, Envoy fails to bootstrap properly.</p>
</note>
Trait Implementations§
Source§impl Clone for FileAccessLog
impl Clone for FileAccessLog
Source§fn clone(&self) -> FileAccessLog
fn clone(&self) -> FileAccessLog
Returns a copy 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 FileAccessLog
impl Debug for FileAccessLog
Source§impl Default for FileAccessLog
impl Default for FileAccessLog
Source§fn default() -> FileAccessLog
fn default() -> FileAccessLog
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FileAccessLog
impl<'de> Deserialize<'de> for FileAccessLog
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
Source§impl PartialEq for FileAccessLog
impl PartialEq for FileAccessLog
Source§impl Serialize for FileAccessLog
impl Serialize for FileAccessLog
impl StructuralPartialEq for FileAccessLog
Auto Trait Implementations§
impl Freeze for FileAccessLog
impl RefUnwindSafe for FileAccessLog
impl Send for FileAccessLog
impl Sync for FileAccessLog
impl Unpin for FileAccessLog
impl UnwindSafe for FileAccessLog
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