agamil
agamil

Reputation: 361

Azure monitor external systems

I want to monitor external systems using azure monitor. Is it possible?

For example, I have on-prem Linux server with mysql DB, can I monitor the server and its DB like availability, errors,...?

Upvotes: 0

Views: 610

Answers (1)

Madhuraj Vadde
Madhuraj Vadde

Reputation: 1227

Firstly, you can use “Azure Monitor agent” that is explained here. Would recommend you to use Azure Monitor Log Analytics agent as instructed here. The reason for it is “Azure Monitor Agent” as informed in this section, currently only Azure VMs are supported and on-premises VMs, virtual machine scale sets, Arc for Servers, Azure Kubernetes Service, and other compute resource types are currently not supported.

Next, If you have “Azure Monitor Log Analytics agent on Windows machine” then you may have to check below things:

  1. As explained here, Change Tracking and Inventory requires linking a Log Analytics workspace to your Automation account so I recommend you to double check it. For a definitive list of supported regions, see Azure Workspace mappings. The region mappings don't affect the ability to manage VMs in a separate region from your Automation account.
  2. Follow this troubleshooting steps in your case (i.e., if you don't see any Change Tracking and Inventory results for Windows machines that have been enabled for the feature).
  3. As mentioned here, note that currently Change Tracking and Inventory currently is experiencing the following issue w.r.t Windows environment: Hotfix updates aren't collected on Windows Server 2016 Core RS3 machines.

Upvotes: 1

Related Questions