Bibin
Bibin

Reputation: 562

Azure VM auto scale based on alert

The scenario is as follows:

  1. To monitor the company's Network/Machines via Azure
  2. If the company resource goes beyond a threshold limit then trigger alerts. Example, network bandwidth consumption, machine CPU/Memory usage, etc.
  3. When such alerts occur then spin up new virtual machines or VM scale sets in Azure to handle the load.

The purpose is if the machines in on-prem goes above threshold limit then automatically provision VMs in Azure, as there are only few on-prem machines.

Please guide how to implement these use cases?

Upvotes: 0

Views: 320

Answers (1)

Alan Kinane
Alan Kinane

Reputation: 151

your question is a little confusing. You mention machines on premises and using Azure to monitor them. You can monitor on premises VMs using Azure but then you mention provisioning new Azure VMs via Scale Sets.

I'm not 100% where your workload is but assuming it is in Azure then if you are using VM Scale Sets it's very easy to scale in and out based on resource utilisation.

This can be configured as described here: https://learn.microsoft.com/en-us/azure/virtual-machine-scale-sets/virtual-machine-scale-sets-autoscale-portal

Upvotes: 0

Related Questions