https://github.com/lambdaclass/beam_prometheus_exporter
Add this to your release to get standard erlang metrics in prometheus/grafana
https://github.com/lambdaclass/beam_prometheus_exporter
beam-prometheus-exporter expose prometheus
Last synced: 2 days ago
JSON representation
Add this to your release to get standard erlang metrics in prometheus/grafana
- Host: GitHub
- URL: https://github.com/lambdaclass/beam_prometheus_exporter
- Owner: lambdaclass
- License: mit
- Created: 2017-11-27T18:09:22.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-07T17:45:54.000Z (over 7 years ago)
- Last Synced: 2025-09-23T20:49:51.779Z (12 days ago)
- Topics: beam-prometheus-exporter, expose, prometheus
- Language: Erlang
- Homepage:
- Size: 5.86 KB
- Stars: 6
- Watchers: 25
- Forks: 4
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# BEAM prometheus exporter
A Cowboy 2 application that just exposes the `/metrics` handler of
[prometheus-cowboy](https://github.com/deadtrickster/prometheus-cowboy).Most of the real work is done by [prometheus.erl](https://github.com/deadtrickster/prometheus.erl/). However we wanted something easy to add quickly to our release. This projects quickly exposes BEAM metrics to prometheus.
You can use the [beam dashboards](https://github.com/deadtrickster/beam-dashboards) to graph this information in grafana.
## Usage
- Add the depedency to rebar.config
- Add the depencendy to the application resource file so it gets started with the build
- Add (optional) configuration to app environment:
```
{port, 9101}
{auth, {Username, Password}}
```