From db0fd55ec16f12eeb95a3d449fb6da418ccbe79f Mon Sep 17 00:00:00 2001 From: rickbrouwer Date: Tue, 5 Nov 2024 21:39:11 +0100 Subject: [PATCH] Support multiple queues at the IBMMQ scaler (#1473) * Support multiple queues at the IBMMQ scaler Signed-off-by: rickbrouwer * support multi name Signed-off-by: Rick Brouwer * Add operation Signed-off-by: Rick Brouwer --------- Signed-off-by: rickbrouwer Signed-off-by: Rick Brouwer --- content/docs/2.16/scalers/ibm-mq.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/content/docs/2.16/scalers/ibm-mq.md b/content/docs/2.16/scalers/ibm-mq.md index 210b72ba7..32d0b0065 100644 --- a/content/docs/2.16/scalers/ibm-mq.md +++ b/content/docs/2.16/scalers/ibm-mq.md @@ -28,7 +28,8 @@ triggers: **Parameter list:** - `host` - IBM MQ Queue Manager Admin REST Endpoint. Example URI endpoint structure on IBM cloud `https://example.mq.appdomain.cloud/ibmmq/rest/v2/admin/action/qmgr/QM/mqsc`. -- `queueName` - Name of the Queue defined from which messages will be consumed. +- `queueName` (or `queueNames`) - Name of the queue. It supports multiple queues separated by a comma character ( `,` ). +- `operation` - Operation that will be applied to compute the number of messages. Either `max` (default), `sum`, or `avg`. (Optional) - `tlsDisabled` - Can be set to 'true' to disable TLS. (DEPRECATED: This parameter is deprecated as of KEDA v2.16 in favor of unsafeSsl and will be removed in version v2.18, Values: `true`, `false` , Default: `false`, Optional) - `queueDepth` - Queue depth Target for HPA. (Default: `20`, Optional) - `activationQueueDepth` - Target value for activating the scaler. Learn more about activation [here](./../concepts/scaling-deployments.md#activating-and-scaling-thresholds). (Default: `0`, Optional)