问题描述
在Azure中创建逻辑应用(Logic App),有两种计划类型。一是消费型,另一种是标准型。
在消费型的Logic App Metrics页面中,我们可以看见Workflow的执行成功数指标和失败数指标。如:
但是,在标准型的Logic App Metrics页面中,却没有执行成功数,失败数等标识Workflow 执行指标?那么,如果需要查看这些指标,有什么办法呢?
问题解答
需要通过Application Insights来实现查看标准Logic App Workflow的执行指标情况。包含有Runs Completed, Runs Failed, Runs Succeeded.
第一步:在Logic App页面中启用 Application Insights
第二步:进入Application Insights页面,查看Metrics,其中就可以查看workflow的执行情况
答案引用自: Application Insights Enhancements for Azure Logic Apps (Standard) – Preview (microsoft.com)
Metrics
Through the investments that were made in enhancing our Application Insights schema, we are now able to gain additional insights from a Metrics perspective. From your Application Insights instance, select Metrics from the left navigation menu. From there, select your Application Insights instance as your Scope and then select workflow.operations as your Metric Namespace. From there, you can select the Metric that you are interested in such as Runs Completed and an Aggregation like Count or Avg. Once you have configured your filters, you will see a chart that represents workflow executions for your Application Insights instance.
If you would like to filter based upon a specific workflow, you can do so by using filters. Filters require multi-dimensional metrics to be enabled on your Application Insights instance. Once that is enabled, subsequent events can be filtered. With multi-dimensional metrics enabled, we can now click on the Add filter button and then select Workflow from the Property dropdown, followed by = as our Operator and then select the appropriate workflow(s).
Using filtering will allow you to target a subset of the overall events that are captured in Application Insights.
【END】
当在复杂的环境中面临问题,格物之道需:浊而静之徐清,安以动之徐生。 云中,恰是如此!
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
相关推荐: C/C++学习之路:从数据类型到程序控制结构全面剖析
C/C++ 基础知识 一 一、C/C++概述 1.1 C/C++的历史 1.2 C/C++的特点 1.3 C/C++的应用领域 二、运算符与数据类型 2.1 运算符表达式 2.1.1 基本算术运算符 2.1.2 关系运算符 2.1.3 逻辑运算符 2.1.4 …