| name | cis-azure-foundations-6.1.3.1 |
| description | Ensure Application Insights are Configured |
| category | cis-azure-foundations |
| version | 5.0.0 |
| author | cyberstrike-official |
| tags | ["cis","azure","logging","monitoring","application-insights","app-monitoring"] |
| cis_id | 6.1.3.1 |
| cis_benchmark | CIS Microsoft Azure Foundations Benchmark v5.0.0 |
| tech_stack | ["azure"] |
| cwe_ids | [] |
| chains_with | [] |
| prerequisites | [] |
| severity_boost | {} |
Ensure Application Insights are Configured
Description
Application Insights within Azure act as an Application Performance Monitoring solution providing valuable data into how well an application performs and additional information when performing incident response. The types of log data collected include application metrics, telemetry data, and application trace logging data providing organizations with detailed information about application activity and application transactions. Both data sets help organizations adopt a proactive and retroactive means to handle security and performance related metrics within their modern applications.
Rationale
Configuring Application Insights provides additional data not found elsewhere within Azure as part of a much larger logging and monitoring program within an organization's Information Security practice. The types and contents of these logs will act as both a potential cost saving measure (application performance) and a means to potentially confirm the source of a potential incident (trace logging). Metrics and Telemetry data provide organizations with a proactive approach to cost savings by monitoring an application's performance, while the trace logging data provides necessary details in a reactive incident response scenario by helping organizations identify the potential source of an incident within their application.
Impact
Because Application Insights relies on a Log Analytics Workspace, an organization will incur additional expenses when using this service.
Audit Procedure
Using Azure Portal
- Navigate to
Application Insights.
- Ensure an
Application Insights service is configured and exists.
Using Azure CLI
az monitor app-insights component show --query "[].{ID:appId, Name:name, Tenant:tenantId, Location:location, Provisioning_State:provisioningState}"
Ensure the above command produces output, otherwise Application Insights has not been configured.
Using PowerShell
Get-AzApplicationInsights|select location,name,appid,provisioningState,tenantid
Expected Result
At least one Application Insights resource should be configured and exist with a successful provisioning state.
Remediation
Remediate from Azure Portal
- Navigate to
Application Insights.
- Under the
Basics tab within the PROJECT DETAILS section, select the Subscription.