Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ Vector's 0.34.0 release includes **breaking changes**:
1. [Blackhole sink no longer reports by default](#blackhole-sink-reporting)
1. [Remove direct OpenSSL legacy provider support](#openssl-legacy-provider)
1. [Removal of the deprecated `armv7` rpm package](#armv7-rename)
1. [Default config location change](#default-config-location-change)

and **deprecations**:

Expand Down Expand Up @@ -115,6 +116,18 @@ The deprecated name of the `armv7` RPM package, `vector-<version>-1.armv7.rpm`,
published. Instead, it is published as `vector-<version>-1.armv7hl.rpm` to better follow RPM
guidelines. If you are using `yum` to install the RPM, this change should be transparent.

#### Default config location change {#default-config-location-change}

The default config location is now `/etc/vector/vector.yaml` rather than `/etc/vector/vector.toml`.
This is part of the migration to YAML as Vector's preferred configuration language (though TOML and
JSON will still be supported for the forseeable future). If you need Vector to load
`/etc/vector/vector.toml` you must now specify `--config /etc/vector/vector.toml` or
`VECTOR_CONFIG=/etc/vector/vector.toml`

See the associated [release highlight from v0.33.0](/highlights/2023-08-30-yaml-default-format) for
more details on the motivation for migrating from TOML to YAML as the default configuration
language.

### Deprecations

#### Deprecation of `requests_completed_total`, `request_duration_seconds`, and `requests_received_total` Internal Metrics {#deprecate-obsolete-http-metrics}
Expand Down