RampUpRuleResponse

data class RampUpRuleResponse(val actionHostName: String? = null, val changeDecisionCallbackUrl: String? = null, val changeIntervalInMinutes: Int? = null, val changeStep: Double? = null, val maxReroutePercentage: Double? = null, val minReroutePercentage: Double? = null, val name: String? = null, val reroutePercentage: Double? = null)

Routing rules for ramp up testing. This rule allows to redirect static traffic % to a slot or to gradually change routing % based on performance.

Constructors

Link copied to clipboard
constructor(actionHostName: String? = null, changeDecisionCallbackUrl: String? = null, changeIntervalInMinutes: Int? = null, changeStep: Double? = null, maxReroutePercentage: Double? = null, minReroutePercentage: Double? = null, name: String? = null, reroutePercentage: Double? = null)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val actionHostName: String? = null

Hostname of a slot to which the traffic will be redirected if decided to. E.g. myapp-stage.azurewebsites.net.

Link copied to clipboard

Custom decision algorithm can be provided in TiPCallback site extension which URL can be specified.

Link copied to clipboard

Specifies interval in minutes to reevaluate ReroutePercentage.

Link copied to clipboard
val changeStep: Double? = null

In auto ramp up scenario this is the step to add/remove from ReroutePercentage until it reaches \nMinReroutePercentage or MaxReroutePercentage. Site metrics are checked every N minutes specified in ChangeIntervalInMinutes.\nCustom decision algorithm can be provided in TiPCallback site extension which URL can be specified in ChangeDecisionCallbackUrl.

Link copied to clipboard

Specifies upper boundary below which ReroutePercentage will stay.

Link copied to clipboard

Specifies lower boundary above which ReroutePercentage will stay.

Link copied to clipboard
val name: String? = null

Name of the routing rule. The recommended name would be to point to the slot which will receive the traffic in the experiment.

Link copied to clipboard

Percentage of the traffic which will be redirected to ActionHostName.