1

There is a Logic Apps management API (https://learn.microsoft.com/en-us/rest/api/logic/workflows)

As far as I understood you cannot use the service to access Standard Logic Apps. Is there a work around? Basically I need to retrieve a few days of action outputs of my running workflow. TIA

Thomas
  • 24,234
  • 6
  • 81
  • 125
Ilya Usov
  • 31
  • 3
  • 1
    you could have a look at this link. Ig you have app-insights / log-analytics enabled, you should be able to query through azure monitor queries: https://platform.deloitte.com.au/articles/monitoring-logic-apps-standard-with-app-insights-querying – Thomas Jul 31 '22 at 23:22

1 Answers1

0

Basically I need to retrieve a few days of action outputs of my running workflow.

Like mentioned by @Thomas, One of the workarounds is to enable application insights from your logic apps and then retrieve the action outputs of your workflow in log analytics using KQL.

enter image description here

In Application Insights, I'm using the below query to get the information about each and every action where its state is in Running.

traces 
| where cloud_RoleName == "<Your_LogicApp_Name>"
| where message contains "Running"
| where operation_Name  != ""

enter image description here

SwethaKandikonda
  • 7,513
  • 2
  • 4
  • 18