Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/google/mtail
extract internal monitoring data from application logs for collection in a timeseries database
https://github.com/google/mtail
bytecode calculator collector compiler extraction go instrumentation logs metrics monitoring mtail mtail-programs observability prometheus proxy timeseries vm
Last synced: 7 days ago
JSON representation
extract internal monitoring data from application logs for collection in a timeseries database
- Host: GitHub
- URL: https://github.com/google/mtail
- Owner: google
- License: apache-2.0
- Created: 2014-05-27T23:46:16.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2024-09-17T21:12:52.000Z (about 2 months ago)
- Last Synced: 2024-09-18T02:07:53.314Z (about 2 months ago)
- Topics: bytecode, calculator, collector, compiler, extraction, go, instrumentation, logs, metrics, monitoring, mtail, mtail-programs, observability, prometheus, proxy, timeseries, vm
- Language: Go
- Homepage:
- Size: 6.52 MB
- Stars: 3,821
- Watchers: 72
- Forks: 378
- Open Issues: 37
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome-repositories - google/mtail - extract internal monitoring data from application logs for collection in a timeseries database (Go)
- awesome-starts - google/mtail - extract whitebox monitoring data from application logs for collection in a timeseries database (Go)
- awesome-golang-repositories - mtail
- my-awesome - google/mtail - programs,observability,prometheus,proxy,timeseries,vm pushed_at:2024-10 star:3.8k fork:0.4k extract internal monitoring data from application logs for collection in a timeseries database (Go)
- awesome-starred - google/mtail - extract internal monitoring data from application logs for collection in a timeseries database (monitoring)
README
# mtail - extract internal monitoring data from application logs for collection into a timeseries database
[![ci](https://github.com/google/mtail/workflows/CI/badge.svg)](https://github.com/google/mtail/actions?query=workflow%3ACI+branch%3main)
[![GoDoc](https://godoc.org/github.com/google/mtail?status.png)](http://godoc.org/github.com/google/mtail)
[![Go Report Card](https://goreportcard.com/badge/github.com/google/mtail)](https://goreportcard.com/report/github.com/google/mtail)
[![OSS-Fuzz](https://oss-fuzz-build-logs.storage.googleapis.com/badges/mtail.svg)](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:mtail)
[![codecov](https://codecov.io/gh/google/mtail/branch/main/graph/badge.svg)](https://codecov.io/gh/google/mtail)`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 fills a monitoring niche by being the glue between applications that do not
export their own internal state (other than via logs) and existing monitoring
systems, such that system operators do not need to patch those applications to
instrument them or writing custom extraction code for every such application.The extraction is controlled by [mtail programs](docs/Programming-Guide.md)
which define patterns and actions:# simple line counter
counter lines_total
/$/ {
lines_total++
}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](docs/Programming-Guide.md) if you want to learn how
to write mtail programs.Ask general questions on the users mailing list: https://groups.google.com/g/mtail-users
## Installation
There are various ways of installing **mtail**.
### Precompiled binaries
Precompiled binaries for released versions are available in the
[Releases page](https://github.com/google/mtail/releases) on Github. Using the
latest production release binary is the recommended way of installing **mtail**.Windows, OSX and Linux binaries are available.
### Building from source
The simplest way to get `mtail` is to `go get` it directly.
`go get github.com/google/mtail/cmd/mtail`
This assumes you have a working Go environment with a recent Go version. Usually mtail is tested to work with the last two minor versions (e.g. Go 1.12 and Go 1.11).
If you want to fetch everything, you need to turn on Go Modules to succeed because of the way Go Modules have changed the way go get treats source trees with no Go code at the top level.
```
GO111MODULE=on go get -u github.com/google/mtail
cd $GOPATH/src/github.com/google/mtail
make install
```If you develop the compiler you will need some additional tools
like `goyacc` to be able to rebuild the parser.See the [Build instructions](docs/Building.md) for more details.
A `Dockerfile` is included in this repository for local development as an
alternative to installing Go in your environment, and takes care of all the
build dependency installation, if you don't care for that.## Deployment
`mtail` works best when paired with a timeseries-based calculator and
alerting tool, like [Prometheus](http://prometheus.io).> So what you do is you take the metrics from the log files and
> you bring them down to the monitoring system?[It deals with the instrumentation so the engineers don't have
to!](http://www.imdb.com/title/tt0151804/quotes/?item=qt0386890) It has the
extraction skills! It is good at dealing with log files!!## Read More
Full documentation at http://google.github.io/mtail/
Read more about writing `mtail` programs:
* [Programming Guide](docs/Programming-Guide.md)
* [Language Reference](docs/Language.md)
* [Metrics](docs/Metrics.md)
* [Managing internal state](docs/state.md)
* [Testing your programs](docs/Testing.md)Read more about hacking on `mtail`
* [Building from source](docs/Building.md)
* [Contributing](CONTRIBUTING.md)
* [Style](docs/style.md)Read more about deploying `mtail` and your programs in a monitoring environment
* [Deploying](docs/Deploying.md)
* [Interoperability](docs/Interoperability.md) with other systems
* [Troubleshooting](docs/Troubleshooting.md)
* [FAQ](docs/faq.md)## Getting more help and reporting defects
If you have any questions, please use the [GitHub Discussions Q&A](https://github.com/google/mtail/discussions/new?category=q-a).
We also have an email list : https://groups.google.com/forum/#!forum/mtail-users
For any defects please [file a new issue](https://github.com/google/mtail/issues/new).