Business Metrics
Your numbers, at a glance
Track the KPIs that matter. Revenue, users, conversions, custom metrics. Send data from anywhere, view it everywhere.
$24.5k
MRR
1,247
Active Users
Recent Events
user_signup 2m ago order_placed 5m ago Everything you need to track
📊
Gauges
Point-in-time values like MRR, active users, or inventory levels. Always shows the current state.
🔢
Counters
Cumulative metrics that increment over time. Signups, orders, page views.
⚡
Events
Track individual occurrences with custom data. user_signup, order_placed, payment_received.
🔗
Simple API
One endpoint, one line of code. Send metrics from anywhere — your app, cron jobs, CI/CD.
🔔
Notifications
Route events to Slack, Discord, email, or webhooks. Stay informed without checking dashboards.
📺
Display integration
Show metrics on custom displays. Office TVs, browser widgets, mobile apps.
Send metrics in seconds
One API call to set a gauge or track an event.
Set a gauge
curl -X POST https://cmdline.io/api/ingest/gauge \
-d '{
"site": "site_abc123",
"name": "mrr",
"value": 24500
}'
Track an event
curl -X POST https://cmdline.io/api/ingest/metrics \
-d '{
"site": "site_abc123",
"events": [{
"name": "user_signup",
"data": { "plan": "pro" }
}]
}'