惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

K
Kaspersky official blog
Martin Fowler
Martin Fowler
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
V
Visual Studio Blog
博客园_首页
Engineering at Meta
Engineering at Meta
The Cloudflare Blog
MongoDB | Blog
MongoDB | Blog
Blog — PlanetScale
Blog — PlanetScale
T
The Blog of Author Tim Ferriss
雷峰网
雷峰网
D
Docker
博客园 - 司徒正美
S
SegmentFault 最新的问题
M
MIT News - Artificial intelligence
博客园 - 叶小钗
博客园 - 三生石上(FineUI控件)
U
Unit 42
J
Java Code Geeks
A
About on SuperTechFans
N
Netflix TechBlog - Medium
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
Security Affairs
I
Intezer
Cisco Talos Blog
Cisco Talos Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
Threat Intelligence Blog | Flashpoint
Threat Intelligence Blog | Flashpoint
B
Blog RSS Feed
P
Privacy & Cybersecurity Law Blog
T
Tenable Blog
T
Threatpost
H
Hacker News: Front Page
G
Google Developers Blog
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
Apple Machine Learning Research
Apple Machine Learning Research
L
Lohrmann on Cybersecurity
大猫的无限游戏
大猫的无限游戏
Google DeepMind News
Google DeepMind News
A
Arctic Wolf
S
Secure Thoughts
GbyAI
GbyAI
NISL@THU
NISL@THU
S
Security @ Cisco Blogs
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
Webroot Blog
Webroot Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
O
OpenAI News
Spread Privacy
Spread Privacy
Application and Cybersecurity Blog
Application and Cybersecurity Blog

Phidiax

Power BI Model Optimization Before Premium | Phidiax BizTalk Server Backup Modernization with Azure Blob | Phidiax Minimal Viable Experiment for AI (MVE) | Phidiax Insights Restora Estimation Automation Success Story | Phidiax MVE for AI TCDRS Power BI Client Impact | Phidiax Analytics & BI Consulting Logic Apps Standard | Modify the Azure Workbook Template | Phidiax Logic Apps Standard | Apply the Azure Workbook Template | Phidiax Phidiax is a Microsoft Managed Gold Partner | IT Solutions Consulting
Logic Apps Standard | Enable Application Insights v2 Telemetry | Phidiax
Jeff Wessling · 2025-06-01 · via Phidiax

Upgrading telemetry for better monitoring, faster troubleshooting, and reliable integration at scale

This post is part of our Logic Apps Observability series. See Part 2 on applying the Logic App Overview Workbook Template, and Part 3 on customizing the workbook for multi-workflow monitoring.

If you’ve ever tried diagnosing a Logic App Standard workflow using the old telemetry, you know the frustration. Generic traces, missing context, and too much time wasted digging. Application Insights v2 telemetry changes that. With one small configuration update, you gain richer diagnostics, smarter filters, and true cross-service correlation. This is not just an upgrade in logging. It is a leap forward in operational efficiency and reliability.

Insight: Why Upgrade to v2 Telemetry

Enhanced (v2) telemetry delivers significant benefits:

  • Action Level Clarity: Trigger and action events capture connector type and API name.

  • Retry and Exception Tracking: Failures and retries are logged with useful context.

  • Reduced Noise: Streamlined logging reduces data sprawl and storage costs.

  • Cross Service Correlation: Preserve operation IDs across Logic Apps, API Management, and Functions for true end to end tracing.

  • OpenTelemetry Support: Export to Application Insights or any OTEL-compliant endpoint for standardized observability.

For BizTalk veterans, this feels like the modern answer to Group Hub reporting. Robust, actionable, and cloud native.

Update your Logic App Standard host.json file with this snippet:

{
  "version": "2.0",
  "extensionBundle": {
    "id": "Microsoft.Azure.Functions.ExtensionBundle.Workflows",
    "version": "[1, 2.00)"
  },
  "extensions": {
    "workflow": {
      "Settings": {
        "Runtime.ApplicationInsightTelemetryVersion": "v2"
      }
    }
  }
}

Steps:

  1. Open your Logic App Standard resource in Azure Portal.

  2. Navigate to Development Tools → Advanced Tools (Kudu).

  3. This will open the Kudo tools page. Select “Debug Console → CMD”

  4. This will open the site folder directory. From here you can navigate to the host.json file by following: site → wwwroot → host.json.

  5. Edit and update the file with the JSON snippet above. Select the “pencil” edit icon to update the file. If it does not include the Runtime.ApplicationInsightTelemetryVersion node, replace the JSON in the host.json file and click Save.

  6. After saving the changes to the host.json file, the tab can be closed, and the changes should be automatic. You can also restart the Logic App from the Overview tab of the Logic App Standard resource.

Optional: Multi-Service Correlation

For multi-service correlation, add the PreserveIncomingOperationId node:

"Runtime.ApplicationInsights.PreserveIncomingOperationId": "true"

This setting ensures that operation IDs are preserved when Logic Apps call or trigger other services, which enables true end to end correlation across multiple workflows and platforms

{
  "version": "2.0",
  "extensionBundle": {
    "id": "Microsoft.Azure.Functions.ExtensionBundle.Workflows",
    "version": "[1, 2.00)"
  },
  "extensions": {
    "workflow": {
      "Settings": {
        "Runtime.ApplicationInsightTelemetryVersion": "v2",
        "Runtime.ApplicationInsights.PreserveIncomingOperationId": "true"
      }
    }
  }
}

Outcomes

  • Faster Issue Resolution: Filter failed runs and pinpoint root causes in seconds.

  • Improved Observability: Trace workflows across Logic Apps, APIs, and Functions.

  • Operational Efficiency: Lower storage costs, cleaner logs, and more actionable data.

  • Happier Teams: Operations staff finally get dashboards that show clarity instead of clutter.

Related Posts in This Series

This article is part of our Logic Apps Observability series. Explore Part 2 on applying the Logic App Overview Workbook Template, and Part 3 on customizing the workbook for multi-workflow monitoring.

Still relying on noisy, hard to trace App Insights v1 telemetry?

If troubleshooting is slowing down your operations team, it is time to modernize. Phidiax architects can help you enable v2 telemetry, implement observability driven workbooks, and ensure monitoring aligns directly with your business outcomes.