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

推荐订阅源

F
Fortinet All Blogs
Attack and Defense Labs
Attack and Defense Labs
V2EX - 技术
V2EX - 技术
O
OpenAI News
S
Secure Thoughts
H
Heimdal Security Blog
Application and Cybersecurity Blog
Application and Cybersecurity Blog
Schneier on Security
Schneier on Security
H
Hacker News: Front Page
S
Security Affairs
Exploit-DB.com RSS Feed
Exploit-DB.com RSS Feed
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
Vercel News
Vercel News
Microsoft Security Blog
Microsoft Security Blog
cs.CL updates on arXiv.org
cs.CL updates on arXiv.org
P
Proofpoint News Feed
The Register - Security
The Register - Security
GbyAI
GbyAI
Cloudbric
Cloudbric
MongoDB | Blog
MongoDB | Blog
D
Darknet – Hacking Tools, Hacker News & Cyber Security
K
Kaspersky official blog
Forbes - Security
Forbes - Security
Y
Y Combinator Blog
C
CXSECURITY Database RSS Feed - CXSecurity.com
Scott Helme
Scott Helme
Hacker News - Newest:
Hacker News - Newest: "LLM"
The Cloudflare Blog
Recorded Future
Recorded Future
人人都是产品经理
人人都是产品经理
Cyberwarzone
Cyberwarzone
C
CERT Recently Published Vulnerability Notes
Webroot Blog
Webroot Blog
C
Cyber Attacks, Cyber Crime and Cyber Security
L
LangChain Blog
T
Tor Project blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
Hacker News: Ask HN
Hacker News: Ask HN
Blog — PlanetScale
Blog — PlanetScale
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog RSS Feed
N
News and Events Feed by Topic
阮一峰的网络日志
阮一峰的网络日志
I
Intezer
V
V2EX
T
Tailwind CSS Blog
SecWiki News
SecWiki News
NISL@THU
NISL@THU
C
Check Point 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.