aboutsummaryrefslogtreecommitdiff
path: root/docs/API/prometheus.md
diff options
context:
space:
mode:
authorAlex Gleason <alex@alexgleason.me>2022-01-03 13:40:19 -0600
committerAlex Gleason <alex@alexgleason.me>2022-01-03 13:40:19 -0600
commit4081be0001332bac402faec7565807df088b0117 (patch)
treea5305404e9bb31b3613dbc9631d36f8827be81c2 /docs/API/prometheus.md
parentd00f74e036735c1c238f661076f2925b39daa6ac (diff)
parenta3094b64df344622f1bcb03091ef2ff4dce6da82 (diff)
downloadpleroma-matrix.tar.gz
Merge remote-tracking branch 'origin/develop' into matrixmatrix
Diffstat (limited to 'docs/API/prometheus.md')
-rw-r--r--docs/API/prometheus.md22
1 files changed, 0 insertions, 22 deletions
diff --git a/docs/API/prometheus.md b/docs/API/prometheus.md
deleted file mode 100644
index 19c564e3c..000000000
--- a/docs/API/prometheus.md
+++ /dev/null
@@ -1,22 +0,0 @@
-# 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']
-```