-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[8.11] [DOCS] Elasticsearch query rule group by multiple terms (#170675…
…) (#170699) # Backport This will backport the following commits from `main` to `8.11`: - [[DOCS] Elasticsearch query rule group by multiple terms (#170675)](#170675) <!--- Backport version: 8.9.8 --> ### Questions ? Please refer to the [Backport tool documentation](https://github.com/sqren/backport) <!--BACKPORT [{"author":{"name":"Lisa Cawley","email":"[email protected]"},"sourceCommit":{"committedDate":"2023-11-06T20:56:57Z","message":"[DOCS] Elasticsearch query rule group by multiple terms (#170675)","sha":"6ac15df6611a1689121c336a0cdba965825351a8","branchLabelMapping":{"^v8.12.0$":"main","^v(\\d+).(\\d+).\\d+$":"$1.$2"}},"sourcePullRequest":{"labels":["release_note:skip","Team:ResponseOps","docs","Feature:Alerting/RuleTypes","backport:prev-minor","v8.11.0","v8.12.0"],"number":170675,"url":"https://github.com/elastic/kibana/pull/170675","mergeCommit":{"message":"[DOCS] Elasticsearch query rule group by multiple terms (#170675)","sha":"6ac15df6611a1689121c336a0cdba965825351a8"}},"sourceBranch":"main","suggestedTargetBranches":["8.11"],"targetPullRequestStates":[{"branch":"8.11","label":"v8.11.0","labelRegex":"^v(\\d+).(\\d+).\\d+$","isSourceBranch":false,"state":"NOT_CREATED"},{"branch":"main","label":"v8.12.0","labelRegex":"^v8.12.0$","isSourceBranch":true,"state":"MERGED","url":"https://github.com/elastic/kibana/pull/170675","number":170675,"mergeCommit":{"message":"[DOCS] Elasticsearch query rule group by multiple terms (#170675)","sha":"6ac15df6611a1689121c336a0cdba965825351a8"}}]}] BACKPORT-->
- Loading branch information
Showing
5 changed files
with
32 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
9 changes: 7 additions & 2 deletions
9
x-pack/plugins/alerting/docs/openapi/components/schemas/termfield.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
description: > | ||
The names of up to four fields that are used for grouping the aggregation. | ||
This property is required when `groupBy` is `top`. | ||
The name of the field that is used for grouping the aggregation. | ||
type: string | ||
oneOf: | ||
- type: string | ||
- type: array | ||
items: | ||
type: string | ||
maxItems: 4 |