Advertisement
Guest User

Untitled

a guest
May 31st, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. policyTriggers - List<Trigger> - Required - Trigger setting for this policy, each trigger is defined as below
  2. metricType - String - Required - enumerated type for this trigger, for Java application, they are: JVMHeapUsage, Memory, Throughput, ResponseTime. For other app, only Memory is available.
  3. statWindow - int - Optional - interval to calculate statistics in seconds
  4. breachDuration - int - Optional - breach duration in seconds is divided by the periodicity of the metric to determine the number of data points that will result in a scaling event
  5. lowerThreshold - int - Optional - lower threshold that will trigger a scaling event, usually scaling-in, for JVMHeapUsage and Memory it's percentage, for Throughput, it's request per second and for ResponseTime, it's milliseconds
  6. upperThreshold - int - Optional - upper threshold that will trigger a scaling event, usually scaling-out. for JVMHeapUsage and Memory it's percentage, for Throughput, it's request per second and for ResponseTime, it's milliseconds
  7. instanceStepCountDown - int - Optional - number of instances to reduce per scaling-in action
  8. instanceStepCountUp - int - Optional - number of instances to increase per scaling-out action
  9. stepDownCoolDownSecs - int - Optional - cool down period that prevent further scaling in action
  10. stepUpCoolDownSecs - int - Optional - cool down period that prevent further scaling out action
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement