You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ship logs from fly to other providers using NATS and Vector
Here we have some vector configs, alongside a wrapper script to run it all,
that will subscribe to a log stream of your organisation's logs and ship it to various providers.
Configuration
Create a new Fly app based on this Dockerfile and configure using the following secrets:
NATS source configuration
Secret
Description
ORG
Organisation slug (default to personal)
ACCESS_TOKEN
Fly personal access token (required; set with fly secrets set ACCESS_TOKEN=$(fly auth token))
SUBJECT
Subject to subscribe to. See [[NATS]] below (defaults to logs.>)
QUEUE
Arbitrary queue name if you want to run multiple log processes for HA and avoid duplicate messages being shipped
Provider configuration
AWS S3
Secret
Description
AWS_ACCESS_KEY_ID
AWS Access key with access to the log bucket
AWS_SECRET_ACCESS_KEY
AWS secret access key
AWS_BUCKET
AWS S3 bucket to store logs in
AWS_REGION
Region for the bucket
S3_ENDPOINT
(optional) Endpoint URL for S3 compatible object stores such as Cloudflare R2 or Wasabi
Datadog
Secret
Description
DATADOG_API_KEY
API key for your Datadog account
DATADOG_SITE
(optional) The Datadog site. ie: datadoghq.eu
Honeycomb
Secret
Description
HONEYCOMB_API_KEY
Honeycomb API key
HONEYCOMB_DATASET
Honeycomb dataset
Humio
Secret
Description
HUMIO_TOKEN
Humio token
Logdna
Secret
Description
LOGDNA_API_KEY
LogDNA API key
Logflare
Secret
Description
LOGFLARE_API_KEY
Logflare ingest API key
LOGFLARE_SOURCE_TOKEN
Logflare source token (uuid on your Logflare dashboard)
The log stream is provided through the NATS protocol
and is limited to subscriptions to logs in your organisations.
The NATS source takes some Fly specific environment variables to connect to the stream,
but any NATS client can connect to fdaa::3 on port 4223 in a Fly vm,
with an organisation slug as the username and a Fly Personal Access Token as the password.
The subject schema is logs.<app_name>.<region>.<instance_id> and the standard
NATS wildcards can be used.
In this app, the SUBJECT secret can be used to set the subject and limit the scope of the logs streamed.
If you would like to run multiple vm's for high availability, the NATS endpoint supports
subscription queues to ensure messages are only sent to one
subscriber of the named queue. The QUEUE secret can be set to configure a queue name for the client.
Vector
The nats source component sends logs to other downstream transforms and sinks in the Vector config.
This processes the log lines and sends them to various providers.
The config is generated from a shell wrapper script which uses conditionals on environment variables to
decide which Vector sinks to configure in the final config.