Reputation: 71
I want to track status code of a entire logic app instead of particular action status code using expression.
Status Code would be mention in tracked properties of a logic app.
Any help?
Upvotes: 0
Views: 4167
Reputation: 11040
Stay tuned. In a couple of days, I will be publishing an article on how to know the status of a running Logic App. Will update this Answer once it's posted.
And it's here: Knowing the State of Your Logic App Process
Upvotes: 0
Reputation: 101
you can track entire logic app staus using Operations Management Suite (OMS) and Log Analytics
its give you entire logic app in details status please check below link
Upvotes: 0
Reputation: 101
You can check status using below expression code
@int(actionOutputs('ActionName').statusCode)
Then you can check that code using condition like in below picture
If You have any more questions related to feel free to ask
Upvotes: 2