The metric server has a simple REST API endpoint that returns count in the response body.
In my scaled object yaml, say I have given below:
minReplicaCount: 1
maxReplicaCount: 10
pollingInterval: 90
cooldownPeriod: 120
triggers:
- type: http
metadata:
valuePath: $.count
threshold: 1000
Will KEDA scale directly to 10 replicas if count threshold is met? I am worried KEDA directly scaling between 1 and 10 and 1 and 10 everytime the trigger returns count>=1000. I rather wanted replica count to be in multiples of 1000 till max 10.