mirror of
https://github.com/fnproject/fn.git
synced 2022-10-28 21:29:17 +03:00
* moving documentation around to be more clear and easier to browse - moved assets into their own directory and updated links to them - moved operating docs into their own directory - consolidated kubernetes docs - added docker-swarm folder for docs - updated docs layout in docs/README.md to reflect the changes and make it easier to read * docs: s/Operating Functions/Operating IronFunctions/ * docs: removing duplicate database link * docs: moving databases into general docs * docs: moving databases/mqs back * docs: removing memory.md (duplicate of operating/routes.md) * docs: converting to markdown bullets
761 B
761 B
Metrics
Metrics are emitted via the logs for few couple of reasons:
- Everything supports STDERR.
- User can optionally use them, if not, they just end up in the logs.
- No particular metrics system required, in other words, all metrics systems can be used via adapters (see below).
Metrics
The metrics format follows logfmt format and looks like this:
metric=someevent value=1 type=count
metric=somegauge value=50 type=gauge
It's a very simple format that can be easily parsed by any logfmt parser and passed on to another stats service.
TODO: List all metrics we emit to logs.
Statsd
The Logspout Statsd Adapter adapter can parse the log metrics and forward them to any statsd server.