https://github.com/vdbe/ngx-prometheus-exporter
https://github.com/vdbe/ngx-prometheus-exporter
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/vdbe/ngx-prometheus-exporter
- Owner: vdbe
- Created: 2025-06-12T17:51:11.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-06-12T20:53:02.000Z (12 months ago)
- Last Synced: 2025-06-12T20:54:17.926Z (12 months ago)
- Language: Nix
- Size: 10.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ngx-prometheus-exporter
Nginx prometheus exporter as a stub_status like module.
## nginx config
```nginx.conf
load_module "/.../libngx_prometheus_exporter.so";
# ...
http {
# ...
server {
# ...
location /metrics {
allow 127.0.0.1;
allow ::1;
deny all;
access_log off;
prometheus_exporter on;
}
}
}
```