From b50aef64a9f29ad345fa142ca205916057f6ceb9 Mon Sep 17 00:00:00 2001 From: Jorge Turrado Ferrero Date: Wed, 3 Aug 2022 12:08:40 +0200 Subject: [PATCH] Update content/docs/2.7/scalers/rabbitmq-queue.md --- content/docs/2.7/scalers/rabbitmq-queue.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/2.7/scalers/rabbitmq-queue.md b/content/docs/2.7/scalers/rabbitmq-queue.md index 5086b0ac7..0042a6237 100644 --- a/content/docs/2.7/scalers/rabbitmq-queue.md +++ b/content/docs/2.7/scalers/rabbitmq-queue.md @@ -33,7 +33,7 @@ triggers: - `queueName` - Name of the queue to read message from. - `mode` - QueueLength to trigger on number of messages in the queue. MessageRate to trigger on the publish rate into the queue. (Values: `QueueLength`, `MessageRate`) - `value` - Message backlog or Publish/sec. rate to trigger on. -- `activationValue` - Min value to activate the scaler. (Default: `0`, Optional) +- `activationValue` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds).(Default: `0`, Optional, This value can be a float) - `protocol` - Protocol to be used for communication. (Values: `auto`, `http`, `amqp`, Default: `auto`, Optional) - `vhostName` - Vhost to use for the connection, overrides any vhost set in the connection string from `host`/`hostFromEnv`. (Optional) - `queueLength` - DEPRECATED! Use `mode: QueueLength` and `value: ##` instead. Target value for queue length passed to the scaler. Example: if one pod can handle 10 messages, set the queue length target to 10. If the actual number of messages in the queue is 30, the scaler scales to 3 pods. Default is 20 unless `publishRate` is specified, in which case `queueLength` is disabled for this trigger.