Documentation
SimpleTelemetry turns JSON events into live dashboards. You POST events to one endpoint, they become tables, you query them with SQL, and graph cards add the over-time part for you.
The 10 second intro
Send this curl event, it'll create a table named deploy_finished with
duration_ms and ok columns:
curl -X POST https://api.simpletelemetry.io/v1/events \
-H "Authorization: Bearer st_your_api_key" \
-d '{"event":"deploy_finished","duration_ms":8421,"ok":true}'
Create dash card: SELECT COUNT(*) FROM deploy_finished, and
you have deploys over time:
The docs
Quickstart: first event to first graph, about five minutes.
Sending events: the ingest API and the rules.
SQL: the complete query language on one page.
Charts: how cards add the time axis for you.
Dashboards: cards, time ranges, refresh, sharing.
That's it! Simple by design.
Prefer to poke first? The live demo is a real dashboard.