Capture Metrics From Orchestrator Queues

How to capture metrics from Orchestrator queues?

Perform the below steps to collect the Orchestrator queue metrics:

  1. Get the Queue of which the retried items are needed using the below API to get all Queue's present in the Orchestrator
  • https://*********uipath.com/odata/QueueDefinitions
This API will return all queue's present in Orchestrator.
  1. Next use another API to get the "ReviewStatus", "RetryNumberr", "SpecificContent" of all queue items.
  2. Also filter it based on the Queue, using the QueueDefinationId obtained in first API call.
  • https://********uipath.com/odata/QueueItems?$filter=QueueDefinitionId%20eq%201
The above API will give all the data , that is required for calculating Orchestrator Queue metrics.