如何在 Azure Logic App 中使用参数或变量或组合操作的输出作为跟踪属性?

问题描述 投票:0回答:1

我们如何使用参数或变量或组合的输出作为跟踪属性?

我们需要使用来自 HTTP 请求负载的值作为跟踪属性。我们能够使用 Xpath 获取所需的值。我们无法将其用作跟踪属性。我们正在考虑使用参数或变量或组合的输出。那么,我们如何使用参数或变量或组合的输出作为跟踪属性?

azure azure-logic-apps azure-log-analytics azure-diagnostics azure-log-analytics-workspace
1个回答
0
投票

出于演示目的,我使用下面的 xml 作为我的 HTTP 正文。

<?xml version="1.0"?>
<produce>
  <item>
    <name>Gala</name>
    <type>apple</type>
    <count>20</count>
  </item>

以下是我的逻辑应用程序的流程。

enter image description here

对我有用的跟踪属性表达式如下。

enter image description here

我在日志分析工作区中收到的跟踪属性。

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.