mirror of
https://github.com/hashicorp/vault.git
synced 2026-03-17 08:02:23 -04:00
832 B
832 B
| layout | page_title | sidebar_current | description |
|---|---|---|---|
| docs | Audit Backend: File | docs-audit-file | The "file" audit backend writes audit logs to a file. |
Audit Backend: File
Name: file
The "file" audit backend writes audit logs to a file.
This is a very simple audit backend: it appends logs to a file. It does not currently assist with any log rotation.
Options
When enabling this backend, the following options are accepted:
path(required) - The path to where the file will be written. If this path exists, the audit backend will append to it.
Format
Each line in the audit log is a JSON object. The "type" field specifies what type of object it is. Currently, only two types exist: "request" and "response".
The line contains all of the information for any given request and response.