mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
## Summary Closes https://github.com/elastic/kibana/issues/137810 Part of https://github.com/elastic/kibana/issues/163248 This PR is the **first iteration** of the new ES|QL language in kibana. The majority of the functionality is based on the existing functionality for SQL (which has already been merged). This builds on top of it to enable the functionality for ES|QL. We decided to remove SQL for now so this PR enables ES|QL and hides SQL. We are not removing the code for now. ### Important notes: - This PR contains basic autocomplete functionality for the ES|QL commands. We want to improve it in follow up PRs - The majority of the tests for SQL were moved to work with ES|QL instead - The search strategy is a very simple endpoint for now as we don't have async search nor pagination - Now that we remove SQL, the ui for ES|QL selection has changed - The documentation for ESQL has been handled by the docs team so it is already reviewed and in sync with the official documentation - ES|QL is disabled in serverless projects for now ### Changes from SQL: - The Discover histogram now is being created with ES|QL (using the date_trunc function). This gives it the ability to be saved on a dashboard and also to be edited inline. - ES|QL sometimes returns some warnings (on the search headers). For example when we are trying to date parse a string that doesnt contain a valid date). These warnings are also reported on the UI. There is a bug in ES and the warning doesnt come always https://github.com/elastic/elasticsearch-internal/issues/1465) - We have 2 types of commands: - Transformational commands (keep, stats) -> when they exist in the query Discover should render the Table view (selected columns) - Non transformational commands (all the others) -> in that case Discover renders the Document view - ESQL switch on advanced settings is now on by default **Discover view with non transformational commands** <img width="1678" alt="image" src="abe100e1
-01e9-4fe0-9b89-6d8bdf6443fc"> **Discover view with transformational commands** <img width="1679" alt="image" src="e46af422
-daeb-4be5-88cf-522211674ff5"> ### Missing - ESQL autocomplete is not perfect, we are going to work on it on a future PR. Specifically: - There is a bug in autocomplete, sometimes writing a query overwrites the existing one, will deal with it in a future PR - Further improvements ### Checklist - [ ] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [ ] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [ ] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios --------- Co-authored-by: Alexey Antonov <alexwizp@gmail.com> Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Abdon Pijpelink <abdon.pijpelink@elastic.co> Co-authored-by: gchaps <33642766+gchaps@users.noreply.github.com> Co-authored-by: Peter Pisljar <peter.pisljar@elastic.co> Co-authored-by: Marco Liberati <dej611@users.noreply.github.com> Co-authored-by: Matthias Wilhelm <matthias.wilhelm@elastic.co> Co-authored-by: Davis McPhee <davis.mcphee@elastic.co>
45 lines
1.2 KiB
TypeScript
45 lines
1.2 KiB
TypeScript
/*
|
|
* 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 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 or the Server
|
|
* Side Public License, v 1.
|
|
*/
|
|
|
|
export {
|
|
CONTEXT_DEFAULT_SIZE_SETTING,
|
|
CONTEXT_STEP_SETTING,
|
|
CONTEXT_TIE_BREAKER_FIELDS_SETTING,
|
|
DEFAULT_COLUMNS_SETTING,
|
|
DOC_HIDE_TIME_COLUMN_SETTING,
|
|
DOC_TABLE_LEGACY,
|
|
ENABLE_ESQL,
|
|
FIELDS_LIMIT_SETTING,
|
|
HIDE_ANNOUNCEMENTS,
|
|
KNOWN_FIELD_TYPE_LIST,
|
|
KNOWN_FIELD_TYPES,
|
|
MAX_DOC_FIELDS_DISPLAYED,
|
|
MODIFY_COLUMNS_ON_SWITCH,
|
|
ROW_HEIGHT_OPTION,
|
|
SAMPLE_ROWS_PER_PAGE_SETTING,
|
|
SAMPLE_SIZE_SETTING,
|
|
SEARCH_EMBEDDABLE_TYPE,
|
|
SEARCH_FIELDS_FROM_SOURCE,
|
|
SEARCH_ON_PAGE_LOAD_SETTING,
|
|
SHOW_FIELD_STATISTICS,
|
|
SHOW_MULTIFIELDS,
|
|
SORT_DEFAULT_ORDER_SETTING,
|
|
TRUNCATE_MAX_HEIGHT,
|
|
IgnoredReason,
|
|
buildDataTableRecord,
|
|
buildDataTableRecordList,
|
|
formatFieldValue,
|
|
formatHit,
|
|
getDocId,
|
|
getFieldTypeName,
|
|
getIgnoredReason,
|
|
getShouldShowFieldHandler,
|
|
isKnownFieldType,
|
|
isNestedFieldParent,
|
|
usePager,
|
|
} from './src';
|