Using Azure Insights in Business Central
It very easy to setup and use Azure Insights in Business Central.
You can read how to set it up here
But how to actually analyze the logs in Azure?
First I’ll set up some custom events that I want to send to Azure.
Little wrapper around the Session.LogMessage so its easier to use:
local procedure LogMessage(EventId: Text[50]; Message: Text[200]; Dimension: Text[50]) var TelemetryDimensions: Dictionary of [Text, Text]; begin TelemetryDimensions.Add('Method', Dimension); Session.
Published on:
Learn moreRelated posts
Exploring azd extensions: Enhance your Azure developer experience
A deep dive into the introduction of the Azure Developer CLI (azd) extensions and the azd extension framework to build extensions. The post Ex...
2 hours ago
Dynamics 365 Business Central Blog Series: Integrate with Microsoft Dataverse
There are currently three methods available:1. Using the standard Dataverse connector (The synchronization between Dataverse and Business Cent...
14 hours ago
Dynamics 365 Business Central Blog Series: Adding Barcodes
Articles in this series: Use one-dimensional barcodes in reports Use one-dimensional barcodes in reports (Business Central online) Using 2D ba...
14 hours ago
Dynamics 365 Business Central: Generate Swiss QR Code without external services/APIs
Hi, Readers.The barcode functionality lets you convert an alphanumeric value in a report dataset into a barcode on a generated report. The fun...
3 days ago