view mod_prometheus/README.markdown @ 3329:43d0e298ddda

mod_conversejs: Explicitly depend on mod_http Not required since mod_bosh and mod_websocket already depend on mod_http, but explicit > implicit. hg: Enter commit message. Lines beginning with 'HG:' are removed.
author Kim Alvefur <zash@zash.se>
date Sun, 23 Sep 2018 18:54:52 +0200
parents bbf20293bc43
children 39ec478a752e
line wrap: on
line source

---
labels:
- Statistics
summary: Implementation of the Prometheus protocol
...

Description
===========

This module implements the Prometheus reporting protocol, allowing you
to collect statistics directly from Prosody into Prometheus.

See the [Prometheus documentation][prometheusconf] on the format for
more information.

[prometheusconf]: https://prometheus.io/docs/instrumenting/exposition_formats/

Configuration
=============

mod\_prometheus itself doesn’t have any configuration option, but it
requires Prosody’s [internal statistics
provider](https://prosody.im/doc/statistics#built-in_providers) to be
enabled.  You may also want to change the default collection interval
to the one your statistics consumer is using.

```lua
statistics = "internal"
statistics_interval = 15 -- in seconds
```

See also the documentation of Prosody’s [HTTP
server](https://prosody.im/doc/http), since Prometheus is an HTTP
protocol that is how you can customise its URL.  The default one being
http://localhost:5280/metrics

Compatibility
=============

  ------- -------------
  trunk   Works
  0.10    Works
  0.9     Does not work
  ------- -------------