Challenge 2: Always Need App Insights
July 22, 2022 ยท View on GitHub
< Previous Challenge - Home - Next Challenge >
Introduction
All app development work in Azure should have Application Insights turned on and used by default. This invaluable tool can be used for standard and custom telemetry and much more.
Description
- In your shell, deploy the provided ARM Template to create an Application Insights resource we will use for the various applications to log to.
- ARM Template:
azuredeploy-appinsights.json- This file can be found in the Files section of the General channel in Teams.
- Two Parameters:
name: Name of the App Insights Resource to CreateregionId: Scripting Name of the region to Provision in
- ARM Template:
- Put the
InstrumentationKeyof the App Insights resource you just created in a variable called appInsightsKey
Success Criteria
- You have used the provided template to create you own App Insights resource.
- You've saved off the
InstrumentationKeyin a variable for future use.