EnRun

Getting started

EnRun ingests operational metrics over a simple HTTPS endpoint. Send events from your services and they appear on the dashboard within a minute.

1. Create a project token

From the dashboard, open Settings → Tokens and create a token scoped to a single project.

2. Send your first metric

curl -X POST https://ingest.enrun.example/v1/metrics \
  -H "Authorization: Bearer <project-token>" \
  -d '{"service":"checkout","metric":"latency_ms","value":128}'

3. Build a view

Group by service and pick a percentile (p50/p95/p99) to chart latency over time. Error budgets are derived automatically once an SLO target is set.