azure - 是否有标准逻辑应用程序的管理 API?

标签 azure azure-logic-apps azure-logic-app-standard

有一个逻辑应用管理 API ( https://learn.microsoft.com/en-us/rest/api/logic/workflows )

据我了解,您无法使用该服务访问标准逻辑应用程序。有解决办法吗?基本上,我需要检索正在运行的工作流程的几天操作输出。 TIA

最佳答案

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

正如 @Thomas 所提到的,解决方法之一是从逻辑应用程序中启用应用程序洞察,然后使用 KQL 在日志分析中检索工作流的操作输出。

enter image description here

在 Application Insights 中,我使用以下查询来获取有关其状态为正在运行的每个操作的信息。

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

enter image description here

关于azure - 是否有标准逻辑应用程序的管理 API?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/73186357/

相关文章:

azure - 引用ARM模板中的VSTS构建/发布变量

c# - 如何配置 Azure Function v3 使用的默认 JsonSerializerOptions (System.Text.Json)?

c# - Azure 媒体服务从 HTML 上传

azure - 使用 Bicep/YAML 禁用部署逻辑应用程序(标准)工作流

Azure 逻辑应用表插入导致错误

azure-functions - 如何从在 VS Code 中本地运行的 Azure 逻辑应用程序使用 Azure Function App?

azure - 访问 Azure AD 图形资源管理器时出错

facebook - Azure 逻辑应用程序 Facebook 连接器给出空响应

azure - Azure 逻辑应用(标准)中缺少 "schedule delay"连接器

powershell - Azure SFTP 连接器,创建后无法编辑应用程序设置值