Application Insights gathers data from your app to monitor its performance and usage. Which method below correctly describes how it collects telemetry?
Think about how real-time monitoring tools work inside an app.
Application Insights uses an SDK embedded in your app to send telemetry data automatically to Azure for monitoring.
You want to monitor your Azure Web App using Application Insights. Which resource must you create or link to enable this?
Consider what resource directly supports Application Insights data collection.
Application Insights requires a dedicated resource in Azure to receive and analyze telemetry data from your app.
To protect your Application Insights data, how should you handle the instrumentation key in your application?
Think about how to keep sensitive keys safe from unauthorized access.
Storing keys in environment variables or secure stores prevents accidental exposure and improves security.
Sampling reduces the amount of telemetry sent to Application Insights. What is the effect of disabling sampling on a busy app?
Consider what happens when all telemetry is sent without filtering.
Disabling sampling means all telemetry is sent, increasing data volume, costs, and processing time.
You want to find how many requests failed in your app using Application Insights Analytics. Which Kusto query returns the count of failed requests?
requests | where success == false | summarize count()
Remember the correct syntax for filtering and counting in Kusto Query Language.
The correct syntax uses 'where' to filter and 'summarize count()' to count rows.