1. Event contract
One row in api_requests, with the types used by the query made explicit.
- timestamp_utc
- Timestamp
- route_template
- Utf8
- status_code
- Int64
- latency_ms
- Float64
Explore gives operators and product teams a fast path from event fields to samples, tables, lines, bars, and stacked areas while keeping the generated query visible.
Outcomes
How it works
Confirm that fields contain the expected values and types before aggregating them. This catches instrumentation mistakes early.
Select the aggregation, numeric field, time bucket, and filters that match the question. Keep incomplete newest buckets in mind.
Add the result to a dashboard or alert when it becomes part of a recurring workflow. Use Query for multi-table and multi-CTE logic.
Exploring structured events
A real product capture moving from event samples to filters, aggregation, and a visual result.
Boundaries
Inspectable proof path
This example uses a declared schema, read-only SQL, and deterministic synthetic results. It demonstrates the workflow without presenting sample data as a customer benchmark.
One row in api_requests, with the types used by the query made explicit.
Which API routes have the highest meaningful 5xx error rate?
SELECT
route_template,
COUNT(*) AS requests,
SUM(CASE WHEN status_code >= 500 THEN 1 ELSE 0 END) AS errors,
100.0 * SUM(CASE WHEN status_code >= 500 THEN 1 ELSE 0 END)
/ NULLIF(COUNT(*), 0) AS error_rate_pct
FROM api_requests
WHERE timestamp_utc >= now() - INTERVAL '24 hours'
GROUP BY route_template
HAVING COUNT(*) >= 20
ORDER BY error_rate_pct DESC
LIMIT 10;The checkout route is the clearest reliability risk even though search has more total traffic.
| route_template | requests | errors |
|---|---|---|
| /api/checkout | 25 | 5 |
| /api/search | 25 | 1 |
| /api/profile | 20 | 0 |
Capabilities
See the analysis
Use SQL to rank API routes by 5xx error rate while protecting the result from low-volume noise.
Open recipeFind unreliable jobs by comparing successful runs, retries, failures, and tail duration.
Open recipeAttribute model spend, tokens, request volume, and cost per request to product features.
Open recipeCustomer evidence
“Telemetry is one of the easiest ways to go from dumping in your data to actually understanding it.”
Shayan Taslim, LogSnag
Review the documented workflow“Telemetry makes it super easy to track, analyze, and visualize what's going on in my business. It's the perfect mix of simple and powerful.”
Namu Kang, Browserflow
Review the documented workflowRelated capabilities
Shared dashboards
Threshold alerts
AI agent monitoring
Use a focused prompt, send synthetic events, and verify the first useful query before expanding coverage.