A browser measurement crosses one controlled boundary
The browser never receives an ingestion key or chooses a destination table. Your server validates the small payload before forwarding an analytical event.
- 1
Measure
Collect an allowlisted Web Vital or bounded frontend outcome after consent.
- 2
Validate
Enforce origin, size, rate, field, route, and numeric-range rules.
- 3
Forward
Use the server-side key and one controlled event contract.
- 4
Review
Query samples and release trends with volume beside every aggregate.
Before you start
Prerequisites and boundaries
- A same-origin server endpoint that can keep the Telemetry API key private
- An allowlist for event names, fields, metric names, route templates, and numeric ranges
- Documented consent, sampling, retention, and deletion behavior for browser measurements
Delivery setup
Install and initialize server-side
Import telemetry-sh in server-only code and initialize it once with process.env.TELEMETRY_API_KEY. Keep ingestion credentials out of browser bundles, client-visible environment variables, source control, logs, and exception messages.
npm installation
npm install telemetry-sh- 1Prepare one reusable server-side delivery client with bounded network behavior.
- 2Add the outcome event at the success, failure, retry, or timeout boundary.
- 3Send controlled fixtures and inspect the stored rows before enabling an alert.
Snippet
Start with one structured event
Add this shape where the workflow completes, fails, or retries. Then build the dashboard from real fields.
Browser JavaScript and Web Vitals Telemetry event
// Browser: post only allowlisted measurements to your own origin.
function reportMetric(metric) {
navigator.sendBeacon("/api/browser-telemetry", JSON.stringify({
event_name: "browser_performance_observed",
metric_name: metric.name,
metric_value: metric.value,
metric_id: metric.id,
route_template: routeTemplateFor(location.pathname),
release: window.__APP_RELEASE__,
navigation_type: metric.navigationType,
}));
}
// Server: validate origin, size, rate, names, fields, and numeric ranges first.
await telemetry.log("browser_performance_observed", validatedMetric);Event contract
metric_name, metric_value, metric_id, route_template, and release
navigation_type, device_category, sampled, consent_state, and environment
No raw URL, query string, DOM text, form value, cookie, referrer identifier, or client-supplied table name
Implementation checkpoints
Checkpoint 1
Send a small allowlisted payload to your own origin; validate origin, content type, body size, rate, event name, fields, and ranges before forwarding.
Checkpoint 2
Use route templates instead of location.href, and apply consent or opt-out rules before the browser sends any measurement.
Checkpoint 3
sendBeacon and keepalive fetch are best-effort. Keep sample count beside percentiles and never treat browser delivery as an exact ledger.
Verification
Prove the event arrived
Run this after exercising known success and failure cases. Replace the fallback table name if your final event contract differs from the snippet.
Browser JavaScript and Web Vitals Telemetry verification query
SELECT *
FROM browser_performance_observed
ORDER BY timestamp_utc DESC
LIMIT 20;Implementation references
Review the event contract, data-safety guidance, and upstream primary documentation before enabling a new production path.
Production boundary
Keep the outcome event small and recoverable
This pattern provides
- A bounded, SQL-ready outcome beside the upstream workflow.
- Stable fields for dashboards, alerts, and cross-event correlation.
- A fixture-driven path for validating success, failure, retry, and timeout behavior.
This pattern does not provide
- An OTLP exporter, automatic collection pipeline, or replacement for detailed traces and diagnostic logs.
- Exactly-once delivery merely because the payload contains an event ID.
- Permission to collect raw provider payloads, user content, credentials, or regulated data.
Event schema starting points
Event contracts for this workflow
Review the row grain, emit boundary, required types, privacy classes, example payload, and validation checklist before adapting a query or snippet to production.
Related product capability
Continue this workflow in Alerts
Promote the reviewed reliability query into an owned threshold and response workflow.
Related SQL recipes
Answer the next question with SQL
Run the query against the structured fields from this workflow, inspect the example result, and turn a useful answer into a dashboard or alert.
Compare Core Web Vitals by Route and Release
Which route and release has the weakest frontend performance?
Open recipeRank JavaScript Errors by Route and Release
Which route and frontend release produces the broadest JavaScript error impact?
Open recipeMeasure SPA Navigation Latency by Route
Which destination routes have the slowest client-side navigation?
Open recipeCalculate Browser Long-Task Rate by Route
Which routes and releases spend the most time in browser long tasks?
Open recipeFind Slow Frontend Resources by Host
Which resource hosts and types are slowing or failing page loads?
Open recipeBrowse by implementation family
Compare related integration patterns
Templates to pair with this integration
More integrations
Next.js Server Event Analytics
Send SQL-ready events from Next.js route handlers and server actions without exposing an ingestion key to the browser.
Open guideCloudflare Worker Telemetry
Log edge request status, latency, provider failures, cron runs, and queue workers from Cloudflare Workers.
Open guide