Event Sources
Establish who produced an event before downstream investigation begins.
- Source identity and environment
- Source-scoped API keys
- Setup and readiness context
- Source health and activity

Lariba Cloud connects trusted event intake, source identity, investigation, delivery lifecycle, guarded recovery, RBAC, and audit evidence in one operational model.
Platform layers
Each layer has a distinct responsibility. Source identity and event investigation stay readable, while mutations pass through readiness, permissions, confirmation, and audit evidence.
Establish who produced an event before downstream investigation begins.
Inspect events with source, type, status, severity, time, and storage context.
Turn source and event context into recommendations, alerts, and investigation paths.
Follow delivery lifecycle and run guarded recovery actions when a failure is eligible.
Separate read access from operator mutations with project-scoped permissions.
Keep retry, replay, lineage, and worker evidence visible without exposing secrets.
Operational control loop
The same project and source context carries through the workflow, so operators do not have to reconstruct a failure across disconnected tools.
Receive an operational event from an authenticated source.
Attach project, source, environment, event type, and time context.
Inspect the event and follow its downstream delivery attempts.
Connect failure state to event, source, lifecycle, and retry policy.
Use readiness, permissions, and confirmation before replay or retry-now.
Refresh state and review sanitized audit evidence for the action.
Delivery operations
Teams can inspect lifecycle and retry state, understand whether recovery is eligible, run guarded actions, and review the resulting evidence.
Review status, lifecycle, retry count, policy, scheduled state, terminal state, DLQ visibility, and safe failure summaries.
Readiness checks explain whether an action is allowed before a confirmation-gated replay or retry-now request runs.
Replay lineage and retry audits show the controlled action path without returning provider secrets or raw destination configuration.
Readiness-gated
State, policy, channel, claim, and project checks run before execution.
Confirmation-gated
The dashboard requires explicit confirmation for controlled operator mutations.
Audit-visible
Replay lineage and retry audits make the resulting action path reviewable.
Capability metadata helps the Delivery dashboard avoid presenting unavailable actions. Backend RBAC still enforces every protected request, including stale-state and race cases.
delivery:readView delivery history, details, readiness, lifecycle, and retry audit evidence.
delivery:replayRun the existing confirmation-gated replay action when readiness allows it.
delivery:retry_nowRun one controlled retry-now action when policy, state, and readiness allow it.
delivery:manage_channelsKeep channel-management capability separate from delivery observation.
delivery:dlq_drainReserved as a future permission boundary; DLQ drain execution is not enabled.
Product stage
Lariba Cloud has working Foundation, Core Events, Sentinel, Delivery, RBAC, and audit surfaces. The product remains in Developer Preview while integrations, intelligence, governance, and operational breadth continue to mature.
Create a project and source-scoped key, send an operational event, then inspect the source and event context that later Delivery and Sentinel workflows can use.
curl
curl -X POST https://lariba-cloud-api.vercel.app/v1/events/ingest \
-H "X-API-Key: YOUR_SOURCE_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"event": "checkout.failed",
"source": "checkout-api",
"properties": {
"severity": "high"
}
}'Start with source identity and event visibility, then add Delivery, RBAC, and audit controls as your operational workflows become real.