-
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.
Merge branch 'main' into 198965-apm-migrate-data_view-tests
# Conflicts: # x-pack/test/api_integration/deployment_agnostic/apis/observability/apm/index.ts
- Loading branch information
Showing
35 changed files
with
905 additions
and
372 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the "Elastic License | ||
* 2.0", the "GNU Affero General Public License v3.0 only", and the "Server Side | ||
* Public License v 1"; you may not use this file except in compliance with, at | ||
* your election, the "Elastic License 2.0", the "GNU Affero General Public | ||
* License v3.0 only", or the "Server Side Public License, v 1". | ||
*/ | ||
|
||
/** | ||
* This set tracks commands that don't use commas to separate their | ||
* arguments. | ||
* | ||
* Normally ES|QL command arguments are separated by commas. | ||
* | ||
* ``` | ||
* COMMAND arg1, arg2, arg3 | ||
* ``` | ||
* | ||
* But there are some commands (namely `grok` and `dissect`) which don't | ||
* use commas to separate their arguments. | ||
* | ||
* ``` | ||
* GROK input "pattern" | ||
* DISSECT input "pattern" | ||
* ``` | ||
*/ | ||
export const commandsWithNoCommaArgSeparator = new Set(['grok', 'dissect']); | ||
|
||
/** | ||
* This set tracks command options which use an equals sign to separate | ||
* the option label from the option value. | ||
* | ||
* Most ES|QL commands use a space to separate the option label from the | ||
* option value. | ||
* | ||
* ``` | ||
* COMMAND arg1, arg2, arg3 OPTION option | ||
* FROM index METADATA _id | ||
* ``` | ||
* | ||
* However, the `APPEND_SEPARATOR` in the `DISSECT` command uses an equals | ||
* sign to separate the option label from the option value. | ||
* | ||
* ``` | ||
* DISSECT input "pattern" APPEND_SEPARATOR = "separator" | ||
* | | ||
* | | ||
* equals sign | ||
* ``` | ||
*/ | ||
export const commandOptionsWithEqualsSeparator = new Set(['append_separator']); |
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
Oops, something went wrong.