共用方式為


New-AzAutoscaleRule

建立 [自動調整規則]。

語法

New-AzAutoscaleRule
   -MetricName <String>
   -MetricResourceId <String>
   -Operator <ComparisonOperationType>
   -MetricStatistic <MetricStatisticType>
   -Threshold <Double>
   [-TimeAggregationOperator <TimeAggregationType>]
   -TimeGrain <TimeSpan>
   [-TimeWindow <TimeSpan>]
   -ScaleActionCooldown <TimeSpan>
   -ScaleActionDirection <ScaleDirection>
   [-ScaleActionScaleType <ScaleType>]
   -ScaleActionValue <String>
   [-DefaultProfile <IAzureContextContainer>]
   [<CommonParameters>]

Description

New-AzAutoscaleRule Cmdlet 會建立自動調整規則。

範例

範例 1:建立規則

PS C:\>$Rule = New-AzAutoscaleRule -MetricName "Requests" -MetricResourceId "/subscriptions/b93fb07a-6f93-30be-bf3e-4f0deca15f4f/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/mywebsite" -Operator GreaterThan -MetricStatistic Average -Threshold 10 -TimeGrain 00:01:00 -ScaleActionCooldown 00:05:00 -ScaleActionDirection Increase -ScaleActionScaleType ChangeCount -ScaleActionValue "1"
MetricTrigger                                               ScaleAction
-------------                                               -----------
Microsoft.Azure.Management.Insights.Models.MetricTrigger    Microsoft.Azure.Management.Insights.Models.ScaleAction

此命令會建立規則。

範例 2:建立兩個規則

PS C:\>$Rule1 = New-AzAutoscaleRule -MetricName "Requests" -MetricResourceId "/subscriptions/b93fb07a-6f93-30be-bf3e-4f0deca15f4f/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/mywebsite" -Operator GreaterThan -MetricStatistic Average -Threshold 10 -TimeGrain 00:01:00 -ScaleActionCooldown 00:05:00 -ScaleActionDirection Increase -ScaleActionScaleType ChangeCount -ScaleActionValue "1"

PS C:\> $Rule2 = New-AzAutoscaleRule -MetricName "Requests" -MetricResourceId "/subscriptions/b93fb07a-6f93-30be-bf3e-4f0deca15f4f/resourceGroups/Default-Web-EastUS/providers/microsoft.web/sites/mywebsite" -Operator GreaterThan -MetricStatistic Average -Threshold 10 -TimeGrain 00:01:00 -ScaleActionCooldown 00:10:00 -ScaleActionDirection Increase -ScaleActionScaleType ChangeCount -ScaleActionValue "2"
MetricTrigger                                               ScaleAction
-------------                                               -----------
Microsoft.Azure.Management.Insights.Models.MetricTrigger    Microsoft.Azure.Management.Insights.Models.ScaleAction
Microsoft.Azure.Management.Insights.Models.MetricTrigger    Microsoft.Azure.Management.Insights.Models.ScaleAction

第一個命令會建立 Requests 計量的規則,然後將它儲存在 $Rule 1 變數中。 第二個命令會為 Requests 計量建立第二個規則,然後將它儲存在 $Rule 2 變數中。

參數

-DefaultProfile

用於與 azure 通訊的認證、帳戶、租用戶和訂用帳戶

類型:IAzureContextContainer
別名:AzContext, AzureRmContext, AzureCredential
Position:Named
預設值:None
必要:False
接受管線輸入:False
接受萬用字元:False

-MetricName

指定計量的名稱。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-MetricResourceId

指定計量資源識別碼。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-MetricStatistic

指定計量統計數據。 此參數可接受的值為:

  • 平均
  • Min
  • Max
  • Sum
類型:MetricStatisticType
接受的值:Average, Min, Max, Sum
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-Operator

指定運算子。 此參數可接受的值為:

  • 等於
  • NotEquals
  • GreaterThan
  • GreaterThanOrEqual
  • LessThan
  • LessThanOrEqual
類型:ComparisonOperationType
接受的值:Equals, NotEquals, GreaterThan, GreaterThanOrEqual, LessThan, LessThanOrEqual
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-ScaleActionCooldown

指定自動調整動作降溫時間。

類型:TimeSpan
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-ScaleActionDirection

指定縮放動作方向。 此參數可接受的值為:

  • 增加
  • 減少
類型:ScaleDirection
接受的值:None, Increase, Decrease
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-ScaleActionScaleType

指定縮放類型。 此參數可接受的值為:

  • ChangeSize
  • ChangeCount
  • PercentChangeCount
  • ExactCount
類型:ScaleType
接受的值:ChangeCount, PercentChangeCount, ExactCount
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-ScaleActionValue

指定動作值。

類型:String
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-Threshold

指定計量值的臨界值。

類型:Double
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-TimeAggregationOperator

指定時間匯總運算子。 此參數可接受的值為:

  • 平均
  • 最小值
  • 最大值
  • 最後一個
  • 總計、計數
類型:TimeAggregationType
接受的值:Average, Minimum, Maximum, Total, Count
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

-TimeGrain

指定時間粒紋。

類型:TimeSpan
Position:Named
預設值:None
必要:True
接受管線輸入:True
接受萬用字元:False

-TimeWindow

指定時間範圍。

類型:TimeSpan
Position:Named
預設值:None
必要:False
接受管線輸入:True
接受萬用字元:False

輸入

String

ComparisonOperationType

MetricStatisticType

Double

TimeAggregationType

TimeSpan

ScaleDirection

ScaleType

輸出

ScaleRule