Prosody is a modern XMPP communication server http://prosody.im
Find a file
Jonas Schäfer 5d597837f5 Statistics: Rewrite statistics backends to use OpenMetrics
The metric subsystem of Prosody has had some shortcomings from
the perspective of the current state-of-the-art in metric
observability.

The OpenMetrics standard [0] is a formalization of the data
model (and serialization format) of the well-known and
widely-used Prometheus [1] software stack.

The previous stats subsystem of Prosody did not map well to that
format (see e.g. [2] and [3]); the key reason is that it was
trying to do too much math on its own ([2]) while lacking
first-class support for "families" of metrics ([3]) and
structured metric metadata (despite the `extra` argument to
metrics, there was no standard way of representing common things
like "tags" or "labels").

Even though OpenMetrics has grown from the Prometheus world of
monitoring, it maps well to other popular monitoring stacks
such as:

- InfluxDB (labels can be mapped to tags and fields as necessary)
- Carbon/Graphite (labels can be attached to the metric name with
  dot-separation)
- StatsD (see graphite when assuming that graphite is used as
  backend, which is the default)

The util.statsd module has been ported to use the OpenMetrics
model as a proof of concept. An implementation which exposes
the util.statistics backend data as Prometheus metrics is
ready for publishing in prosody-modules (most likely as
mod_openmetrics_prometheus to avoid breaking existing 0.11
deployments).

At the same time, the previous measure()-based API had one major
advantage: It is really simple and easy to use without requiring
lots of knowledge about OpenMetrics or similar concepts. For that
reason as well as compatibility with existing code, it is preserved
and may even be extended in the future.

However, code relying on the `stats-updated` event as well as
`get_stats` from `statsmanager` will break because the data
model has changed completely; in case of `stats-updated`, the
code will simply not run (as the event was renamed in order
to avoid conflicts); the `get_stats` function has been removed
completely (so it will cause a traceback when it is attempted
to be used).

Note that the measure_*_event methods have been removed from
the module API. I was unable to find any uses or documentation
and thus deemed they should not be ported. Re-implementation is
possible when necessary.

   [0]: https://openmetrics.io/
   [1]: https://prometheus.io/
   [2]: #959
   [3]: #960
2021-04-18 11:47:41 +02:00
certs Add makefiles compatible with BSD make 2018-03-11 06:01:19 +01:00
core Statistics: Rewrite statistics backends to use OpenMetrics 2021-04-18 11:47:41 +02:00
doc doap: Add RFC 7673 2021-03-02 22:57:20 +01:00
fallbacks fallbacks.bit: remove unused one-letter loop variables [luacheck] 2016-07-14 18:40:43 +08:00
man man prosodyctl: Highlight subcommands 2017-10-23 12:46:11 +02:00
net net.server_epoll: Remove unnecessary luacheck annotations 2021-04-01 12:30:55 +02:00
plugins Statistics: Rewrite statistics backends to use OpenMetrics 2021-04-18 11:47:41 +02:00
spec util.datamapper: Fix spelling in tests 2021-03-28 14:00:21 +02:00
teal-src/util util.datamapper: Don't include empty unwrapped arrays 2021-03-24 00:48:02 +01:00
tools tools.modtrace: Pass config to serialize() 2020-10-30 14:04:40 +00:00
util Statistics: Rewrite statistics backends to use OpenMetrics 2021-04-18 11:47:41 +02:00
util-src Merge 0.11->trunk 2020-10-15 17:23:21 +02:00
.busted util.hashes: Add test vectors from RFC 6070 for PBKDF2 (aka SCRAM Hi()) 2019-04-19 14:12:28 +02:00
.hgignore hgignore: Stop ignoring *.report, these are no longer created since switching to busted 2017-10-22 14:39:59 +02:00
.luacheckrc Statistics: Rewrite statistics backends to use OpenMetrics 2021-04-18 11:47:41 +02:00
.luacov .luacov: Add config for luacov, exclude spec/ 2018-10-11 10:39:11 +01:00
.semgrep.yml lint: Add initial semgrep config 2021-01-18 17:28:34 +01:00
AUTHORS AUTHORS: A small update... 2013-03-31 13:43:12 +01:00
CHANGES core.statsmanager: Allow special "manual" value for statistics_interval 2021-04-06 23:25:15 +02:00
configure configure: Pass compiler flag to enable ICU only when building util.encodings 2020-07-12 23:28:04 +02:00
CONTRIBUTING CONTRIBUTING: Add a short file referencing the online doc/contributing page 2019-04-03 01:09:21 +02:00
COPYING COPYING: Reflow the all-caps text. It was wrapping really badly in the Windows installer. 2011-06-05 01:52:48 +05:00
DEPENDS DEPENDS: Change link to https 2017-12-05 11:59:43 +01:00
GNUmakefile make: Magic trick for teal-src/*.tl -> ./*.lua 2021-03-19 15:51:38 +01:00
HACKERS doc/coding_style.{txt,md}: Update coding style guide 2019-03-14 16:13:14 +00:00
INSTALL Update every link to the documentation to use HTTPS 2016-04-16 21:08:05 +01:00
makefile GNUmakefile: Install the new util/prosodyctl/* too (thanks pascal.pascher) 2020-06-03 19:10:42 +02:00
prosody Merge 0.11->trunk 2020-01-19 15:34:28 +00:00
prosody.cfg.lua.dist prosody.cfg.lua.dist: Remove mention of syslog near mod_posix 2019-11-19 17:38:38 +01:00
prosodyctl prosodyctl: Add reference to #1602 (plugin installer docs) in comment 2021-01-21 19:23:15 +01:00
README README: Update link to web chat 2020-03-15 20:35:07 +01:00
TODO TODO: Remove statistics since this was done in 0.10 2019-01-21 21:30:54 +01:00

# Prosody IM Server

## Description

Prosody is a server for Jabber/XMPP written in Lua. It aims to be easy 
to use and light on resources. For developers, it aims to give a 
flexible system on which to rapidly develop added functionality or 
rapidly prototype new protocols.

## Useful links

Homepage:        https://prosody.im/
Download:        https://prosody.im/download
Documentation:   https://prosody.im/doc/
Issue tracker:   https://issues.prosody.im/

Jabber/XMPP Chat:
               Address:
                 prosody@conference.prosody.im
               Web interface:
                 https://chat.prosody.im/
               
Mailing lists:
               User support and discussion:
                 https://groups.google.com/group/prosody-users
               
               Development discussion:
                 https://groups.google.com/group/prosody-dev
               
## Installation

See the accompanying INSTALL file for help on building Prosody from source. Alternatively 
see our guide at https://prosody.im/doc/install