To log ms crm client side telemetry to Application insights use below code: https://github.com/vgrade/MSCRM/blob/main/Scripts/ClientSideAppInsightsLog.js var thisEntity = window.NameSpace || {}; if (ApplicationInsights === "undefined") { var ApplicationInsights = {}; } ApplicationInsights = { trackApplicationInsight: function (entityName, properties) { var appInsights = window.appInsights || function (config) { function i(config) { t[config] = function () { var... Continue Reading →
How to Secure Secrets in Logic app editor and run history using ARM template, key vault and secure input
Logic apps are great at orchestrating integrations with UI based workflows and supports over 200 connectors, so it become 1st choice for many integration scenario. One of the most common scenario is when we want to use some secure parameters (like username, password etc) in logic app, it become important to secure such secrets properly... Continue Reading →
How to enable app insights in azure app service (Web app)
App insights is very powerful logging and monitoring azure service which help us keep track of traces, logging and exceptions of our web app. App insights have many more powerful feature, we'll focus on understanding how we can enable application insights in our webapp and check our traces/logs/exceptions :- Step 1: Create a App service... Continue Reading →