diff options
author | Egor Kislitsyn <egor@kislitsyn.com> | 2019-04-08 16:29:20 +0700 |
---|---|---|
committer | Egor Kislitsyn <egor@kislitsyn.com> | 2019-04-08 16:29:20 +0700 |
commit | a1a854646e96598473ed7a323e034cf1f88ca508 (patch) | |
tree | 4a427437c7c444fdfd2bb99dc012a7008d9bb0fe /docs/api/prometheus.md | |
parent | 1c2e4f88d1a707791818014f8bcdedd986c2fa75 (diff) | |
parent | fb2040d06199f2f4190ff363da54d6fcfa87ff69 (diff) | |
download | pleroma-a1a854646e96598473ed7a323e034cf1f88ca508.tar.gz |
Merge branch 'develop' into use-jobs-in-webpush
Diffstat (limited to 'docs/api/prometheus.md')
-rw-r--r-- | docs/api/prometheus.md | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/docs/api/prometheus.md b/docs/api/prometheus.md new file mode 100644 index 000000000..19c564e3c --- /dev/null +++ b/docs/api/prometheus.md @@ -0,0 +1,22 @@ +# Prometheus Metrics + +Pleroma includes support for exporting metrics via the [prometheus_ex](https://github.com/deadtrickster/prometheus.ex) library. + +## `/api/pleroma/app_metrics` +### Exports Prometheus application metrics +* Method: `GET` +* Authentication: not required +* Params: none +* Response: JSON + +## Grafana +### Config example +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'] +``` |