Expose application metrics in Prometheus format and wire them into nSelf's built-in Grafana dashboards. This plugin is the bridge between your custom app code and the nSelf monitoring bundle (Prometheus, Grafana, Loki, Alertmanager).
Free Forever — no license key required. Infrastructure monitoring (Prometheus, Grafana, Loki) is always free in nSelf. The ɳSentry bundle adds product-layer observability on top: uptime monitoring, status pages, incident management, and RUM.
/metrics endpoint on your app portnself plugin install monitoring
nself plugin status monitoring# Increment a counter
POST /api/monitoring/counter
{
"name": "my_app_orders_total",
"labels": { "status": "completed" },
"value": 1
}
# Set a gauge
POST /api/monitoring/gauge
{
"name": "my_app_queue_depth",
"value": 42
}