The useEventDetails hook will get the details of a specific event. You can use this to show the status of a specific event.
When you use
sendEvent it will
return basic details about the event, including the id of the event. You can
then pass this to your frontend to use in the useEventRunDetails hook.
This component will show the details of an event and the overall status of Runs that were triggered by the event:
The useRunDetails hook will get the details of a specific Run. You can use this to show the status of a specific Run.
You can call client.getRuns() with a Job id to get a
list of the most recent Runs for that Job. You can then pass that run id to your frontend to use
in the hook.
This component will show the details of a Run and the status of each task in the Run:
The useEventRunDetails hook will get the details of a specific Run that was triggered by a specific event. You can use this to show the status of a specific Run.
When you use
sendEvent it will
return basic details about the event, including the id of the event. You can
then pass this to your frontend to use in the useEventRunDetails hook.
This component will show the details of a Run and the status of each task in the Run: