Hi Temporal community,
Quick question, I have a main workflow called Payments and a child workflow called Attempts. The Payments workflow calls the attempts workflow whenever the system is ready to make an attempt with one of the payment providers. If the attempt fails, the Attempts workflow will be retried up to 3 times and it might use a different payment provider in each try.
Currently, in the Temporal UI, when looking at the Payments workflow, I am only seeing the last successful or failed child workflow. However, I am unable to see the all the attempts (successful and failed) in the Payments workflow.
To clarify, I can see all the attempts executions in the page where all the workflows are displayed, I am just asking if there is a way to see all the attempts (successful and failed) inside the Payments workflow.
So I was wondering wether or not there is a way to see all the child workflows retries in the parent Payments workflow?
This is how the child workflow is called:
$childWorkflow = Temporal::newChildWorkflow()
->withRetryOptions(RetryOptions::new()->withMaximumAttempts(3))
->build(AttemptWorkflowInterface::class);
Thanks