mtail is intended to run one per machine, and serve as monitoring glue for multiple applications running on that machine. It runs one or more programs in a 1:1 mapping to those client applications.
mtail is configured through commandline flags.
The --help
flag will print a list of flags for configuring mtail
.
(Flags may be prefixed with either -
or --
)
Basic flags necessary to start mtail
:
--logs
is a comma separated list of filenames to extract from, but can also be used multiple times, and each filename can be a glob pattern. Named pipes can be read from when passed as a filename to this flag.--progs
is a directory path containing mtail programs. Programs must have the.mtail
suffix.
mtail runs an HTTP server on port 3903, which can be changed with the --port
flag.
mtail --progs /etc/mtail --logs /var/log/syslog --logs /var/log/ntp/peerstats
mtail
will start to read the specified logs from their current end-of-file,
and read new updates appended to these logs as they arrive. It will attempt to
correctly handle log files that have been rotated by renaming or symlink
changes.
Use --logs
multiple times to pass in glob patterns that match the logs you
want to tail. This includes named pipes.
If your system is not supported by fsnotify
then mtail will fall back to polling mode. You can also specify this explicitly with the --poll_interval
flag, for example
mtail --progs /etc/mtail --logs /var/log/syslog --poll_interval 250ms
In some cases, the log watcher can not process update events from the kernel fast enough and you may see
fsnotify error: fsnotify queue overflow
errors in the mtail
log. This will also manifest as counters not updating anymore.
If your incoming log rate is high enough to trigger this condition, try forcing mtail to only use polling mode by adding the flag --disable_fsnotify
. The poll interval defaults to 250ms, but can be changed with the --poll_interval
flag, for example
mtail --progs /etc/mtail --logs /var/log/syslog --disable_fsnotify --poll_interval 50ms
mtail
accumulates metrics and log files during its operation. By default, every hour both a garbage collection pass occurs looking for expired metrics, and stale log files.
An expired metric is any metric that hasn't been updated in a time specified by a del after
form in a program.
A stale log file is any log being watched that hasn't been read from in 24 hours.
The interval between garbage collection runs can be changed on the commandline with the --expired_metrics_gc_interval
and --stale_log_gc_interval
flags, which accept a time duration string compatible with the Go time.ParseDuration function.
mtail
can be run as a sidecar process if you expose an application container's logs with a volume.
docker run -d --name myapp -v /var/log/myapp myapp
for example exports a volume called /var/log/myapp
(named the same as the
hypothetical path where myapp
s logs are written.
Then launch the mtail
docker image and pass in the volume:
docker run -dP \
--name myapp-mtail \
--volumes-from myapp \
-v examples:/etc/mtail \
mtail --logs /var/log/myapp --progs /etc/mtail
This example fetches the volumes from the myapp
container, and mounts them in
the mtail container (which we've called myapp-mtail
). We also mount the
examples
directory as /etc/mtail
in the container. We launch mtail
with
the logs
and progs
flags to point to our two mounted volumes.
The -P
flag ensures mtail-myapp
's port 3903 is exposed for collection,
refer to docker ps
to find out where it's mapped to on the host.
Read the Programming Guide for instructions on how to write an mtail
program.
Point your collection tool at localhost:3903/json
for JSON format metrics.
Prometheus can be directed to the /metrics endpoint for Prometheus text-based format.
Use the collectd_socketpath
or graphite_host_port
flags to enable pushing to a collectd or graphite instance.
Configure collectd on the same machine to use the unixsock plugin, and set collectd_socketpath
to that unix socket.
mtail --progs /etc/mtail --logs /var/log/syslog,/var/log/rsyncd.log --collectd_socketpath=/var/run/collectd-unixsock
Set graphite_host_port
to be the host:port of the carbon server.
mtail --progs /etc/mtail --logs /var/log/syslog,/var/log/rsyncd.log --graphite_host_port=localhost:9999
Likewise, set statsd_hostport
to the host:port of the statsd server.
Additionally, the flag metric_push_interval_seconds
can be used to configure the push frequency. It defaults to 60, i.e. a push every minute.
The --override_timezone
flag sets the timezone that mtail
uses for timestamp conversion. By default, mtail
assumes timestamps are in UTC.
To use the machine's local timezone, --override_timezone=Local
can be used.
Lots of state is logged to the log file, by default in /tmp/mtail.INFO
. See Troubleshooting for more information.
N.B. Oneshot mode (the one_shot
flag on the commandline) can be used to check
that a program is correctly reading metrics from a log, but with the following
caveats:
- Unlike normal operations, oneshot mode will read the logs from the start of the file to the end, then close them -- it does not continuously tail the file
- The metrics will be printed to standard out when the logs are finished being read from.
- mtail will exit after the metrics are printed out.
This mode is useful for debugging the behaviour of mtail
programs and
possibly for permissions checking.