feat: upgrade Vector to 0.55.0 and add optional Axiom regional edge support#75
Open
XXMOHAMED012 wants to merge 1 commit into
Open
feat: upgrade Vector to 0.55.0 and add optional Axiom regional edge support#75XXMOHAMED012 wants to merge 1 commit into
XXMOHAMED012 wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What and why
The current Vector image (
0.29.1) predates Axiom's regional edge support, so the Axiom sink always routes data to the US endpoint — even when a user's organization is on the EU deployment. This makesfly-log-shipperunusable with Axiom'seu-central-1edge dataset.Vector
0.52.0added aregionfield to the Axiom sink that routes ingest traffic to the correct edge domain. This PR bumps Vector to0.55.0and exposes that field as an optionalAXIOM_REGIONsecret.Changes
Dockerfile— bumpstimberio/vector:0.29.1-debian→0.55.0-debianvector-configs/axiom.toml— adds an optionalregionline using the existing shell templating pattern; the line is omitted entirely whenAXIOM_REGIONis unset, so existing users see no change in behaviourREADME.md— documentsAXIOM_REGIONin the Axiom secrets tableUsage
For EU users, set:
fly secrets set AXIOM_REGION=eu-central-1.aws.edge.axiom.coLeave it unset to keep the existing US endpoint behaviour. See [Axiom edge deployments](https://axiom.co/docs/reference/edge-deployments) for all available values.
Backwards compatibility
No breaking changes. The
AXIOM_REGIONvariable is fully optional, and the Vector0.55.0image is compatible with all existing sink configurations in this repo.