Telemetry
Data quality

telemetry_delivery_observed event schema

An application-owned observation of a telemetry delivery attempt. Use a separate sink or bounded sample to avoid creating a recursive event for every delivery.

Reviewed by the Telemetry product team on . Event grain, ownership, field types, privacy classification, example payload, and validation. Review standards and ownership

Question this contract answers

Are application events arriving completely, promptly, and without retry amplification?

Fields
11
Required
10
Contract evidence path

telemetry_delivery_observed: from owned boundary to trusted query

Treat telemetry_delivery_observed as a durable analytical contract: the owner emits one documented grain, a fixture proves the fields, and a reviewed query answers the stated question.

  1. 1

    Outcome becomes final

    Shared instrumentation or telemetry delivery library emits only after a delivery succeeds, is rejected, times out, or exhausts its bounded retries.

  2. 2

    Contract is bounded

    10 required fields preserve the declared grain: One sampled or aggregated observation per delivery attempt or delivery window.

  3. 3

    Fixture is verified

    Check types, UTC time, alternate outcomes, idempotency, and every pseudonymous or review-classified field.

  4. 4

    Question is answered

    Are application events arriving completely, promptly, and without retry amplification?

Grain

One sampled or aggregated observation per delivery attempt or delivery window.

Owner

Shared instrumentation or telemetry delivery library

Emit when

After a delivery succeeds, is rejected, times out, or exhausts its bounded retries.

Field contract

Typed fields with explicit privacy boundaries

Keep existing field names and types stable after production queries depend on them. Optional context should remain bounded, documented, and justified by a specific decision.

FieldTypeRequiredPrivacyMeaning
timestamp_utctimestampyesnon-sensitiveUTC time at the outcome boundary.
event_idstringyesnon-sensitiveStable unique identifier used for deduplication.
releasestringyesnon-sensitiveApplication or service version that emitted the event.
account_idstringyespseudonymousStable internal account identifier, never an email or name.
target_tablestringyesnon-sensitiveAllowlisted destination event table.
delivery_statusstringyesnon-sensitiveAccepted, rejected, timed_out, or transport_failed.
attempt_countnumberyesnon-sensitiveNumber of bounded delivery attempts.
batch_sizenumberyesnon-sensitiveNumber of logical events in the delivery.
payload_bytesnumberyesnon-sensitiveSerialized request size in bytes.
duration_msnumberyesnon-sensitiveTotal delivery duration including bounded retries.
error_typestringnonon-sensitiveControlled transport or rejection category.

Synthetic JSON event

{
  "timestamp_utc": "2026-07-29T10:31:04Z",
  "event_id": "evt_delivery_01",
  "account_id": "acct_8f31",
  "release": "2026.07.3",
  "target_table": "api_request_completed",
  "delivery_status": "accepted",
  "attempt_count": 1,
  "batch_size": 20,
  "payload_bytes": 8420,
  "duration_ms": 146
}

Privacy review

Review identifiers before ingestion

This example uses synthetic identifiers. Pseudonymous values can still be personal data, and review fields can expose business or provider context. Apply your own consent, retention, access, residency, and deletion requirements.

  • account_id: pseudonymous

Validation checklist

Prove the contract before building a dashboard

  • Send one known telemetry_delivery_observed fixture after the documented outcome boundary.
  • Verify all 10 required fields arrive with the documented types.
  • Retry the same event identifier and confirm the chosen deduplication behavior.
  • Send a controlled failure or alternate outcome when the workflow supports one.
  • Run the related SQL over a fixed window and reconcile the result to the fixture.

Common mistakes

Keep one row equal to one durable outcome

  • Emitting telemetry_delivery_observed before shared instrumentation or telemetry delivery library knows the final outcome.
  • Mixing several grains in one table, which makes counts and rates ambiguous.
  • Replacing controlled categories with raw URLs, payloads, prompts, or error text.
  • Changing a field type in place after saved queries and dashboards depend on it.
  • Adding identifiers without a documented investigation, access, and retention need.

Use the contract

Query and operationalize the event

Related contracts

Send a fixture before production traffic

Create a free API key, send the synthetic event, and inspect the inferred table before connecting a live workflow.

Test this schema