Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Logic apps trigger history

I have created a logic app which triggers when a message is received in the Service Bus queue. It works fine but when I look at the trigger history, it shows a lot records with status as "Skipped" even when the logic app is idle. So what are these records?

like image 377
Akshay Avatar asked Oct 29 '25 09:10

Akshay


1 Answers

A status of skipped just indicates that the nothing new was found to fire the logic. If the trigger is getting fired every minute over an hour for example and you only ever had 20 messages, then the logic would only fire 20 times, every other time you should see skipped appear in the trigger history.

like image 99
Martyn C Avatar answered Oct 31 '25 07:10

Martyn C