Home > OS >  Get running instances of devops pipeline in Azure Devops
Get running instances of devops pipeline in Azure Devops

Time:02-09

I need to get all the running instances of a particular pipeline.

The API enter image description here

This API allows us to get top 10K runs, but it does not seem to allow a filter where I can add a filter on the state of the pipeline, i.e. inProgress/running etc.

One way obviously is getting these top 10K runs and filtering them, which would be highly inefficient.

Is there a different API where I can get active runs of a pipeline or is this not possible?

CodePudding user response:

Check this API: enter image description here

  •  Tags:  
  • Related