Azure Activity Logs are a fundamental aspect of monitoring and auditing within Azure, providing insights into operations on Azure resources. Here's what you need to know:
What Are Activity Logs?
Definition:
Activity logs capture control-plane events at the subscription level, detailing operations like creating, updating, or deleting Azure resources.
Purpose:
Track resource changes and actions.
Provide auditing for compliance and governance.
Assist in troubleshooting resource-level issues.
Key Features
Scope: Logs capture operations that occur outside the resource, such as resource creation or policy updates. They do not include data-plane events (e.g., read/write operations within a storage account).
Retention: Activity logs are retained for 90 days by default in the Azure Portal. Export logs to Log Analytics, Storage Accounts, or Event Hubs for longer retention or advanced analysis.
Default Availability: Enabled by default for all Azure subscriptions.
Types of Events in Activity Logs
Administrative Events: Record management operations like creating, deleting, or updating resources.
Service Health Events: Provide information on Azure service issues that might affect your resources.
Policy Events: Log policy evaluations for compliance checks and violations.
Security Events: Capture operations related to security, like assigning roles or managing security rules.
Alert Events: Include notifications triggered by activity log-based alerts.
Viewing Activity Logs
Azure Portal:
Navigate to Monitor > Activity Logs.
Use filters to specify the time range, resource group, resource type, or event category.
Azure CLI/PowerShell:
Retrieve activity logs programmatically for automation or integration.
Example with Azure CLI:
xxxxxxxxxx
11az monitor activity-log list --start-time "2024-01-01" --end-time "2024-01-02"
Log Analytics:
Ingest activity logs into a Log Analytics workspace for advanced querying and visualization using KQL.
Exporting Activity Logs
Export Methods:
Log Analytics: Store logs for detailed analysis and custom dashboards.
Event Hubs: Stream logs to external systems like SIEM tools.
Storage Accounts: Archive logs for long-term retention and compliance.
Common Use Cases
Auditing and Compliance: Track who performed what action and when on Azure resources. Monitor policy compliance and governance adherence.
Troubleshooting: Investigate issues like accidental resource deletions or misconfigurations. Identify root causes of deployment failures.
Monitoring and Alerts: Create alerts based on specific activity log events (e.g., when a resource is deleted).
Security Monitoring: Detect unauthorized or suspicious activities, such as unusual administrative actions.
Best Practices
Enable Diagnostic Settings: Export activity logs to Log Analytics or a storage account for extended retention and analysis.
Set Up Alerts: Configure alerts for critical events, such as resource deletions or policy violations.
Regularly Monitor: Periodically review activity logs to ensure resource changes align with expectations.
Use Automation: Automate responses to specific activity log events using Azure Logic Apps or Azure Functions.
Integrate with Security Tools: Feed activity logs into Azure Sentinel or third-party SIEM systems for security insights.
Limitations
Data-Plane Logs Not Included: Activity logs do not track operations inside resources (e.g., file uploads to Azure Storage).
Retention Limit in Portal: Default retention is 90 days, necessitating export for longer-term storage.
Example Queries
If exported to a Log Analytics workspace, you can query activity logs with Kusto Query Language (KQL):
Find All Resource Deletions:
xxxxxxxxxx
21AzureActivity
2| where OperationNameValue == "Microsoft.Resources/subscriptions/resourceGroups/delete"
Track Actions by a Specific User:
xxxxxxxxxx
21AzureActivity
2| where Caller == "user@example.com"
Getting Started
Access activity logs via the Azure Portal under the Monitor section.
Configure Export Settings for extended retention.
Use filters or queries to analyze specific events.
Summary
Azure Activity Logs are a vital tool for auditing, compliance, and operational monitoring, offering essential insights into the actions taken across your Azure subscription.
Leave a Reply