No commit activity in last 3 years
No release in over 3 years
Fluentd plugin to parse systemd journal export format.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Runtime

~> 0.12
 Project Readme

fluent-plugin-journal-parser

What is this?

This is a fluentd parser plugin for parsing the systemd journal export format.

Usage

Add this to your fluent.conf

<source>
  @type http
  port 8888
  format journal
</source>

and your boxes can push their journal to the server with

/lib/systemd/systemd-journal-upload -u http://myfluentdserver:8888/journal

A better solution is of course to edit your /etc/systemd/journal-upload.conf to add the proper URL and run the daemon via services. Eg.:

systemctl enable systemd-journal-upload
systemctl start systemd-journal-upload