mbode / mtail

extract whitebox monitoring data from application logs for collection in a timeseries database

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

mtail - extract whitebox monitoring data from application logs for collection into a timeseries database

GoDoc Build Status Coverage Status

mtail is a tool for extracting metrics from application logs to be exported into a timeseries database or timeseries calculator for alerting and dashboarding.

It aims to fill a niche between applications that do not export their own internal state, and existing monitoring systems, without patching those applications or rewriting the same framework for custom extraction glue code.

The extraction is controlled by mtail programs which define patterns and actions:

# simple line counter
counter line_count
/$/ {
  line_count++
}

Metrics are exported for scraping by a collector as JSON or Prometheus format over HTTP, or can be periodically sent to a collectd, StatsD, or Graphite collector socket.

Read the programming guide if you want to learn how to write mtail programs.

Mailing list: https://groups.google.com/forum/#!forum/mtail-users

Installation

mtail uses a Makefile. To build mtail, type make at the commandline. See the Build instructions for more details.

Deployment

mtail works best when paired with a timeseries-based calculator and alerting tool, like Prometheus.

About

extract whitebox monitoring data from application logs for collection in a timeseries database

License:Apache License 2.0


Languages

Language:Go 93.9%Language:Yacc 3.3%Language:Makefile 1.4%Language:Emacs Lisp 1.1%Language:Awk 0.2%Language:Shell 0.1%