Bitta Apps
SolutionsPartnersAboutBlogPricingContact
Request a quote
Bitta Apps

Senior-led Business Central implementation, AL development, and Microsoft CSP licensing. Based in Corona, California. Remote-first across the U.S. and Canada, with onsite Southern California support by arrangement.

// services
  • Business Central partner
  • Implementation
  • AL Development
  • Integrations
  • Licensing & CSP
  • Support
  • QuickBooks migration
// industries
  • Distributors
  • Manufacturing
  • Retail
  • Healthcare
  • Non-Profit
  • Professional Services
// company
  • Solutions
  • Partners
  • Summit NA 2026
  • About
  • Careers
  • Blog
  • Pricing
  • Book a call
  • Contact
  • FAQ
// legal
  • Privacy
  • Terms
  • Cookies
  • EULA
info@bittaapps.com
LinkedIn
© 2026 · bittaapps.com · Microsoft Cloud Solution Providerinfo@bittaapps.com
    Back to blog

    // article

    AL Telemetry with Azure Application Insights: An Operations-First Guide

    by Mohammad Nour Itani·Jul 27, 2026·Reviewed Aug 22, 2026 by Mohammad Nour Itani
    Business CentralAL Development
    AL DevelopmentBusiness Central ExtensionsTelemetry

    Telemetry is the operating contract for a Business Central extension. Tests explain what should happen in a controlled environment; telemetry explains what is happening across real environments, versions, companies, and workloads.

    Business Central supports environment-level telemetry and app/extension-level telemetry. Both can send signals to Azure Application Insights. Extension telemetry is especially useful for publishers and partners because it can reveal failures and performance problems before a user provides a complete reproduction.

    Connect the right Application Insights resource

    For an extension, Microsoft documents the applicationInsightsConnectionString setting in app.json. The older instrumentation-key setting applies only to older runtimes and should not be the starting point for a new app.

    // app.json
    {
      "applicationInsightsConnectionString": "InstrumentationKey=...;IngestionEndpoint=..."
    }
    

    Do not commit a production connection string to a public repository. Treat deployment configuration and secret access as part of the release process. Confirm the selected Azure region, retention, access roles, and cost controls with the organization that owns the telemetry.

    Use platform signals before inventing custom ones

    Business Central already emits telemetry for many operations, including extension lifecycle, errors, long-running AL methods, SQL activity, web-service calls, reports, job queues, permissions, and Marketplace validation. Start by mapping those signals to the support questions you need to answer.

    Add feature telemetry when the platform cannot describe the business event. Microsoft points AL developers to the Feature Telemetry codeunit in the System Application or the logging APIs for custom messages. A custom event should have a stable event ID, a clear purpose, and a small set of documented dimensions.

    Design dimensions for diagnosis

    Useful dimensions often include app version, operation, result category, feature, execution mode, and a non-sensitive correlation ID. Avoid sending names, email addresses, document descriptions, free-form error content, access tokens, or business values unless a documented privacy review explicitly permits it.

    Record categories rather than uncontrolled text. For example, result=validation_failed is easier to aggregate and safer than logging a complete document or exception payload.

    Measure a complete operation

    A good operation has a start, outcome, duration, and correlation. If work crosses Business Central, a queue, and an external service, carry a correlation value through each layer without using a customer identifier. This lets support distinguish "Business Central did not create the outbound message" from "the receiving service rejected it."

    Build queries around support decisions

    Application Insights stores Business Central telemetry in Azure Monitor tables that can be analyzed with Kusto Query Language. Create saved queries for:

    • failure rate by app version and operation;
    • slow operations by percentile, not only average;
    • new error categories after a deployment;
    • web-service throttling and transient failures;
    • extension upgrade and installation failures;
    • environments still running a version that needs attention.

    A dashboard should lead to an action. If nobody knows what threshold requires intervention or who owns it, the chart is decoration rather than monitoring.

    Alert on symptoms that matter

    Microsoft documents alerting options through Azure Application Insights, Logic Apps, and Power Automate. Avoid an alert for every individual error. Alert on sustained failure rate, a critical operation disappearing, a new error category, repeated upgrade failure, or a material latency change. Route alerts to an owner with a runbook and enough context to investigate.

    Control cost and retention

    Application Insights billing depends on ingestion and retention. High-cardinality dimensions and verbose success events can add cost without improving decisions. Sample or aggregate routine signals where appropriate, preserve errors and critical audit events according to policy, and review unused telemetry periodically.

    Telemetry definition of done

    1. The app and environment resources are intentionally selected.
    2. Every custom event has an owner, documented dimensions, and data classification.
    3. No credential or unnecessary personal/business content is emitted.
    4. Saved KQL queries answer the top support questions.
    5. Alerts have thresholds, routing, and runbooks.
    6. Dashboards separate app versions and deployment windows.
    7. Ingestion cost and retention are reviewed.

    Review the telemetry design after each release wave and major integration change. New platform behavior, background jobs, or external dependencies can change which signals are useful and which alert thresholds create noise.

    Bitta Apps combines AL extension engineering, integration observability, and Business Central support operations so telemetry leads to faster diagnosis instead of another unattended dashboard.

    // about this article

    Written by

    Mohammad Nour Itani

    Founder & Senior Business Central Developer · MB-820, MB-800

    Reviewed Aug 22, 2026 by

    Mohammad Nour Itani

    Founder & Senior Business Central Developer · MB-820, MB-800

    Sources

    Claims in this article were checked against the following on Aug 22, 2026.

    1. learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/administration/telemetry-overview
    2. learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/devenv-application-insights-for-extensions
    3. learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/devenv-instrument-application-for-telemetry
    4. learn.microsoft.com/en-us/dynamics365/business-central/dev-itpro/developer/devenv-instrument-application-for-telemetry-app-insights

    // next step

    Talk to a senior Business Central consultant, not a sales rep.

    Fixed-price proposal in writing within five business days of discovery.

    Request a quoteBook a call

    // keep reading

    Business Central Upgrade Readiness: After the August 31 Window

    An updated five-checkpoint checklist for Business Central teams checking update status, resolving blockers and verifying critical business workflows.

    QuickBooks vs Business Central for 3 to 10 Employees: Is ERP Too Much?

    A practical, honest framework for small teams deciding whether QuickBooks still fits or Business Central would create better operational control.

    Odoo vs Business Central: What Costs Less When Your Business Scales?

    Compare Odoo and Business Central using the same user roles, company structure, integrations, implementation scope and ongoing maintenance assumptions.