Update audit logging example (#10966)

* Update audit-logging.mdx
This commit is contained in:
Freddy 2021-08-31 16:04:47 -06:00 committed by GitHub
parent 11672defaf
commit 1dfdad8193
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -41,9 +41,10 @@ communication channel used for agent communication.
<Tabs> <Tabs>
<Tab heading="Log to file"> <Tab heading="Log to file">
The following example configures a destination called "My Sink" which stores audit The following example configures a destination called "My Sink". Since rotation is enabled,
events at the file `/tmp/audit.json`. The log file will be rotated either every audit events will be stored at files named: `/tmp/audit-<TIMESTAMP>.json`. The log file will
24 hours, or when the log file size is greater than 25165824 bytes (24 megabytes). be rotated either every 24 hours, or when the log file size is greater than 25165824 bytes
(24 megabytes).
<CodeTabs> <CodeTabs>