{"id":7752,"date":"2022-04-11T00:00:00","date_gmt":"2022-04-11T07:00:00","guid":{"rendered":""},"modified":"2025-06-18T00:44:28","modified_gmt":"2025-06-18T07:44:28","slug":"unlock-cloud-savings-on-the-fly-with-autoscale-on-azure","status":"publish","type":"post","link":"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/","title":{"rendered":"Unlock cloud savings on the fly with autoscale on Azure"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">Unused cloud resources can put an unnecessary drain on your computing budget, and unlike legacy on-premises architectures, there is no need to over-provision compute resources for times of heavy usage.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/docs.microsoft.com\/azure\/architecture\/best-practices\/auto-scaling\" target=\"_self\" rel=\"noopener\">Autoscaling<\/a> is one of the value levers that can help unlock cost savings for your Azure workloads by automatically scaling up and down the resources in use to better align capacity to demand. This practice can greatly reduce wasted spend for those dynamic workloads with inherently \u201cpeaky\u201d demand.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In some cases, workloads with occasionally high peak demand have extremely low average utilization, making them ill-suited for other cost optimization practices, such as <a href=\"https:\/\/azure.microsoft.com\/blog\/rightsize-to-maximize-your-cloud-investment-with-microsoft-azure\/\" target=\"_blank\" rel=\"noopener\">rightsizing<\/a> and <a href=\"https:\/\/azure.microsoft.com\/blog\/optimize-your-cloud-investment-with-azure-reservations\" target=\"_blank\" rel=\"noopener\">reservations<\/a>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">For periods when an app puts a heavier demand on cloud resources, autoscaling adds resources to handle the load and satisfy service-level agreements for performance and availability. And for those times when the load demand decreases (nights, weekends, holidays), autoscaling can remove idle resources to reduce costs. Autoscaling automatically scales between the minimum and maximum number of instances and will run, add, or remove VMs automatically based on a set of rules.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2022\/04\/aa8b11b1-8c4c-46b4-8504-d5fe8b085170.webp\" alt=\"An example showing how autoscaling automatically scales between the minimum (2 in this example) and maximum number of instances (5 in this example) and will run, add, or remove VMs automatically based on a set of rules.\" title=\"\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\">Autoscaling is near real-time cost optimization. Think of it this way: Rather than build an addition to your house with extra bedrooms that will go unused most of the year, you have an agreement with a nearby hotel. Your guests can check-in, at any time and at the last minute, and the hotel will automatically charge you for the days when they visit.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Not only does it utilize cloud elasticity by paying for capacity only when you need it, you can also reduce the need for an operator to continually monitor the performance of a system and make decisions about adding or removing resources.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-services-can-you-autoscale\">What services can you autoscale?<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Azure provides built-in autoscaling using <a href=\"https:\/\/docs.microsoft.com\/azure\/monitoring-and-diagnostics\/monitoring-overview-autoscale\">Azure Monitor autoscale<\/a> for most compute options, including:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\"><strong>Azure Virtual Machines Scale Sets<\/strong>\u2014see <a href=\"https:\/\/docs.microsoft.com\/azure\/virtual-machine-scale-sets\/virtual-machine-scale-sets-autoscale-overview\" target=\"_blank\" rel=\"noopener\">How to use automatic scaling and virtual machine scale sets<\/a>.<\/li>\n\n\n\n<li class=\"wp-block-list-item\"><strong>Service Fabric<\/strong>\u2014see <a href=\"https:\/\/docs.microsoft.com\/azure\/service-fabric\/service-fabric-cluster-resource-manager-autoscaling\" target=\"_blank\" rel=\"noopener\">Scale a Service Fabric cluster in or out using autoscale rules<\/a>.<\/li>\n\n\n\n<li class=\"wp-block-list-item\"><strong>Azure App Service<\/strong>\u2014see <a href=\"https:\/\/docs.microsoft.com\/azure\/azure-monitor\/platform\/autoscale-best-practices#manual-scaling-is-reset-by-autoscale-min-and-max\" target=\"_blank\" rel=\"noopener\">Scale instance count manually or automatically<\/a>.<\/li>\n\n\n\n<li class=\"wp-block-list-item\"><strong>Azure Cloud Services<\/strong> has built-in autoscaling at the role level. See <a href=\"https:\/\/docs.microsoft.com\/azure\/cloud-services\/cloud-services-how-to-scale-portal\" target=\"_blank\" rel=\"noopener\">How to configure autoscaling for a cloud service in the portal<\/a>.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Azure Functions<\/strong> differs from the previous compute options because you don&#8217;t need to configure any autoscale rules. The hosting plan you choose dictates how your function app is scaled:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li class=\"wp-block-list-item\">With a <strong>consumption plan<\/strong>, your functions app will scale automatically, and you will only pay for compute resources when your functions are running.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">With a <strong>premium plan<\/strong>, your app will automatically scale based on demand using pre-warmed workers that run applications with no delay after being idle.<\/li>\n\n\n\n<li class=\"wp-block-list-item\">With a <strong>dedicated plan<\/strong>, you will run your functions within an App Service plan at regular App Service plan rates.<\/li>\n<\/ul>\n\n\n\n<p class=\"wp-block-paragraph\">Azure Monitor autoscale provides a common set of autoscaling functionality for virtual machine scale sets, Azure App Service, and Azure Cloud Service. Scaling can be performed on a schedule, or based on a runtime metric, such as CPU or memory usage.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Use the built-in autoscaling features of the platform if they meet your requirements. If not, carefully consider whether you really need more complex scaling features. Examples of additional requirements may include more granularity of control, different ways to detect trigger events for scaling, scaling across subscriptions, and scaling other types of resources.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Note that application design can impact how that app handles scale as a load increases. To review design considerations for scalable applications, including choosing the right data storage and VM size, and more, check out <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/architecture\/framework\/scalability\/design-apps\" target=\"_blank\" rel=\"noopener\">Design scalable Azure applications\u2014Microsoft Azure Well-Architected Framework<\/a>.<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Also know that, in general, it is better to scale up than to scale down. Scaling down usually involves deprovisioning or downtime. So, choose smaller instances when a workload is highly variable and scale out to get the required level of performance.<br>You can set up autoscale in the <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/azure-monitor\/autoscale\/autoscale-get-started\" target=\"_blank\" rel=\"noopener\">Azure portal<\/a>, <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/azure-monitor\/powershell-samples#create-and-manage-autoscale-settings\" target=\"_blank\" rel=\"noopener\">PowerShell<\/a>, <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/azure-monitor\/cli-samples#autoscale\" target=\"_blank\" rel=\"noopener\">Azure CLI<\/a>, or <a href=\"https:\/\/docs.microsoft.com\/en-us\/rest\/api\/monitor\/autoscalesettings\" target=\"_blank\" rel=\"noopener\">Azure Monitor REST API<\/a>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"get-started-with-autoscaling\">Get started with autoscaling<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">With <a href=\"https:\/\/docs.microsoft.com\/azure\/architecture\/best-practices\/auto-scaling\" target=\"_self\" rel=\"noopener\">autoscaling<\/a>, you can dynamically scale your apps to meet changing demand or anticipate loads with different schedules and set rules that trigger scaling actions. Regardless of how you set it up, the goal is to maximize the performance of your application and save money by not wasting server resources.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Autoscaling is one of the value levers that can help unlock cost savings for your Azure workloads by automatically scaling up and down the resources in use to better align capacity to demand. Not only does it utilize cloud elasticity by paying for capacity only when you need it, you can also reduce the need for an operator to continually monitor the performance of a system and make decisions about adding or removing resources.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"ms_queue_id":[],"ep_exclude_from_search":false,"_classifai_error":"","_classifai_text_to_speech_error":"","_alt_title":"","footnotes":"","msx_community_cta_settings":[]},"categories":[1467,1456,1482],"tags":[1508,1509,2658],"audience":[3054,3055,3053,3056],"content-type":[],"product":[2902,1533,1618],"tech-community":[],"topic":[],"coauthors":[1776],"class_list":["post-7752","post","type-post","status-publish","format-standard","hentry","category-compute","category-devops","category-management-and-governance","tag-azure-well-architected-framework","tag-customer-enablement","tag-finops","audience-business-decision-makers","audience-developers","audience-it-decision-makers","audience-it-implementors","product-app-service","product-azure-monitor","product-cloud-services","review-flag-vm-1680286585-143"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Unlock cloud savings on the fly with autoscale on Azure | Microsoft Azure Blog<\/title>\n<meta name=\"description\" content=\"Autoscaling is one of the value levers that can help unlock cost savings for your Azure workloads by automatically scaling up and down the resources in use to better align capacity to demand. Not only does it utilize cloud elasticity by paying for capacity only when you need it, you can also reduce the need for an operator to continually monitor the performance of a system and make decisions about adding or removing resources.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Unlock cloud savings on the fly with autoscale on Azure | Microsoft Azure Blog\" \/>\n<meta property=\"og:description\" content=\"Autoscaling is one of the value levers that can help unlock cost savings for your Azure workloads by automatically scaling up and down the resources in use to better align capacity to demand. Not only does it utilize cloud elasticity by paying for capacity only when you need it, you can also reduce the need for an operator to continually monitor the performance of a system and make decisions about adding or removing resources.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/\" \/>\n<meta property=\"og:site_name\" content=\"Microsoft Azure Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/microsoftazure\" \/>\n<meta property=\"article:published_time\" content=\"2022-04-11T07:00:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-06-18T07:44:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2022\/04\/aa8b11b1-8c4c-46b4-8504-d5fe8b085170.webp\" \/>\n<meta name=\"author\" content=\"Diana Gao\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@azure\" \/>\n<meta name=\"twitter:site\" content=\"@azure\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Diana Gao\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/\"},\"author\":[{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/diana-gao\/\",\"@type\":\"Person\",\"@name\":\"Diana Gao\"}],\"headline\":\"Unlock cloud savings on the fly with autoscale on Azure\",\"datePublished\":\"2022-04-11T07:00:00+00:00\",\"dateModified\":\"2025-06-18T07:44:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/\"},\"wordCount\":717,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2022\/04\/aa8b11b1-8c4c-46b4-8504-d5fe8b085170.webp\",\"keywords\":[\"Azure Well-Architected Framework\",\"Customer Enablement\",\"FinOps\"],\"articleSection\":[\"Compute\",\"DevOps\",\"Management and governance\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/\",\"name\":\"Unlock cloud savings on the fly with autoscale on Azure | Microsoft Azure Blog\",\"isPartOf\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2022\/04\/aa8b11b1-8c4c-46b4-8504-d5fe8b085170.webp\",\"datePublished\":\"2022-04-11T07:00:00+00:00\",\"dateModified\":\"2025-06-18T07:44:28+00:00\",\"description\":\"Autoscaling is one of the value levers that can help unlock cost savings for your Azure workloads by automatically scaling up and down the resources in use to better align capacity to demand. Not only does it utilize cloud elasticity by paying for capacity only when you need it, you can also reduce the need for an operator to continually monitor the performance of a system and make decisions about adding or removing resources.\",\"breadcrumb\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/#primaryimage\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2022\/04\/aa8b11b1-8c4c-46b4-8504-d5fe8b085170.webp\",\"contentUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2022\/04\/aa8b11b1-8c4c-46b4-8504-d5fe8b085170.webp\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog home\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Compute\",\"item\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/compute\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Unlock cloud savings on the fly with autoscale on Azure\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#website\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\",\"name\":\"Microsoft Azure Blog\",\"description\":\"Get the latest Azure news, updates, and announcements from the Azure blog. From product updates to hot topics, hear from the Azure experts.\",\"publisher\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization\",\"name\":\"Microsoft Azure Blog\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp\",\"contentUrl\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp\",\"width\":512,\"height\":512,\"caption\":\"Microsoft Azure Blog\"},\"image\":{\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/microsoftazure\",\"https:\/\/x.com\/azure\",\"https:\/\/www.instagram.com\/microsoftdeveloper\/\",\"https:\/\/www.linkedin.com\/company\/16188386\",\"https:\/\/www.youtube.com\/user\/windowsazure\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/person\/c702e5edd662b328b49b7e1180cab117\",\"name\":\"shakir\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g7664e653ea371ce16eaf75e9fa8952c4\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g\",\"caption\":\"shakir\"},\"sameAs\":[\"https:\/\/azure.microsoft.com\"],\"url\":\"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/shakir\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Unlock cloud savings on the fly with autoscale on Azure | Microsoft Azure Blog","description":"Autoscaling is one of the value levers that can help unlock cost savings for your Azure workloads by automatically scaling up and down the resources in use to better align capacity to demand. Not only does it utilize cloud elasticity by paying for capacity only when you need it, you can also reduce the need for an operator to continually monitor the performance of a system and make decisions about adding or removing resources.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/","og_locale":"en_US","og_type":"article","og_title":"Unlock cloud savings on the fly with autoscale on Azure | Microsoft Azure Blog","og_description":"Autoscaling is one of the value levers that can help unlock cost savings for your Azure workloads by automatically scaling up and down the resources in use to better align capacity to demand. Not only does it utilize cloud elasticity by paying for capacity only when you need it, you can also reduce the need for an operator to continually monitor the performance of a system and make decisions about adding or removing resources.","og_url":"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/","og_site_name":"Microsoft Azure Blog","article_publisher":"https:\/\/www.facebook.com\/microsoftazure","article_published_time":"2022-04-11T07:00:00+00:00","article_modified_time":"2025-06-18T07:44:28+00:00","og_image":[{"url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2022\/04\/aa8b11b1-8c4c-46b4-8504-d5fe8b085170.webp","type":"","width":"","height":""}],"author":"Diana Gao","twitter_card":"summary_large_image","twitter_creator":"@azure","twitter_site":"@azure","twitter_misc":{"Written by":"Diana Gao","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/#article","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/"},"author":[{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/diana-gao\/","@type":"Person","@name":"Diana Gao"}],"headline":"Unlock cloud savings on the fly with autoscale on Azure","datePublished":"2022-04-11T07:00:00+00:00","dateModified":"2025-06-18T07:44:28+00:00","mainEntityOfPage":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/"},"wordCount":717,"commentCount":0,"publisher":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/#primaryimage"},"thumbnailUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2022\/04\/aa8b11b1-8c4c-46b4-8504-d5fe8b085170.webp","keywords":["Azure Well-Architected Framework","Customer Enablement","FinOps"],"articleSection":["Compute","DevOps","Management and governance"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/","name":"Unlock cloud savings on the fly with autoscale on Azure | Microsoft Azure Blog","isPartOf":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/#primaryimage"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/#primaryimage"},"thumbnailUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2022\/04\/aa8b11b1-8c4c-46b4-8504-d5fe8b085170.webp","datePublished":"2022-04-11T07:00:00+00:00","dateModified":"2025-06-18T07:44:28+00:00","description":"Autoscaling is one of the value levers that can help unlock cost savings for your Azure workloads by automatically scaling up and down the resources in use to better align capacity to demand. Not only does it utilize cloud elasticity by paying for capacity only when you need it, you can also reduce the need for an operator to continually monitor the performance of a system and make decisions about adding or removing resources.","breadcrumb":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/#primaryimage","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2022\/04\/aa8b11b1-8c4c-46b4-8504-d5fe8b085170.webp","contentUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2022\/04\/aa8b11b1-8c4c-46b4-8504-d5fe8b085170.webp"},{"@type":"BreadcrumbList","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/unlock-cloud-savings-on-the-fly-with-autoscale-on-azure\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog home","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/"},{"@type":"ListItem","position":2,"name":"Compute","item":"https:\/\/azure.microsoft.com\/en-us\/blog\/category\/compute\/"},{"@type":"ListItem","position":3,"name":"Unlock cloud savings on the fly with autoscale on Azure"}]},{"@type":"WebSite","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#website","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/","name":"Microsoft Azure Blog","description":"Get the latest Azure news, updates, and announcements from the Azure blog. From product updates to hot topics, hear from the Azure experts.","publisher":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/azure.microsoft.com\/en-us\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#organization","name":"Microsoft Azure Blog","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp","contentUrl":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-content\/uploads\/2024\/06\/microsoft_logo.webp","width":512,"height":512,"caption":"Microsoft Azure Blog"},"image":{"@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/microsoftazure","https:\/\/x.com\/azure","https:\/\/www.instagram.com\/microsoftdeveloper\/","https:\/\/www.linkedin.com\/company\/16188386","https:\/\/www.youtube.com\/user\/windowsazure"]},{"@type":"Person","@id":"https:\/\/azure.microsoft.com\/en-us\/blog\/#\/schema\/person\/c702e5edd662b328b49b7e1180cab117","name":"shakir","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g7664e653ea371ce16eaf75e9fa8952c4","url":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9342c7c05bb16548741bc5cd3a3e3b7ee0c8e746844ad2cc582db5beb5514c6f?s=96&d=mm&r=g","caption":"shakir"},"sameAs":["https:\/\/azure.microsoft.com"],"url":"https:\/\/azure.microsoft.com\/en-us\/blog\/author\/shakir\/"}]}},"msxcm_display_generated_audio":false,"msxcm_animated_featured_image":null,"distributor_meta":false,"distributor_terms":false,"distributor_media":false,"distributor_original_site_name":"Microsoft Azure Blog","distributor_original_site_url":"https:\/\/azure.microsoft.com\/en-us\/blog","push-errors":false,"_links":{"self":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/7752","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/comments?post=7752"}],"version-history":[{"count":1,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/7752\/revisions"}],"predecessor-version":[{"id":42197,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/posts\/7752\/revisions\/42197"}],"wp:attachment":[{"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/media?parent=7752"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/categories?post=7752"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tags?post=7752"},{"taxonomy":"audience","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/audience?post=7752"},{"taxonomy":"content-type","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/content-type?post=7752"},{"taxonomy":"product","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/product?post=7752"},{"taxonomy":"tech-community","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/tech-community?post=7752"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/topic?post=7752"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/azure.microsoft.com\/en-us\/blog\/wp-json\/wp\/v2\/coauthors?post=7752"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}