It would be fantastic if retried queue items showed nested under the original queue item. Or you could go the other way and show the latest attempt with the earlier attempts under them. So in the queue you’d see the final queue item and its result, and then you could expand it and see the original plus the retries. This is because these are all really the same queue item.
Fair point - but if you give them an appropriate unique reference, then you could just filter by that and it would show all relevant queue items with their statuses as “Failed” and “Retried” - which makes it similar.
Also, if you use an API to get data on that specific queue item by reference, you would be able to see all of them.
What I usually do is replicate this type of display in a Database (SQL, Postress etc.) and literally log everything about each transaction or queue item INCLUDING whether it was retried or not, and if it was, I simply append a “-1” or “-2” to the reference of the item in the database showing how many times it was retried. This really helped a lot with downstream reporting.
I get you though - it doesn’t have it in a “folder up” view in Orchestrator directly. But you can cater for this.