Website • Docs • Community • Github
Vector is a high-performance observability data router. It makes collecting, transforming, and sending logs, metrics, and events easy. It decouples data collection & routing from your services, giving you control and data ownership, among many other benefits.
Built in Rust, Vector places high-value on performance, correctness, and operator friendliness. It compiles to a single static binary and is designed to be deployed across your entire infrastructure, serving both as a light-weight agent and a highly efficient service, making the process of getting data from A to B simple and unified.
docker run timberio/vector:0.5.0-alpine
- The
vector
binary is located at/usr/local/bin/vector
, which should be in your$PATH
. - The default configuration file is located at
/etc/vector/vector.toml
.
The Vector Docker images ship with a default /etc/vector/vector.toml
configuration file.
To use your own configuration file:
-
Create your own Vector configuration file and save it as
vector.toml
. -
Run the Vector Docker image with the following command:
docker run \ -v $PWD/vector.toml:/etc/vector/vector.toml:ro \ timberio/vector:0.5.0-alpine
Modify
$PWD
to the directory where you store your localvector.toml
file.
This image is based on the alpine
Docker image, which is
a Linux distribution built around musl libc and BusyBox. It is considerably
smaller in size than other Docker images and statically links libraries. This
is the image we recommend due to it's small size and reliability.
docker run timberio/vector:0.5.0-alpine
This image is based on the debian-slim
image,
which is a smaller, more compact variant of the debian
image.
docker run timberio/vector:0.5.0-debian
Vector's Docker images include a special latest
version that will be updated
whenever Vector is released:
docker run timberio/vector:latest-alpine
Previous versions can be accessed by their direct tag:
docker run timberio/vector:<X.X.X>-alpine
Vector's releases nightly versions that contain the latest changes.
docker run timberio/vector:nightly-alpine
Historical nightly versions are also available:
docker run timberio/vector:nightly-<YYYY-MM-DD>-alpine
Simply run with newer version in the tag:
docker run timberio/vector:X.X.X-alpine
Or pull the newest latest version:
docker pull timberio/vector:latest-alpine && \
docker run timberio/vector:latest-alpine
Or run with newer nightly date in the tag:
docker run timberio/vector:nightly-<YYYY-MM-DD>-alpine
Or pull the newest nightly version:
docker pull timberio/vector:nightly-alpine && \
docker run timberio/vector:nightly-alpine
Vector's Docker source files are located in it's Github repo.