Go to file
2020-02-12 13:40:22 +01:00
.gitignore Ignoring more files 2020-02-12 13:38:03 +01:00
build_static.sh Build binary with official golang image 2019-03-07 15:08:50 -08:00
CHANGELOG.md Update readme and changelog for release. 2018-05-04 12:22:34 +02:00
Dockerfile Update docker file 2019-10-31 18:22:22 +01:00
LICENSE Check in an initial copy of our Postfix metrics exporter. 2017-02-17 15:29:37 +01:00
nosystemd.go Added extra build tags to enable testing on no-linux systems 2020-02-12 13:40:22 +01:00
postfix_exporter.go Added logging of log event source 2020-02-12 13:39:13 +01:00
README.md Fixed Readme. 2019-02-15 12:41:28 +01:00
systemd.go Added extra build tags to enable testing on no-linux systems 2020-02-12 13:40:22 +01:00

Prometheus Postfix exporter

This repository provides code for a Prometheus metrics exporter for the Postfix mail server. This exporter provides histogram metrics for the size and age of messages stored in the mail queue. It extracts these metrics from Postfix by connecting to a UNIX socket under /var/spool.

In addition to that, it counts events by parsing Postfix's log entries, using regular expression matching. The log entries are retrieved from the systemd journal or from a log file.

Please refer to this utility's main() function for a list of supported command line flags.

Events from log file

The log file is tailed when processed. Rotating the log files while the exporter is running is OK. The path to the log file is specified with the --postfix.logfile_path flag.

Events from systemd

Retrieval from the systemd journal is enabled with the --systemd.enable flag. This overrides the log file setting. It is possible to specify the unit (with --systemd.unit) or slice (with --systemd.slice). Additionally, it is possible to read the journal from a directory with the --systemd.journal_path flag.

Build options

Default the exporter is build with systemd journal functionality (but it is disabled at default). Because the systemd headers are required for building with systemd, there is an option to build the exporter without systemd. Use the build tag nosystemd.

go build -tags nosystemd