This is a small daemon used to forward logs from journald
(systemd's
logging service) to Stackdriver Logging.
Many existing log services are written in inefficient dynamic
languages with error-prone "cover every possible use-case"
configuration. journaldriver
instead aims to fit a specific use-case
very well, instead of covering every possible logging setup.
This fork of journaldriver
is designed to run outside of GCP
Table of Contents
- Features
- Usage outside of Google Cloud Platform
- Log levels / severities / priorities
- NixOS module
- Stackdriver Error Reporting
journaldriver
persists the last forwarded position in the journal and will resume forwarding at the same position after a restartjournaldriver
will recognise log entries in JSON format and forward them appropriately to make structured log entries available in Stackdriverjournaldriver
can be used outside of GCP by configuring static credentialsjournaldriver
will recognise journald's log priority levels and convert them into equivalent Stackdriver log severity levels
When running outside of GCP, the following extra steps need to be performed:
-
Create a Google Cloud Platform service account with the "Log Writer" role and download its private key in JSON-format.
-
When starting
journaldriver
, configure the following environment variables:GOOGLE_CLOUD_PROJECT
: Name of the GCP project to which logs should be written.GOOGLE_APPLICATION_CREDENTIALS
: Filesystem path to the JSON-file containing the service account's private key.LOG_NAME
: Name of the target log to write to. This defaults tojournaldriver
if unset, but it is recommended to - for example - set it to the machine hostname.
journaldriver
recognises journald's priorities and converts them
into equivalent severities in Stackdriver. Both sets of values
correspond to standard syslog
priorities.
The easiest way to emit log messages with priorites from an application is to use priority prefixes, which are compatible with structured log messages.
For example, to emit a simple warning message (structured and unstructured):
$ echo '<4>{"fnord":true, "msg":"structured log (warning)"}' | systemd-cat
$ echo '<4>unstructured log (warning)' | systemd-cat