database_operation_completed: from owned boundary to trusted query
Treat database_operation_completed 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
Outcome becomes final
Database adapter or repository boundary emits only after the operation succeeds, rolls back, times out, or returns a classified error.
- 2
Contract is bounded
9 required fields preserve the declared grain: One completed application-owned database operation.
- 3
Fixture is verified
Check types, UTC time, alternate outcomes, idempotency, and every pseudonymous or review-classified field.
- 4
Question is answered
Which operation fingerprints, releases, and database roles are slow or failing?
Grain
One completed application-owned database operation.
Owner
Database adapter or repository boundary
Emit when
After the operation succeeds, rolls back, times out, or returns a classified error.
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.
| Field | Type | Required | Privacy | Meaning |
|---|---|---|---|---|
| timestamp_utc | timestamp | yes | non-sensitive | UTC time at the outcome boundary. |
| event_id | string | yes | non-sensitive | Stable unique identifier used for deduplication. |
| release | string | yes | non-sensitive | Application or service version that emitted the event. |
| account_id | string | yes | pseudonymous | Stable internal account identifier, never an email or name. |
| operation_name | string | yes | non-sensitive | Stable application operation such as create_dashboard. |
| query_fingerprint | string | yes | review | Reviewed normalized identifier; never raw SQL or bound values. |
| database_role | string | yes | non-sensitive | Bounded role such as primary, replica, or analytics. |
| duration_ms | number | yes | non-sensitive | Application-observed duration in milliseconds. |
| status | string | yes | non-sensitive | Success, timeout, rollback, or classified error. |
Synthetic JSON event
{
"timestamp_utc": "2026-07-29T09:21:34Z",
"event_id": "evt_database_01",
"account_id": "acct_8f31",
"release": "2026.07.3",
"operation_name": "list_recent_events",
"query_fingerprint": "select_recent_events_v2",
"database_role": "analytics",
"duration_ms": 241,
"status": "success"
}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: pseudonymousquery_fingerprint: review
Validation checklist
Prove the contract before building a dashboard
- Send one known database_operation_completed fixture after the documented outcome boundary.
- Verify all 9 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 database_operation_completed before database adapter or repository boundary 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.