akkoma/docs/docs/development/API/prometheus.md

45 lines
1.2 KiB
Markdown
Raw Normal View History

2019-04-04 17:19:31 +00:00
# Prometheus Metrics
2022-07-04 02:34:54 +00:00
Akkoma includes support for exporting metrics via the [prometheus_ex](https://github.com/deadtrickster/prometheus.ex) library.
2019-04-04 17:19:31 +00:00
Config example:
```
config :prometheus, Pleroma.Web.Endpoint.MetricsExporter,
enabled: true,
auth: {:basic, "myusername", "mypassword"},
ip_whitelist: ["127.0.0.1"],
path: "/api/pleroma/app_metrics",
format: :text
```
2022-07-04 02:34:54 +00:00
* `enabled` (Akkoma extension) enables the endpoint
* `ip_whitelist` (Akkoma extension) could be used to restrict access only to specified IPs
* `auth` sets the authentication (`false` for no auth; configurable to HTTP Basic Auth, see [prometheus-plugs](https://github.com/deadtrickster/prometheus-plugs#exporting) documentation)
* `format` sets the output format (`:text` or `:protobuf`)
* `path` sets the path to app metrics page
2019-04-04 17:19:31 +00:00
## `/api/pleroma/app_metrics`
2019-04-04 17:19:31 +00:00
### Exports Prometheus application metrics
2019-04-04 17:19:31 +00:00
* Method: `GET`
* Authentication: not required by default (see configuration options above)
2019-04-04 17:19:31 +00:00
* Params: none
* Response: text
2019-04-04 17:19:31 +00:00
## Grafana
2019-04-04 17:19:31 +00:00
### Config example
2019-04-04 17:19:31 +00:00
The following is a config example to use with [Grafana](https://grafana.com)
```
- job_name: 'beam'
metrics_path: /api/pleroma/app_metrics
scheme: https
static_configs:
- targets: ['pleroma.soykaf.com']
```