0

Working on a deployment scenario where I need to make a REST call to verify some values for my deployment every x minutes. If anyone knows of a way to achieve this, it would be very much appreciated. Thanks!

  • Maybe this is also an option: https://learn.microsoft.com/en-us/azure/azure-monitor/app/monitor-web-app-availability – Markus Meyer Jul 27 '22 at 12:02
  • We dont use Azure monitors in our org unfortunately :( – Perseus Jul 27 '22 at 12:16
  • Please provide enough code so others can better understand or reproduce the problem. – Community Jul 28 '22 at 02:05
  • Is there any update for this issue? Feel free to let me know if the answer could give you some help. Just a reminder of [this](https://stackoverflow.com/help/someone-answers). – Leo Liu Aug 11 '22 at 01:41

1 Answers1

0

scheduled task in release pipeline that runs every x minutes

If you want to verify some values in current release pipeline for every x minutes, you could try to use the REST API to monitor those values:

You could refer my previous thread for some more details.

And if you could verify some values in other build pipeline, you could set the schedules for the pipeline:

schedules:
- cron: "x * * * *"
  displayName: Daily midnight build
  branches:
    include:
    - main

You could chek the document Cron syntax for some more details.

Leo Liu
  • 71,098
  • 10
  • 114
  • 135