Events and Event Deliveries
Ingesting Events
Convoy supports four different message formats to ingest webhook events into Convoy. This section will help you understand each one of them so that you can select an appropriate format for your use case. All these formats can both be ingested from the API or through any message broker.
Directed
This is the most common structure for ingesting events. With this, you supply an endpoint_id
and the data
to push to the endpoint.
This integration requires you to create the customer’s endpoint ahead of time and save the endpoint_id
so you can use it when dispatching to Convoy.
Use this endpoint to ingest this structure via the API. See the full payload below.
Fan-out
This structure is used to fan out an event to multiple endpoints for a given tenant.
It is common and best practice to enable each customer
to have more than one endpoint and subscribe to specific events on each endpoint.
You can use this structure to offload the task of determining which of the customers’ endpoint to receive the event.
All you need to supply in this structure is the owner_id
, which represents a unique customer in your business.
Use this endpoint to ingest this structure via the API.
Broadcast
This one is used to broadcast one event to multiple tenants in your system.
A use case for this is web3/blockchain events,
where you want to broadcast a social event like cast.created
to multiple customers.
With this structure,
you will specify
neither endpoint_id
nor owner_id
and Convoy will try
to dispatch the event to all endpoints except the endpoint specifically exclude itself through its subscription.
Use this endpoint to ingest this structure via the API.
Dynamic
This one is used to ingest and dispatch webhooks without creating endpoints ahead of time. In this mode, you’re using Convoy as a proxy to deliver webhooks. Use this endpoint to ingest this structure via the API.
Custom Headers and Idempotency
Custom Headers
Any key value pairs set in this object will be added as headers to the HTTP request of the webhook.
If
x-convoy-message-type
set to broadcast, the event will be sent to all endpoints in the project, ignoring both theendpoint_id
andowner_id
values.
Idempotency
Idempotency keys are useful for deduplicating REST API calls. In Convoy, we use them to deduplicate events being sent more than once. An idempotency key can only be reused when the event bearing that key has been hard deleted after the retention policy window.
When an event with an existing idempotency key is ingested, it is created as a duplicate of the former and can be seen on the dashboard, and no event delivery is created for it.
Events Log
The Events log dashboard represents all webhook events pushed to Convoy. They do not have a status and do not contain delivery attempts. It is only a log of events published to Convoy. The events log page can be accessed from the sidebar.
Event delivery
An event delivery is the combination of an endpoint and an event. For both incoming and outgoing webhooks project, an event can generate multiple event deliveries depending on the subscriptions. An event delivery can have any of the states below:
Scheduled
: In this state, the event delivery has been enqueued to the message broker, but a worker node is yet to pick it up for delivery.Processing
: In this state, the event delivery has been retrieved from the message broker by a worker node, and the event is on its way out.Success
: In this state, the event delivery delivered successfully. Here, theRetry
button becomesForce Retry
. This is used to retry a successful event in case of a false positive.Retry
: In this state, the event delivery previously failed and the automatic retries have kicked in. Here, Convoy will continue to retry till the max attempts is reached.Failed
: In this state, the event delivery has reached the maximum number of automatic retries and failed to deliver the event or the endpoint failed to acknowledge delivery. Here, theRetry
button becomes to active to trigger manual retries.Discarded
: In this state, the endpoint has been set toinactive
, so Convoy did not try to process events to the endpoint at all. See here on re-activating the endpoint.
Event deliveries can be viewed on the Events Deliveries page below:
Debugging Event Deliveries
For the most part, building a dashboard for webhooks requires building the tools for finding and solving problems easily, this requires the ability to quickly find the affected payload, application, endpoint and most importantly affected customer.
There are two ways to debug events in Convoy:
Event filtering
You can filter events and event deliveries by date, time, status and endpoints respectively.
Event search
Every hour Convoy tokenizes the entire webhook payload this enables you to search (using full-text search) the entire payload for any value in any field that enables you to debug issues faster. Search tokens are retained till they are deleted at the end of the search retention period.
Was this page helpful?