RampUpRule Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Routing rules for ramp up testing. This rule allows to redirect static traffic % to a slot or to gradually change routing % based on performance.
public class RampUpRule
type RampUpRule = class
Public Class RampUpRule
- Inheritance
-
RampUpRule
Constructors
RampUpRule() |
Initializes a new instance of the RampUpRule class. |
RampUpRule(String, Nullable<Double>, Nullable<Double>, Nullable<Int32>, Nullable<Double>, Nullable<Double>, String, String) |
Initializes a new instance of the RampUpRule class. |
Properties
ActionHostName |
Gets or sets hostname of a slot to which the traffic will be redirected if decided to. E.g. myapp-stage.azurewebsites.net. |
ChangeDecisionCallbackUrl |
Gets or sets custom decision algorithm can be provided in TiPCallback site extension which URL can be specified. See TiPCallback site extension for the scaffold and contracts. https://www.siteextensions.net/packages/TiPCallback/ |
ChangeIntervalInMinutes |
Gets or sets specifies interval in minutes to reevaluate ReroutePercentage. |
ChangeStep |
Gets or sets in auto ramp up scenario this is the step to add/remove from <code>ReroutePercentage</code> until it reaches \n<code>MinReroutePercentage</code> or <code>MaxReroutePercentage</code>. Site metrics are checked every N minutes specified in <code>ChangeIntervalInMinutes</code>.\nCustom decision algorithm can be provided in TiPCallback site extension which URL can be specified in <code>ChangeDecisionCallbackUrl</code>. |
MaxReroutePercentage |
Gets or sets specifies upper boundary below which ReroutePercentage will stay. |
MinReroutePercentage |
Gets or sets specifies lower boundary above which ReroutePercentage will stay. |
Name |
Gets or sets name of the routing rule. The recommended name would be to point to the slot which will receive the traffic in the experiment. |
ReroutePercentage |
Gets or sets percentage of the traffic which will be redirected to <code>ActionHostName</code>. |