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
Azure OpenAI Service: Complete Guide for Beginners
Introduction Artificial Intelligence is transforming how businesses build software, automate workflows and deliver personalised customer exper...
3 hours ago
Dynamics 365 Business Central: How to check the font of a standard report
Hi, Readers.Today I would like to share another mini tip about Business Central, how to check the font of a standard report. This is a questio...
6 hours ago
Find any commit in seconds: Commit Search comes to Azure DevOps
Great code has a long memory. The fix you shipped last quarter, the refactor that touched a dozen files, the one-line change that explained wh...
16 hours ago
Using Azure OpenAI to Auto-Summarize Dataverse Case Notes – AI Integration + Dataverse CE
Why I Built This If you work in Dynamics 365 Customer Service or any Dataverse CE environment, you already know the pain: a single case can ac...
21 hours ago
Dynamics 365 Business Central: Add a calculator to the sales order page
Hi, Readers.Today I would like to talk about how to add a calculator to the sales order page in Business Central. This is an interesting ...
1 day ago