Skip to content

Commit c9d8d76

Browse files
committed
fix: Correct Elasticsearch index field
Signed-off-by: Rick Brouwer <rickbrouwer@gmail.com>
1 parent 4c95c44 commit c9d8d76

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/docs/2.16/scalers/elasticsearch.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ triggers:
3333
- `addresses` - Comma separated list of hosts and ports of the Elasticsearch cluster client nodes.
3434
- `username` - Username to authenticate with to Elasticsearch cluster.
3535
- `passwordFromEnv` - Environment variable to read the authentication password from to authenticate with the Elasticsearch cluster.
36-
- `index` - Comma separated list of indexes to run the search template query on.
36+
- `index` - Index to run the search template query on. It supports multiple indexes separated by a semicolon character ( `;` ).
3737
- `searchTemplateName` - The search template name to run.
3838
- `targetValue` - Target value to scale on. When the metric provided by the API is equal or higher to this value, KEDA will start scaling out. When the metric is 0 or less, KEDA will scale down to 0. (This value can be a float)
3939
- `activationTargetValue` - 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)
40-
- `parameters` - Parameters that will be used by the search template. It supports multiples params separated by a semicolon character ( `;` ).
40+
- `parameters` - Parameters that will be used by the search template. It supports multiple params separated by a semicolon character ( `;` ).
4141
- `valueLocation` - [GJSON path notation](https://github.com/tidwall/gjson#path-syntax) to refer to the field in the payload containing the metric value.
4242
- `unsafeSsl` - Skip certificate validation when connecting over HTTPS. (Values: `true`, `false`, Default: `false`, Optional)
4343

0 commit comments

Comments
 (0)