Skip to content

Commit 2803234

Browse files
authored
add timeout parameter for HTTP client in Azure Log Analytics and Prometheus scalers (#1548)
Signed-off-by: Zbynek Roubalik <[email protected]>
1 parent faea991 commit 2803234

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

content/docs/2.17/operate/cluster.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Some scalers issue HTTP requests to external servers (i.e. cloud services). Each
7070

7171
You can override this default by setting the `KEDA_HTTP_DEFAULT_TIMEOUT` environment variable on the KEDA operator deployment to your desired timeout in milliseconds.
7272

73-
> ⚠️ All applicable scalers will use this timeout and setting this on a per-scaler is currently not supported.
73+
> ⚠️ All applicable scalers will use this timeout, although some scalers allow you to override this global setting via the `timeout` parameter in the trigger metadata.
7474
7575
## HTTP Connection: Disable Keep Alive
7676

content/docs/2.17/scalers/azure-log-analytics.md

+3
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ triggers:
5757
activeDirectoryEndpoint: https://login.airgap.example/
5858
# Optional (Default: false)
5959
unsafeSsl: "false"
60+
# Optional. Custom timeout for the HTTP client used in this scaler
61+
timeout: 1000
6062
```
6163
6264
**Parameter list:**
@@ -72,6 +74,7 @@ triggers:
7274
- `logAnalyticsResourceURL` - Log Analytics REST API URL of the cloud environment. (Required when `cloud` is set to `Private`, e.g. `https://api.loganalytics.azure.cn/` for `AzureChinaCloud`).
7375
- `activeDirectoryEndpoint` - Active Directory endpoint of the cloud environment. (Required when `cloud` is set to `Private`, e.g. `https://login.chinacloudapi.cn/` for `AzureChinaCloud`).
7476
- `unsafeSsl` - Determines whether or not KEDA will verify the server certificate's chain and host name. (Default: `false`, Optional, This value can be a bool)
77+
- `timeout` - Timeout in milliseconds **for this specific trigger**. This value will override the value defined in `KEDA_HTTP_DEFAULT_TIMEOUT`. (Optional)
7578

7679

7780
The authentication parameters could be provided using environmental variables, instead of setting them directly in metadata. Here is a list of parameters you can use to retrieve values from environment variables:

content/docs/2.17/scalers/prometheus.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ triggers:
2626
ignoreNullValues: false # Default is `true`, which means ignoring the empty value list from Prometheus. Set to `false` the scaler will return error when Prometheus target is lost
2727
queryParameters: key-1=value-1,key-2=value-2
2828
unsafeSsl: "false" # Default is `false`, Used for skipping certificate check when having self-signed certs for Prometheus endpoint
29-
29+
timeout: 1000 # Optional. Custom timeout for the HTTP client used in this scaler
3030
```
3131
3232
**Parameter list:**
@@ -40,6 +40,7 @@ triggers:
4040
- `ignoreNullValues` - Value to reporting error when Prometheus target is lost (Values: `true`,`false`, Default: `true`, Optional)
4141
- `queryParameters` - A comma-separated list of query Parameters to include while querying the Prometheus endpoint. (Optional)
4242
- `unsafeSsl` - Used for skipping certificate check e.g: using self-signed certs (Values: `true`,`false`, Default: `false`, Optional)
43+
- `timeout` - Timeout in milliseconds **for this specific trigger**. This value will override the value defined in `KEDA_HTTP_DEFAULT_TIMEOUT`. (Optional)
4344

4445
### Authentication Parameters
4546

content/docs/2.17/scalers/rabbitmq-queue.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ triggers:
2828
usernameFromEnv: RABBITMQ_USERNAME # Optional. You can use this instead of TriggerAuthentication
2929
passwordFromEnv: RABBITMQ_PASSWORD # Optional. You can use this instead of TriggerAuthentication
3030
unsafeSsl: true
31+
timeout: 1000 # Optional. Custom timeout for the HTTP client used in this scaler
3132
```
3233
3334
**Parameter list:**
@@ -43,7 +44,7 @@ triggers:
4344
- `useRegex` - This parameter allows to use regex (in `queueName` parameter) to select queue instead of full name. (Values: `true`, `false`, Default: `false`, Optional, Only applies to hosts that use the `http` protocol)
4445
- `pageSize` - This parameter allows setting page size. (Default: `100`, Optional, Only applies when `useRegex` is `true`)
4546
- `operation` - Operation that will be applied to compute the number of messages in case of `useRegex` enabled. Either `sum` (default),`max`, or `avg`. (Optional)
46-
- `timeout` - Timeout **for this specific trigger**. This value will override the value defined in `KEDA_HTTP_DEFAULT_TIMEOUT`. (Optional, Only applies to hosts that use the `http` protocol)
47+
- `timeout` - Timeout in milliseconds **for this specific trigger**. This value will override the value defined in `KEDA_HTTP_DEFAULT_TIMEOUT`. (Optional, Only applies to hosts that use the `http` protocol)
4748
- `excludeUnacknowledged` - Set to `true` to specify that the `QueueLength` value should exclude unacknowledged messages (Ready messages only). (Values: `true`, `false`, Default: `false`, Optional, Only applies to hosts that use the `http` protocol)
4849
- `unsafeSsl` - Whether to allow unsafe SSL (Values: `true`, `false`, Default: `false` )
4950

0 commit comments

Comments
 (0)