Reputation: 11
Is there a way to configure Azure Activity logs to be forwarded to a Log Analytics instance using Azure CLI?
Hopefully equivalent to the PowerShell command:
New-AzureRmOperationalInsightsAzureActivityLogDataSource -ResourceGroupName <LogAnalyticsOMSWorkspaceResourceGroupName> -WorkspaceName <LogAnalyticsOMSWorkspaceName> -Name <NameOfThisOperationalInsightsAzureActivityLogDataSource> -SubscriptionId <SubscriptionId>
Upvotes: 1
Views: 905
Reputation: 3824
Significant changes have been made to Azure Monitor recently, with different services being consolidated in order to simplify monitoring for Azure customers.
Dedicated Azure CLI commands under the set az monitor activity-log alert are available for managing activity log alert rules.
To create a new activity log alert rule, use in this order:
To retrieve one activity log alert rule resource, the Azure CLI command az monitor activity-log alert show
can be used. And for viewing all activity log alert rule resource in a resource group, use az monitor activity-log alert list
. Activity log alert rule resources can be removed using Azure CLI command az monitor activity-log alert delete
.
https://learn.microsoft.com/en-us/azure/azure-monitor/platform/alerts-activity-log#cli
Upvotes: 0