daisieapp / fly-log-shipper

Ship logs from fly to other providers

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

fly-log-shipper

Ship logs from fly to other providers using NATS and Vector

Here we have some vector configs and a nats client (`fly-logs`), along side a wrapper script to run it all, that will subscribe to a log stream of your organisations logs, and ship it to various providers.

Getting Started

  1. Clone this repository

  2. Create the log shipper app in your Fly org:

flyctl init --name selleck-log-shipper-$ENVIRONMENT --import fly.$ENVIRONMENT.toml --dockerfile
  1. Set secrets for the log shipper app:
flyctl secrets set --config fly.$ENVIRONMENT.toml ORG=$ORG ACCESS_TOKEN=$ACCESS_TOKEN DATADOG_API_KEY=$DATADOG_API_KEY
  1. Deploy the log shipper app:
flyctl deploy --config fly.$ENVIRONMENT.toml

Configuration

Create a new Fly app based on this Dockerfile and configure using the following secrets:

fly-logs configuration

Secret Description
ORG Organisation slug
ACCESS_TOKEN Fly personal access 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

Datadog

Secret Description
DATADOG_API_KEY API key for your Datadog account

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

New Relic

One of these is required for New Relic logs. New Relic recommend the license key be used (ref: https://docs.newrelic.com/docs/logs/enable-log-management-new-relic/enable-log-monitoring-new-relic/vector-output-sink-log-forwarding/)

Secret Description
NEW_RELIC_INSERT_KEY (optional) New Relic Insert key
NEW_RELIC_LICENSE_KEY (optional) New Relic License key

Papertrail

Secret Description
PAPERTRAIL_ENDPOINT Papertrail endpoint

Sematext

Secret Description
SEMATEXT_REGION Sematext region
SEMATEXT_TOKEN Sematext token

Uptrace

Secret Description
UPTRACE_API_KEY Uptrace API key
UPTRACE_PROJECT Uptrace project ID

NATS

The log stream is provided through the NATS protocol and is limited to subscriptions to logs in your organisations. The fly-logs app is simply a Go NATS client that 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 fly-logs application sends logs to a unix socket which is created by Vector. 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.

About

Ship logs from fly to other providers


Languages

Language:Go 56.5%Language:Shell 27.8%Language:Dockerfile 15.6%