Azure Monitor
An Azure service that is used to collect, analyze, and act on telemetry data from Azure and on-premises environments.
3,526 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
After installing the ama agent on a windows/linux vm , Can we just remove the old mma agent by uninstalling from the extension tab of the vm or do we need to login to uninstall it from inside the vm
@Vishu You can uninstall the extension from the Extension Tab of the azure virtual machine. Or you can use below PowerShell command for azure virtual machines to do the same.
Remove-AzVMExtension -Name AzureMonitorWindowsAgent -ResourceGroupName <resource-group-name> -VMName <virtual-machine-name>
Remove-AzVMExtension -Name AzureMonitorLinuxAgent -ResourceGroupName <resource-group-name> -VMName <virtual-machine-name>