File Sink
The Vector file
sink
sends logs
Configuration
- Common
- Advanced
- vector.toml
- vector.yaml
- vector.json
[sinks.my_sink_id]# Generaltype = "file" # requiredinputs = ["my-source-or-transform-id"] # requiredcompression = "none" # optional, defaultpath = "/tmp/vector-%Y-%m-%d.log" # required# Encodingencoding.codec = "ndjson" # required# Healthcheckhealthcheck.enabled = true # optional, default
- optionalstring
compression
The compression strategy used to compress the encoded event data before transmission.
- Default:
"none"
- Enum, must be one of:
"none"
"gzip"
- View examples
- Default:
- requiredtable
encoding
Configures the encoding specific sink behavior.
- requiredstring
codec
The encoding codec used to serialize the events before outputting.
- View examples
- optional[string]
except_fields
Prevent the sink from encoding the specified labels.
- View examples
- optional[string]
only_fields
Prevent the sink from encoding the specified labels.
- View examples
- optionalstring
timestamp_format
How to format event timestamps.
- Default:
"rfc3339"
- Enum, must be one of:
"rfc3339"
"unix"
- View examples
- Default:
- optionaltable
healthcheck
Health check options for the sink. See Health checks for more info.
- optionalbool
enabled
Enables/disables the healthcheck upon Vector boot.
- Default:
true
- View examples
- Default:
- optionaluint
idle_timeout_secs
The amount of time a file can be idle and stay open. After not receiving any events for this timeout, the file will be flushed and closed.
- Default:
30
- Default:
- requiredstring
path
File name to write events to.
- View examples
Telemetry
This component provides the following metrics that can be retrieved through
the internal_metrics
source. See the
metrics section in the
monitoring page for more info.
- counter
processed_events_total
The total number of events processed by this component. This metric includes the following tags:
component_kind
- The Vector component kind.component_name
- The Vector component ID.component_type
- The Vector component type.file
- The file that produced the errorinstance
- The Vector instance identified by host and port.job
- The name of the job producing Vector metrics.
- counter
processed_bytes_total
The total number of bytes processed by the component. This metric includes the following tags:
component_kind
- The Vector component kind.component_name
- The Vector component ID.component_type
- The Vector component type.instance
- The Vector instance identified by host and port.job
- The name of the job producing Vector metrics.
How It Works
File & Directory Creation
Vector will attempt to create the entire directory structure and the file when emitting events to the file sink. This requires that the Vector agent have the correct permissions to create and write to files in the specified directories.
Health checks
Health checks ensure that the downstream service is accessible and ready to accept data. This check is performed upon sink initialization. If the health check fails an error will be logged and Vector will proceed to start.
Require health checks
If you'd like to exit immediately upon a health
check failure, you can pass the
--require-healthy
flag:
vector --config /etc/vector/vector.toml --require-healthy
Disable health checks
If you'd like to disable health checks for this
sink you can set the healthcheck
option to
false
.