Skip to content

Commit d09facb

Browse files
Merge pull request #260002 from Naveenommi-MSFT/patch-96
(AzureCXP) fixes MicrosoftDocs/azure-docs#117536
2 parents 6ee0b42 + 5f96ba3 commit d09facb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

articles/machine-learning/how-to-autoscale-endpoints.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -256,15 +256,15 @@ rule_scale_in = ScaleRule(
256256
metric_resource_uri = deployment.id,
257257
time_grain = datetime.timedelta(minutes = 1),
258258
statistic = "Average",
259-
operator = "GreaterThan",
259+
operator = "less Than",
260260
time_aggregation = "Last",
261261
time_window = datetime.timedelta(minutes = 5),
262-
threshold = 70
262+
threshold = 30
263263
),
264264
scale_action = ScaleAction(
265265
direction = "Increase",
266266
type = "ChangeCount",
267-
value = 2,
267+
value = 1,
268268
cooldown = datetime.timedelta(hours = 1)
269269
)
270270
)
@@ -495,4 +495,4 @@ To learn more about autoscale with Azure Monitor, see the following articles:
495495
- [Understand autoscale settings](../azure-monitor/autoscale/autoscale-understanding-settings.md)
496496
- [Overview of common autoscale patterns](../azure-monitor/autoscale/autoscale-common-scale-patterns.md)
497497
- [Best practices for autoscale](../azure-monitor/autoscale/autoscale-best-practices.md)
498-
- [Troubleshooting Azure autoscale](../azure-monitor/autoscale/autoscale-troubleshoot.md)
498+
- [Troubleshooting Azure autoscale](../azure-monitor/autoscale/autoscale-troubleshoot.md)

0 commit comments

Comments
 (0)