diff --git a/.ci/Jenkinsfile_coverage b/.ci/Jenkinsfile_coverage
index 3f4732f15f334..650ef94e1d3da 100644
--- a/.ci/Jenkinsfile_coverage
+++ b/.ci/Jenkinsfile_coverage
@@ -11,8 +11,11 @@ kibanaPipeline(timeoutMinutes: 240) {
'CODE_COVERAGE=1', // Enables coverage. Needed for multiple ci scripts, such as remote.ts, test/scripts/*.sh, schema.js, etc.
]) {
workers.base(name: 'coverage-worker', size: 'l', ramDisk: false, bootstrapped: false) {
- kibanaCoverage.runTests()
- handleIngestion(TIME_STAMP)
+ catchError {
+ kibanaCoverage.runTests()
+ handleIngestion(TIME_STAMP)
+ }
+ handleFail()
}
}
kibanaPipeline.sendMail()
@@ -29,4 +32,13 @@ def handleIngestion(timestamp) {
kibanaCoverage.uploadCoverageStaticSite(timestamp)
}
+def handleFail() {
+ def buildStatus = buildUtils.getBuildStatus()
+ if(params.NOTIFY_ON_FAILURE && buildStatus != 'SUCCESS' && buildStatus != 'ABORTED') {
+ slackNotifications.sendFailedBuild(
+ channel: '#kibana-qa',
+ username: 'Kibana QA'
+ )
+ }
+}
diff --git a/.node-version b/.node-version
index 5b7269c0a98f3..b61c07ffddbd1 100644
--- a/.node-version
+++ b/.node-version
@@ -1 +1 @@
-10.19.0
+10.21.0
diff --git a/.nvmrc b/.nvmrc
index 5b7269c0a98f3..b61c07ffddbd1 100644
--- a/.nvmrc
+++ b/.nvmrc
@@ -1 +1 @@
-10.19.0
+10.21.0
diff --git a/.sass-lint.yml b/.sass-lint.yml
index db895583eb8a7..eb43af293c670 100644
--- a/.sass-lint.yml
+++ b/.sass-lint.yml
@@ -4,7 +4,6 @@ files:
- 'src/legacy/core_plugins/timelion/**/*.s+(a|c)ss'
- 'src/plugins/vis_type_vislib/**/*.s+(a|c)ss'
- 'src/plugins/vis_type_xy/**/*.s+(a|c)ss'
- - 'x-pack/legacy/plugins/security/**/*.s+(a|c)ss'
- 'x-pack/plugins/canvas/**/*.s+(a|c)ss'
- 'x-pack/plugins/triggers_actions_ui/**/*.s+(a|c)ss'
- 'x-pack/plugins/lens/**/*.s+(a|c)ss'
@@ -12,6 +11,7 @@ files:
- 'x-pack/legacy/plugins/maps/**/*.s+(a|c)ss'
- 'x-pack/plugins/maps/**/*.s+(a|c)ss'
- 'x-pack/plugins/spaces/**/*.s+(a|c)ss'
+ - 'x-pack/plugins/security/**/*.s+(a|c)ss'
ignore:
- 'x-pack/plugins/canvas/shareable_runtime/**/*.s+(a|c)ss'
rules:
diff --git a/Jenkinsfile b/Jenkinsfile
index 11dca544f3226..b6a36c79f877d 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -41,6 +41,7 @@ kibanaPipeline(timeoutMinutes: 155, checkPrChanges: true) {
'xpack-ciGroup9': kibanaPipeline.xpackCiGroupProcess(9),
'xpack-ciGroup10': kibanaPipeline.xpackCiGroupProcess(10),
'xpack-accessibility': kibanaPipeline.functionalTestProcess('xpack-accessibility', './test/scripts/jenkins_xpack_accessibility.sh'),
+ 'xpack-pageLoadMetrics': kibanaPipeline.functionalTestProcess('xpack-pageLoadMetrics', './test/scripts/jenkins_xpack_page_load_metrics.sh'),
'xpack-securitySolutionCypress': { processNumber ->
whenChanged(['x-pack/plugins/security_solution/', 'x-pack/test/security_solution_cypress/']) {
kibanaPipeline.functionalTestProcess('xpack-securitySolutionCypress', './test/scripts/jenkins_security_solution_cypress.sh')(processNumber)
diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.md
index 02cc34baf7c45..75d3abefc74b9 100644
--- a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.md
+++ b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.md
@@ -114,6 +114,7 @@
| [SearchBar](./kibana-plugin-plugins-data-public.searchbar.md) | |
| [SYNC\_SEARCH\_STRATEGY](./kibana-plugin-plugins-data-public.sync_search_strategy.md) | |
| [syncQueryStateWithUrl](./kibana-plugin-plugins-data-public.syncquerystatewithurl.md) | Helper to setup syncing of global data with the URL |
+| [UI\_SETTINGS](./kibana-plugin-plugins-data-public.ui_settings.md) | |
## Type Aliases
diff --git a/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ui_settings.md b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ui_settings.md
new file mode 100644
index 0000000000000..a48f4920b3d26
--- /dev/null
+++ b/docs/development/plugins/data/public/kibana-plugin-plugins-data-public.ui_settings.md
@@ -0,0 +1,39 @@
+
+
+[Home](./index.md) > [kibana-plugin-plugins-data-public](./kibana-plugin-plugins-data-public.md) > [UI\_SETTINGS](./kibana-plugin-plugins-data-public.ui_settings.md)
+
+## UI\_SETTINGS variable
+
+Signature:
+
+```typescript
+UI_SETTINGS: {
+ META_FIELDS: string;
+ DOC_HIGHLIGHT: string;
+ QUERY_STRING_OPTIONS: string;
+ QUERY_ALLOW_LEADING_WILDCARDS: string;
+ SEARCH_QUERY_LANGUAGE: string;
+ SORT_OPTIONS: string;
+ COURIER_IGNORE_FILTER_IF_FIELD_NOT_IN_INDEX: string;
+ COURIER_SET_REQUEST_PREFERENCE: string;
+ COURIER_CUSTOM_REQUEST_PREFERENCE: string;
+ COURIER_MAX_CONCURRENT_SHARD_REQUESTS: string;
+ COURIER_BATCH_SEARCHES: string;
+ SEARCH_INCLUDE_FROZEN: string;
+ HISTOGRAM_BAR_TARGET: string;
+ HISTOGRAM_MAX_BARS: string;
+ HISTORY_LIMIT: string;
+ SHORT_DOTS_ENABLE: string;
+ FORMAT_DEFAULT_TYPE_MAP: string;
+ FORMAT_NUMBER_DEFAULT_PATTERN: string;
+ FORMAT_PERCENT_DEFAULT_PATTERN: string;
+ FORMAT_BYTES_DEFAULT_PATTERN: string;
+ FORMAT_CURRENCY_DEFAULT_PATTERN: string;
+ FORMAT_NUMBER_DEFAULT_LOCALE: string;
+ TIMEPICKER_REFRESH_INTERVAL_DEFAULTS: string;
+ TIMEPICKER_QUICK_RANGES: string;
+ INDEXPATTERN_PLACEHOLDER: string;
+ FILTERS_PINNED_BY_DEFAULT: string;
+ FILTERS_EDITOR_SUGGEST_VALUES: string;
+}
+```
diff --git a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.md b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.md
index 5f4bb8742c1d1..0efbe8ed4ed64 100644
--- a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.md
+++ b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.md
@@ -62,6 +62,7 @@
| [fieldFormats](./kibana-plugin-plugins-data-server.fieldformats.md) | |
| [indexPatterns](./kibana-plugin-plugins-data-server.indexpatterns.md) | |
| [search](./kibana-plugin-plugins-data-server.search.md) | |
+| [UI\_SETTINGS](./kibana-plugin-plugins-data-server.ui_settings.md) | |
## Type Aliases
diff --git a/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ui_settings.md b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ui_settings.md
new file mode 100644
index 0000000000000..855cfd11d00ea
--- /dev/null
+++ b/docs/development/plugins/data/server/kibana-plugin-plugins-data-server.ui_settings.md
@@ -0,0 +1,39 @@
+
+
+[Home](./index.md) > [kibana-plugin-plugins-data-server](./kibana-plugin-plugins-data-server.md) > [UI\_SETTINGS](./kibana-plugin-plugins-data-server.ui_settings.md)
+
+## UI\_SETTINGS variable
+
+Signature:
+
+```typescript
+UI_SETTINGS: {
+ META_FIELDS: string;
+ DOC_HIGHLIGHT: string;
+ QUERY_STRING_OPTIONS: string;
+ QUERY_ALLOW_LEADING_WILDCARDS: string;
+ SEARCH_QUERY_LANGUAGE: string;
+ SORT_OPTIONS: string;
+ COURIER_IGNORE_FILTER_IF_FIELD_NOT_IN_INDEX: string;
+ COURIER_SET_REQUEST_PREFERENCE: string;
+ COURIER_CUSTOM_REQUEST_PREFERENCE: string;
+ COURIER_MAX_CONCURRENT_SHARD_REQUESTS: string;
+ COURIER_BATCH_SEARCHES: string;
+ SEARCH_INCLUDE_FROZEN: string;
+ HISTOGRAM_BAR_TARGET: string;
+ HISTOGRAM_MAX_BARS: string;
+ HISTORY_LIMIT: string;
+ SHORT_DOTS_ENABLE: string;
+ FORMAT_DEFAULT_TYPE_MAP: string;
+ FORMAT_NUMBER_DEFAULT_PATTERN: string;
+ FORMAT_PERCENT_DEFAULT_PATTERN: string;
+ FORMAT_BYTES_DEFAULT_PATTERN: string;
+ FORMAT_CURRENCY_DEFAULT_PATTERN: string;
+ FORMAT_NUMBER_DEFAULT_LOCALE: string;
+ TIMEPICKER_REFRESH_INTERVAL_DEFAULTS: string;
+ TIMEPICKER_QUICK_RANGES: string;
+ INDEXPATTERN_PLACEHOLDER: string;
+ FILTERS_PINNED_BY_DEFAULT: string;
+ FILTERS_EDITOR_SUGGEST_VALUES: string;
+}
+```
diff --git a/docs/images/add-data-fv.png b/docs/images/add-data-fv.png
new file mode 100755
index 0000000000000..45313d133822c
Binary files /dev/null and b/docs/images/add-data-fv.png differ
diff --git a/docs/images/add-data-tutorials.png b/docs/images/add-data-tutorials.png
new file mode 100644
index 0000000000000..74deedc57b42e
Binary files /dev/null and b/docs/images/add-data-tutorials.png differ
diff --git a/docs/management/managing-remote-clusters.asciidoc b/docs/management/managing-remote-clusters.asciidoc
index 00ec5c7d2ddea..51d9f42a0b83e 100644
--- a/docs/management/managing-remote-clusters.asciidoc
+++ b/docs/management/managing-remote-clusters.asciidoc
@@ -31,6 +31,10 @@ to reproduce indices in the remote cluster on a local cluster.
[role="screenshot"]
image::images/add_remote_cluster.png[][UI for adding a remote cluster]
+To create an index pattern to search across clusters,
+use the same syntax that you’d use in a raw cross-cluster search request in {es}: :.
+See <> for examples.
+
[float]
[[manage-remote-clusters]]
=== Manage remote clusters
diff --git a/docs/maps/images/fu_gs_select_source_file_upload.png b/docs/maps/images/fu_gs_select_source_file_upload.png
index 6939f6a82b297..4fe1162acb29c 100644
Binary files a/docs/maps/images/fu_gs_select_source_file_upload.png and b/docs/maps/images/fu_gs_select_source_file_upload.png differ
diff --git a/docs/setup/connect-to-elasticsearch.asciidoc b/docs/setup/connect-to-elasticsearch.asciidoc
index 00acb73bd276f..6137e028db3fd 100644
--- a/docs/setup/connect-to-elasticsearch.asciidoc
+++ b/docs/setup/connect-to-elasticsearch.asciidoc
@@ -1,44 +1,105 @@
[[connect-to-elasticsearch]]
-== Connect Kibana with Elasticsearch
+== Adding data
-Before you can start using Kibana, you need to tell it which Elasticsearch indices you want to explore.
-The first time you access Kibana, you are prompted to define an _index pattern_ that matches the name of
-one or more of your indices. That's it. That's all you need to configure to start using Kibana. You can
-add index patterns at any time from the <>.
+To start working with your data in {kib}, you can:
-TIP: By default, Kibana connects to the Elasticsearch instance running on `localhost`. To connect to a
-different Elasticsearch instance, modify the Elasticsearch URL in the `kibana.yml` configuration file and
-restart Kibana. For information about using Kibana with your production nodes, see <>.
+* Upload a CSV, JSON, or log file with the File Data Visualizer.
-To configure the Elasticsearch indices you want to access with Kibana:
+* Upload geospatial data with the GeoJSON Upload feature.
-. Point your browser at port 5601 to access the Kibana UI. For example, `localhost:5601` or
-`http://YOURDOMAIN.com:5601`.
-+
-image:images/Start-Page.png[Kibana start page]
-+
-. Specify an index pattern that matches the name of one or more of your Elasticsearch indices. The pattern
-can include an asterisk (*) to matches zero or more characters in an index's name. When filling out your
-index pattern, any matched indices will be displayed.
-. Click *Next Step* to select the index field that contains the timestamp you want to use to perform time-based
-comparisons. Kibana reads the index mapping to list all of the fields that contain a timestamp. If your
-index doesn't have time-based data, choose *I don't want to use the Time Filter* option.
-+
-. Click *Create index pattern* to add the index pattern. This first pattern is automatically configured as the default.
-When you have more than one index pattern, you can designate which one to use as the default by clicking
-on the star icon above the index pattern title from *Management > Index Patterns*.
+* Index logs, metrics, events, or application data by setting up a Beats module.
+
+* Connect {kib} with existing {es} indices.
+
+If you're not ready to use your own data, you can add a <>
+to see all that you can do in {kib}.
+
+[float]
+[[upload-data-kibana]]
+=== Upload a CSV, JSON, or log file
+
+To visualize data in a CSV, JSON, or log file, you can
+upload it using the File Data Visualizer. On the home page,
+click *Import a CSV, NDSON, or log file*, and then drag your file into the
+File Data Visualizer.
+
+You can upload a file up to 100 MB. This value is configurable up to 1 GB in
+<>.
+
+[role="screenshot"]
+image::images/add-data-fv.png[File Data Visualizer]
+
+The File Data Visualizer uses the {ref}/ml-find-file-structure.html[find_file_structure API] to analyze
+the uploaded file and to suggest ingest pipelines and mappings for your data.
+
+NOTE: This feature is not intended for use as part of a
+repeated production process, but rather for the initial exploration of your data.
+
+[float]
+[[upload-geoipdata-kibana]]
+=== Upload geospatial data
+
+To visualize geospatial data in a point or shape file, you can upload it using the <>
+feature in *Elastic Maps*, and then use that data as a layer in a map.
+The data is also available for use in the broader Kibana ecosystem, for example,
+in visualizations and Canvas workpads.
+With GeoJSON Upload, you can upload a file up to 50 MB.
+
+[role="screenshot"]
+image::images/fu_gs_select_source_file_upload.png[]
-All done! Kibana is now connected to your Elasticsearch data. Kibana displays a read-only list of fields
-configured for the matching index.
[float]
-[[explore]]
-=== Start Exploring your Data!
-You're ready to dive in to your data:
+[[add-data-tutorial-kibana]]
+=== Index metrics, log, security, and application data
-* Search and browse your data interactively from the <> page.
-* Chart and map your data from the <> page.
-* Create and view custom dashboards from the <> page.
+The built-in data tutorials can help you quickly get up and running with
+metrics data, log analytics, security events, and application data.
+These tutorials walk you through installing and configuring a
+Beats data shipper to periodically collect and send data to {es}.
+You can then use the pre-built dashboards to explore and analyze the data.
-For a step-by-step introduction to these core Kibana concepts, see the <> tutorial.
+You access the tutorials from the home page.
+If a tutorial doesn’t exist for your data, go to the {beats-ref}/beats-reference.html[Beats overview]
+to learn about other data shippers in the Beats family.
+
+[role="screenshot"]
+image::images/add-data-tutorials.png[Add Data tutorials]
+
+
+[float]
+[[connect-to-es]]
+=== Connect with {es} indices
+
+To visualize data in existing {es} indices, you must
+create an index pattern that matches the names of the indices that you want to explore.
+When you add data with the File Data Visualizer, GeoJSON Upload feature,
+or built-in tutorial, an index pattern is created for you.
+
+. Go to *Stack Management*, and then click *Index Patterns*.
+
+. Click *Create index pattern*.
+
+. Specify an index pattern that matches the name of one or more of your Elasticsearch indices.
++
+For example, an index pattern can point to your Apache data from yesterday,
+`filebeat-apache-4-3-2022`, or any index that matches the pattern, `filebeat-*`.
+Using a wildcard is the more popular approach.
+
+
+. Click *Next Step*, and then select the index field that contains the timestamp you want to use to perform time-based
+comparisons.
++
+Kibana reads the index mapping and lists all fields that contain a timestamp. If your
+index doesn't have time-based data, choose *I don't want to use the Time Filter*.
++
+You must select a time field to use global time filters on your dashboards.
+
+. Click *Create index pattern*.
++
+{kib} is now configured to access your {es} indices.
+You’ll see a list of fields configured for the matching index.
+You can designate your index pattern as the default by clicking the star icon on this page.
++
+When searching in *Discover* and creating visualizations, you choose a pattern
+from the index pattern menu to specify the {es} indices that contain the data you want to explore.
diff --git a/package.json b/package.json
index 1201a1773e6cd..0873ab8c158e1 100644
--- a/package.json
+++ b/package.json
@@ -429,7 +429,7 @@
"eslint-plugin-prefer-object-spread": "^1.2.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react": "^7.17.0",
- "eslint-plugin-react-hooks": "^2.3.0",
+ "eslint-plugin-react-hooks": "^4.0.4",
"eslint-plugin-react-perf": "^3.2.3",
"exit-hook": "^2.2.0",
"faker": "1.1.0",
@@ -504,7 +504,7 @@
"zlib": "^1.0.5"
},
"engines": {
- "node": "10.19.0",
+ "node": "10.21.0",
"yarn": "^1.21.1"
}
}
diff --git a/packages/kbn-test/package.json b/packages/kbn-test/package.json
index 0ab0048619358..8e2fd1c9182ff 100644
--- a/packages/kbn-test/package.json
+++ b/packages/kbn-test/package.json
@@ -14,6 +14,7 @@
"@kbn/babel-preset": "1.0.0",
"@kbn/dev-utils": "1.0.0",
"@types/parse-link-header": "^1.0.0",
+ "@types/puppeteer": "^3.0.0",
"@types/strip-ansi": "^5.2.1",
"@types/xml2js": "^0.4.5",
"diff": "^4.0.1"
@@ -25,6 +26,7 @@
"getopts": "^2.2.4",
"glob": "^7.1.2",
"parse-link-header": "^1.0.1",
+ "puppeteer": "^3.3.0",
"strip-ansi": "^5.2.0",
"rxjs": "^6.5.3",
"tar-fs": "^1.16.3",
diff --git a/packages/kbn-test/src/index.ts b/packages/kbn-test/src/index.ts
index 585ce8181df5f..0bc7cc664df68 100644
--- a/packages/kbn-test/src/index.ts
+++ b/packages/kbn-test/src/index.ts
@@ -58,3 +58,5 @@ export { runFailedTestsReporterCli } from './failed_tests_reporter';
export { makeJunitReportPath } from './junit_report_path';
export { CI_PARALLEL_PROCESS_PREFIX } from './ci_parallel_process_prefix';
+
+export * from './page_load_metrics';
diff --git a/packages/kbn-test/src/page_load_metrics/capture_page_load_metrics.ts b/packages/kbn-test/src/page_load_metrics/capture_page_load_metrics.ts
new file mode 100644
index 0000000000000..013d49a29a51c
--- /dev/null
+++ b/packages/kbn-test/src/page_load_metrics/capture_page_load_metrics.ts
@@ -0,0 +1,81 @@
+/*
+ * Licensed to Elasticsearch B.V. under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch B.V. licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import { ToolingLog } from '@kbn/dev-utils';
+import { NavigationOptions, createUrl, navigateToApps } from './navigation';
+
+export async function capturePageLoadMetrics(log: ToolingLog, options: NavigationOptions) {
+ const responsesByPageView = await navigateToApps(log, options);
+
+ const assetSizeMeasurements = new Map();
+
+ const numberOfPagesVisited = responsesByPageView.size;
+
+ for (const [, frameResponses] of responsesByPageView) {
+ for (const [, { url, dataLength }] of frameResponses) {
+ if (url.length === 0) {
+ throw new Error('navigateToApps(); failed to identify the url of the request');
+ }
+ if (assetSizeMeasurements.has(url)) {
+ assetSizeMeasurements.set(url, [dataLength].concat(assetSizeMeasurements.get(url) || []));
+ } else {
+ assetSizeMeasurements.set(url, [dataLength]);
+ }
+ }
+ }
+
+ return Array.from(assetSizeMeasurements.entries())
+ .map(([url, measurements]) => {
+ const baseUrl = createUrl('/', options.appConfig.url);
+ const relativeUrl = url
+ // remove the baseUrl (expect the trailing slash) to make url relative
+ .replace(baseUrl.slice(0, -1), '')
+ // strip the build number from asset urls
+ .replace(/^\/\d+\//, '/');
+ return [relativeUrl, measurements] as const;
+ })
+ .filter(([url, measurements]) => {
+ if (measurements.length !== numberOfPagesVisited) {
+ // ignore urls seen only on some pages
+ return false;
+ }
+
+ if (url.startsWith('data:')) {
+ // ignore data urls since they are already counted by other assets
+ return false;
+ }
+
+ if (url.startsWith('/api/') || url.startsWith('/internal/')) {
+ // ignore api requests since they don't have deterministic sizes
+ return false;
+ }
+
+ const allMetricsAreEqual = measurements.every((x, i) =>
+ i === 0 ? true : x === measurements[i - 1]
+ );
+ if (!allMetricsAreEqual) {
+ throw new Error(`measurements for url [${url}] are not equal [${measurements.join(',')}]`);
+ }
+
+ return true;
+ })
+ .map(([url, measurements]) => {
+ return { group: 'page load asset size', id: url, value: measurements[0] };
+ });
+}
diff --git a/packages/kbn-test/src/page_load_metrics/cli.ts b/packages/kbn-test/src/page_load_metrics/cli.ts
new file mode 100644
index 0000000000000..95421384c79cb
--- /dev/null
+++ b/packages/kbn-test/src/page_load_metrics/cli.ts
@@ -0,0 +1,90 @@
+/*
+ * Licensed to Elasticsearch B.V. under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch B.V. licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import Url from 'url';
+
+import { run, createFlagError } from '@kbn/dev-utils';
+import { resolve, basename } from 'path';
+import { capturePageLoadMetrics } from './capture_page_load_metrics';
+
+const defaultScreenshotsDir = resolve(__dirname, 'screenshots');
+
+export function runPageLoadMetricsCli() {
+ run(
+ async ({ flags, log }) => {
+ const kibanaUrl = flags['kibana-url'];
+ if (!kibanaUrl || typeof kibanaUrl !== 'string') {
+ throw createFlagError('Expect --kibana-url to be a string');
+ }
+
+ const parsedUrl = Url.parse(kibanaUrl);
+
+ const [username, password] = parsedUrl.auth
+ ? parsedUrl.auth.split(':')
+ : [flags.username, flags.password];
+
+ if (typeof username !== 'string' || typeof password !== 'string') {
+ throw createFlagError(
+ 'Mising username and/or password, either specify in --kibana-url or pass --username and --password'
+ );
+ }
+
+ const headless = !flags.head;
+
+ const screenshotsDir = flags.screenshotsDir || defaultScreenshotsDir;
+
+ if (typeof screenshotsDir !== 'string' || screenshotsDir === basename(screenshotsDir)) {
+ throw createFlagError('Expect screenshotsDir to be valid path string');
+ }
+
+ const metrics = await capturePageLoadMetrics(log, {
+ headless,
+ appConfig: {
+ url: kibanaUrl,
+ username,
+ password,
+ },
+ screenshotsDir,
+ });
+ for (const metric of metrics) {
+ log.info(`${metric.id}: ${metric.value}`);
+ }
+ },
+ {
+ description: `Loads several pages with Puppeteer to capture the size of assets`,
+ flags: {
+ string: ['kibana-url', 'username', 'password', 'screenshotsDir'],
+ boolean: ['head'],
+ default: {
+ username: 'elastic',
+ password: 'changeme',
+ debug: true,
+ screenshotsDir: defaultScreenshotsDir,
+ },
+ help: `
+ --kibana-url Url for Kibana we should connect to, can include login info
+ --head Run puppeteer with graphical user interface
+ --username Set username, defaults to 'elastic'
+ --password Set password, defaults to 'changeme'
+ --screenshotsDir Set screenshots directory, defaults to '${defaultScreenshotsDir}'
+ `,
+ },
+ }
+ );
+}
diff --git a/packages/kbn-test/src/page_load_metrics/event.ts b/packages/kbn-test/src/page_load_metrics/event.ts
new file mode 100644
index 0000000000000..481954bbf672e
--- /dev/null
+++ b/packages/kbn-test/src/page_load_metrics/event.ts
@@ -0,0 +1,34 @@
+/*
+ * Licensed to Elasticsearch B.V. under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch B.V. licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+export interface ResponseReceivedEvent {
+ frameId: string;
+ loaderId: string;
+ requestId: string;
+ response: Record;
+ timestamp: number;
+ type: string;
+}
+
+export interface DataReceivedEvent {
+ encodedDataLength: number;
+ dataLength: number;
+ requestId: string;
+ timestamp: number;
+}
diff --git a/packages/kbn-test/src/page_load_metrics/index.ts b/packages/kbn-test/src/page_load_metrics/index.ts
new file mode 100644
index 0000000000000..4309d558518a6
--- /dev/null
+++ b/packages/kbn-test/src/page_load_metrics/index.ts
@@ -0,0 +1,21 @@
+/*
+ * Licensed to Elasticsearch B.V. under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch B.V. licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+export * from './cli';
+export { capturePageLoadMetrics } from './capture_page_load_metrics';
diff --git a/packages/kbn-test/src/page_load_metrics/navigation.ts b/packages/kbn-test/src/page_load_metrics/navigation.ts
new file mode 100644
index 0000000000000..21dc681951b21
--- /dev/null
+++ b/packages/kbn-test/src/page_load_metrics/navigation.ts
@@ -0,0 +1,165 @@
+/*
+ * Licensed to Elasticsearch B.V. under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch B.V. licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import Fs from 'fs';
+import Url from 'url';
+import _ from 'lodash';
+import puppeteer from 'puppeteer';
+import { resolve } from 'path';
+import { ToolingLog } from '@kbn/dev-utils';
+import { ResponseReceivedEvent, DataReceivedEvent } from './event';
+
+export interface NavigationOptions {
+ headless: boolean;
+ appConfig: { url: string; username: string; password: string };
+ screenshotsDir: string;
+}
+
+export type NavigationResults = Map>;
+
+interface FrameResponse {
+ url: string;
+ dataLength: number;
+}
+
+function joinPath(pathA: string, pathB: string) {
+ return `${pathA.endsWith('/') ? pathA.slice(0, -1) : pathA}/${
+ pathB.startsWith('/') ? pathB.slice(1) : pathB
+ }`;
+}
+
+export function createUrl(path: string, url: string) {
+ const baseUrl = Url.parse(url);
+ return Url.format({
+ protocol: baseUrl.protocol,
+ hostname: baseUrl.hostname,
+ port: baseUrl.port,
+ pathname: joinPath(baseUrl.pathname || '', path),
+ });
+}
+
+async function loginToKibana(
+ log: ToolingLog,
+ browser: puppeteer.Browser,
+ options: NavigationOptions
+) {
+ log.debug(`log in to the app..`);
+ const page = await browser.newPage();
+ const loginUrl = createUrl('/login', options.appConfig.url);
+ await page.goto(loginUrl, {
+ waitUntil: 'networkidle0',
+ });
+ await page.type('[data-test-subj="loginUsername"]', options.appConfig.username);
+ await page.type('[data-test-subj="loginPassword"]', options.appConfig.password);
+ await page.click('[data-test-subj="loginSubmit"]');
+ await page.waitForNavigation({ waitUntil: 'networkidle0' });
+ await page.close();
+}
+
+export async function navigateToApps(log: ToolingLog, options: NavigationOptions) {
+ const browser = await puppeteer.launch({ headless: options.headless, args: ['--no-sandbox'] });
+ const devToolsResponses: NavigationResults = new Map();
+ const apps = [
+ { path: '/app/discover', locator: '[data-test-subj="discover-sidebar"]' },
+ { path: '/app/home', locator: '[data-test-subj="homeApp"]' },
+ { path: '/app/canvas', locator: '[data-test-subj="create-workpad-button"]' },
+ { path: '/app/maps', locator: '[title="Maps"]' },
+ { path: '/app/apm', locator: '[data-test-subj="apmMainContainer"]' },
+ ];
+
+ await loginToKibana(log, browser, options);
+
+ await Promise.all(
+ apps.map(async (app) => {
+ const page = await browser.newPage();
+ page.setCacheEnabled(false);
+ page.setDefaultNavigationTimeout(0);
+ const frameResponses = new Map();
+ devToolsResponses.set(app.path, frameResponses);
+
+ const client = await page.target().createCDPSession();
+ await client.send('Network.enable');
+
+ function getRequestData(requestId: string) {
+ if (!frameResponses.has(requestId)) {
+ frameResponses.set(requestId, { url: '', dataLength: 0 });
+ }
+
+ return frameResponses.get(requestId)!;
+ }
+
+ client.on('Network.responseReceived', (event: ResponseReceivedEvent) => {
+ getRequestData(event.requestId).url = event.response.url;
+ });
+
+ client.on('Network.dataReceived', (event: DataReceivedEvent) => {
+ getRequestData(event.requestId).dataLength += event.dataLength;
+ });
+
+ const url = createUrl(app.path, options.appConfig.url);
+ log.debug(`goto ${url}`);
+ await page.goto(url, {
+ waitUntil: 'networkidle0',
+ });
+
+ let readyAttempt = 0;
+ let selectorFound = false;
+ while (!selectorFound) {
+ readyAttempt += 1;
+ try {
+ await page.waitForSelector(app.locator, { timeout: 5000 });
+ selectorFound = true;
+ } catch (error) {
+ log.error(
+ `Page '${app.path}' was not loaded properly, unable to find '${
+ app.locator
+ }', url: ${page.url()}`
+ );
+
+ if (readyAttempt < 6) {
+ continue;
+ }
+
+ const failureDir = resolve(options.screenshotsDir, 'failure');
+ const screenshotPath = resolve(
+ failureDir,
+ `${app.path.slice(1).split('/').join('_')}_navigation.png`
+ );
+ Fs.mkdirSync(failureDir, { recursive: true });
+
+ await page.bringToFront();
+ await page.screenshot({
+ path: screenshotPath,
+ type: 'png',
+ fullPage: true,
+ });
+ log.debug(`Saving screenshot to ${screenshotPath}`);
+
+ throw new Error(`Page load timeout: ${app.path} not loaded after 30 seconds`);
+ }
+ }
+
+ await page.close();
+ })
+ );
+
+ await browser.close();
+
+ return devToolsResponses;
+}
diff --git a/scripts/page_load_metrics.js b/scripts/page_load_metrics.js
new file mode 100644
index 0000000000000..37500c26e0b20
--- /dev/null
+++ b/scripts/page_load_metrics.js
@@ -0,0 +1,21 @@
+/*
+ * Licensed to Elasticsearch B.V. under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch B.V. licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+require('../src/setup_node_env');
+require('@kbn/test').runPageLoadMetricsCli();
diff --git a/src/core/server/plugins/plugin_context.ts b/src/core/server/plugins/plugin_context.ts
index 7afb607192cae..f0db3a25e313d 100644
--- a/src/core/server/plugins/plugin_context.ts
+++ b/src/core/server/plugins/plugin_context.ts
@@ -17,7 +17,7 @@
* under the License.
*/
-import { map } from 'rxjs/operators';
+import { map, shareReplay } from 'rxjs/operators';
import { combineLatest } from 'rxjs';
import { CoreContext } from '../core_context';
import { PluginWrapper } from './plugin';
@@ -107,8 +107,8 @@ export function createPluginInitializerContext(
* @param ConfigClass A class (not an instance of a class) that contains a
* static `schema` that we validate the config at the given `path` against.
*/
- create() {
- return coreContext.configService.atPath(pluginManifest.configPath);
+ create() {
+ return coreContext.configService.atPath(pluginManifest.configPath).pipe(shareReplay(1));
},
createIfExists() {
return coreContext.configService.optionalAtPath(pluginManifest.configPath);
diff --git a/src/core/server/saved_objects/migrations/kibana/kibana_migrator.ts b/src/core/server/saved_objects/migrations/kibana/kibana_migrator.ts
index 4f69d45c192e9..69b57a498936e 100644
--- a/src/core/server/saved_objects/migrations/kibana/kibana_migrator.ts
+++ b/src/core/server/saved_objects/migrations/kibana/kibana_migrator.ts
@@ -74,6 +74,7 @@ export class KibanaMigrator {
private readonly status$ = new BehaviorSubject({
status: 'waiting',
});
+ private readonly activeMappings: IndexMapping;
/**
* Creates an instance of KibanaMigrator.
@@ -100,6 +101,9 @@ export class KibanaMigrator {
validateDoc: docValidator(savedObjectValidations || {}),
log: this.log,
});
+ // Building the active mappings (and associated md5sums) is an expensive
+ // operation so we cache the result
+ this.activeMappings = buildActiveMappings(this.mappingProperties);
}
/**
@@ -172,7 +176,7 @@ export class KibanaMigrator {
*
*/
public getActiveMappings(): IndexMapping {
- return buildActiveMappings(this.mappingProperties);
+ return this.activeMappings;
}
/**
diff --git a/src/core/server/saved_objects/service/lib/repository.ts b/src/core/server/saved_objects/service/lib/repository.ts
index e23f8dec5927c..b093fe779cab7 100644
--- a/src/core/server/saved_objects/service/lib/repository.ts
+++ b/src/core/server/saved_objects/service/lib/repository.ts
@@ -136,7 +136,7 @@ export class SavedObjectsRepository {
injectedConstructor: any = SavedObjectsRepository
): ISavedObjectsRepository {
const mappings = migrator.getActiveMappings();
- const allTypes = Object.keys(getRootPropertiesObjects(mappings));
+ const allTypes = typeRegistry.getAllTypes().map((t) => t.name);
const serializer = new SavedObjectsSerializer(typeRegistry);
const visibleTypes = allTypes.filter((type) => !typeRegistry.isHidden(type));
diff --git a/src/dev/build/build_distributables.js b/src/dev/build/build_distributables.js
index 3a8709893565d..66f0c0355c2d9 100644
--- a/src/dev/build/build_distributables.js
+++ b/src/dev/build/build_distributables.js
@@ -30,6 +30,7 @@ import {
CleanTypescriptTask,
CleanNodeBuildsTask,
CleanTask,
+ CopyBinScriptsTask,
CopySourceTask,
CreateArchivesSourcesTask,
CreateArchivesTask,
@@ -110,6 +111,7 @@ export async function buildDistributables(options) {
* run platform-generic build tasks
*/
await run(CopySourceTask);
+ await run(CopyBinScriptsTask);
await run(CreateEmptyDirsAndFilesTask);
await run(CreateReadmeTask);
await run(TranspileBabelTask);
diff --git a/src/dev/build/tasks/bin/copy_bin_scripts_task.js b/src/dev/build/tasks/bin/copy_bin_scripts_task.js
new file mode 100644
index 0000000000000..f620f12b17d88
--- /dev/null
+++ b/src/dev/build/tasks/bin/copy_bin_scripts_task.js
@@ -0,0 +1,31 @@
+/*
+ * Licensed to Elasticsearch B.V. under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch B.V. licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import { copyAll } from '../../lib';
+
+export const CopyBinScriptsTask = {
+ description: 'Copying bin scripts into platform-generic build directory',
+
+ async run(config, log, build) {
+ await copyAll(
+ config.resolveFromRepo('src/dev/build/tasks/bin/scripts'),
+ build.resolvePath('bin')
+ );
+ },
+};
diff --git a/src/dev/build/tasks/bin/index.js b/src/dev/build/tasks/bin/index.js
new file mode 100644
index 0000000000000..e970ac5ec044b
--- /dev/null
+++ b/src/dev/build/tasks/bin/index.js
@@ -0,0 +1,20 @@
+/*
+ * Licensed to Elasticsearch B.V. under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch B.V. licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+export { CopyBinScriptsTask } from './copy_bin_scripts_task';
diff --git a/bin/kibana b/src/dev/build/tasks/bin/scripts/kibana
similarity index 100%
rename from bin/kibana
rename to src/dev/build/tasks/bin/scripts/kibana
diff --git a/bin/kibana-keystore b/src/dev/build/tasks/bin/scripts/kibana-keystore
similarity index 100%
rename from bin/kibana-keystore
rename to src/dev/build/tasks/bin/scripts/kibana-keystore
diff --git a/bin/kibana-keystore.bat b/src/dev/build/tasks/bin/scripts/kibana-keystore.bat
similarity index 100%
rename from bin/kibana-keystore.bat
rename to src/dev/build/tasks/bin/scripts/kibana-keystore.bat
diff --git a/bin/kibana-plugin b/src/dev/build/tasks/bin/scripts/kibana-plugin
similarity index 100%
rename from bin/kibana-plugin
rename to src/dev/build/tasks/bin/scripts/kibana-plugin
diff --git a/bin/kibana-plugin.bat b/src/dev/build/tasks/bin/scripts/kibana-plugin.bat
similarity index 100%
rename from bin/kibana-plugin.bat
rename to src/dev/build/tasks/bin/scripts/kibana-plugin.bat
diff --git a/bin/kibana.bat b/src/dev/build/tasks/bin/scripts/kibana.bat
similarity index 100%
rename from bin/kibana.bat
rename to src/dev/build/tasks/bin/scripts/kibana.bat
diff --git a/src/dev/build/tasks/copy_source_task.js b/src/dev/build/tasks/copy_source_task.js
index ee9dc159de47f..ddc6d000bca19 100644
--- a/src/dev/build/tasks/copy_source_task.js
+++ b/src/dev/build/tasks/copy_source_task.js
@@ -42,7 +42,6 @@ export const CopySourceTask = {
'!src/es_archiver/**',
'!src/functional_test_runner/**',
'!src/dev/**',
- 'bin/**',
'typings/**',
'webpackShims/**',
'config/kibana.yml',
diff --git a/src/dev/build/tasks/index.js b/src/dev/build/tasks/index.js
index 8105fa8a7d5d4..bafb5a2fe115e 100644
--- a/src/dev/build/tasks/index.js
+++ b/src/dev/build/tasks/index.js
@@ -17,6 +17,7 @@
* under the License.
*/
+export * from './bin';
export * from './build_packages_task';
export * from './clean_tasks';
export * from './copy_source_task';
diff --git a/src/dev/code_coverage/nyc_config/nyc.functional.config.js b/src/dev/code_coverage/nyc_config/nyc.functional.config.js
new file mode 100644
index 0000000000000..20d266ab9e2c3
--- /dev/null
+++ b/src/dev/code_coverage/nyc_config/nyc.functional.config.js
@@ -0,0 +1,31 @@
+/*
+ * Licensed to Elasticsearch B.V. under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch B.V. licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+const defaultExclude = require('@istanbuljs/schema/default-exclude');
+const extraExclude = ['data/optimize/**', 'src/core/server/**', '**/test/**'];
+const path = require('path');
+
+module.exports = {
+ 'temp-dir': process.env.COVERAGE_TEMP_DIR
+ ? path.resolve(process.env.COVERAGE_TEMP_DIR, 'functional')
+ : 'target/kibana-coverage/functional',
+ 'report-dir': 'target/kibana-coverage/functional-combined',
+ reporter: ['html', 'json-summary'],
+ exclude: extraExclude.concat(defaultExclude),
+};
diff --git a/src/dev/code_coverage/nyc_config/nyc.jest.config.js b/src/dev/code_coverage/nyc_config/nyc.jest.config.js
new file mode 100644
index 0000000000000..1f73347837ab3
--- /dev/null
+++ b/src/dev/code_coverage/nyc_config/nyc.jest.config.js
@@ -0,0 +1,28 @@
+/*
+ * Licensed to Elasticsearch B.V. under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch B.V. licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+const path = require('path');
+
+module.exports = {
+ 'temp-dir': process.env.COVERAGE_TEMP_DIR
+ ? path.resolve(process.env.COVERAGE_TEMP_DIR, 'jest')
+ : 'target/kibana-coverage/jest',
+ 'report-dir': 'target/kibana-coverage/jest-combined',
+ reporter: ['html', 'json-summary'],
+};
diff --git a/src/dev/code_coverage/shell_scripts/merge_jest_and_functional.sh b/src/dev/code_coverage/shell_scripts/merge_jest_and_functional.sh
index ff9cb36c894f8..707c6de3f88a0 100644
--- a/src/dev/code_coverage/shell_scripts/merge_jest_and_functional.sh
+++ b/src/dev/code_coverage/shell_scripts/merge_jest_and_functional.sh
@@ -1,10 +1,9 @@
#!/bin/bash
-EXTRACT_START_DIR=tmp/extracted_coverage
-EXTRACT_END_DIR=target/kibana-coverage
-COMBINED_EXTRACT_DIR=/${EXTRACT_START_DIR}/${EXTRACT_END_DIR}
+COVERAGE_TEMP_DIR=/tmp/extracted_coverage/target/kibana-coverage/
+export COVERAGE_TEMP_DIR
echo "### Merge coverage reports"
for x in jest functional; do
- yarn nyc report --temp-dir $COMBINED_EXTRACT_DIR/${x} --report-dir $EXTRACT_END_DIR/${x}-combined --reporter=html --reporter=json-summary
+ yarn nyc report --nycrc-path src/dev/code_coverage/nyc_config/nyc.${x}.config.js
done
diff --git a/src/dev/storybook/aliases.ts b/src/dev/storybook/aliases.ts
index 4ed8f8e7db190..2f785896da8d5 100644
--- a/src/dev/storybook/aliases.ts
+++ b/src/dev/storybook/aliases.ts
@@ -18,7 +18,6 @@
*/
export const storybookAliases = {
- advanced_ui_actions: 'x-pack/plugins/advanced_ui_actions/scripts/storybook.js',
apm: 'x-pack/plugins/apm/scripts/storybook.js',
canvas: 'x-pack/plugins/canvas/scripts/storybook_new.js',
codeeditor: 'src/plugins/kibana_react/public/code_editor/scripts/storybook.ts',
@@ -27,4 +26,5 @@ export const storybookAliases = {
embeddable: 'src/plugins/embeddable/scripts/storybook.js',
infra: 'x-pack/legacy/plugins/infra/scripts/storybook.js',
security_solution: 'x-pack/plugins/security_solution/scripts/storybook.js',
+ ui_actions_enhanced: 'x-pack/plugins/ui_actions_enhanced/scripts/storybook.js',
};
diff --git a/src/legacy/core_plugins/kibana/server/ui_setting_defaults.js b/src/legacy/core_plugins/kibana/server/ui_setting_defaults.js
index 0d1b69778263c..b7af6a73e1bc1 100644
--- a/src/legacy/core_plugins/kibana/server/ui_setting_defaults.js
+++ b/src/legacy/core_plugins/kibana/server/ui_setting_defaults.js
@@ -18,53 +18,32 @@
*/
import moment from 'moment-timezone';
-import numeralLanguages from '@elastic/numeral/languages';
import { i18n } from '@kbn/i18n';
import { schema } from '@kbn/config-schema';
import { isRelativeUrl } from '../../../../core/server';
-import { DEFAULT_QUERY_LANGUAGE } from '../../../../plugins/data/common';
export function getUiSettingDefaults() {
const weekdays = moment.weekdays().slice();
const [defaultWeekday] = weekdays;
- // We add the `en` key manually here, since that's not a real numeral locale, but the
- // default fallback in case the locale is not found.
- const numeralLanguageIds = [
- 'en',
- ...numeralLanguages.map(function (numeralLanguage) {
- return numeralLanguage.id;
- }),
- ];
-
- const luceneQueryLanguageLabel = i18n.translate(
- 'kbn.advancedSettings.searchQueryLanguageLucene',
- {
- defaultMessage: 'Lucene',
- }
- );
-
- const queryLanguageSettingName = i18n.translate('kbn.advancedSettings.searchQueryLanguageTitle', {
- defaultMessage: 'Query language',
- });
-
- const requestPreferenceOptionLabels = {
- sessionId: i18n.translate('kbn.advancedSettings.courier.requestPreferenceSessionId', {
- defaultMessage: 'Session ID',
- }),
- custom: i18n.translate('kbn.advancedSettings.courier.requestPreferenceCustom', {
- defaultMessage: 'Custom',
- }),
- none: i18n.translate('kbn.advancedSettings.courier.requestPreferenceNone', {
- defaultMessage: 'None',
- }),
- };
// wrapped in provider so that a new instance is given to each app/test
return {
buildNum: {
readonly: true,
},
+ 'state:storeInSessionStorage': {
+ name: i18n.translate('kbn.advancedSettings.storeUrlTitle', {
+ defaultMessage: 'Store URLs in session storage',
+ }),
+ value: false,
+ description: i18n.translate('kbn.advancedSettings.storeUrlText', {
+ defaultMessage:
+ 'The URL can sometimes grow to be too large for some browsers to handle. ' +
+ 'To counter-act this we are testing if storing parts of the URL in session storage could help. ' +
+ 'Please let us know how it goes!',
+ }),
+ },
defaultRoute: {
name: i18n.translate('kbn.advancedSettings.defaultRoute.defaultRouteTitle', {
defaultMessage: 'Default route',
@@ -89,83 +68,6 @@ export function getUiSettingDefaults() {
'The route must be a relative URL.',
}),
},
- 'query:queryString:options': {
- name: i18n.translate('kbn.advancedSettings.query.queryStringOptionsTitle', {
- defaultMessage: 'Query string options',
- }),
- value: '{ "analyze_wildcard": true }',
- description: i18n.translate('kbn.advancedSettings.query.queryStringOptionsText', {
- defaultMessage:
- '{optionsLink} for the lucene query string parser. Is only used when "{queryLanguage}" is set ' +
- 'to {luceneLanguage}.',
- description:
- 'Part of composite text: kbn.advancedSettings.query.queryStringOptions.optionsLinkText + ' +
- 'kbn.advancedSettings.query.queryStringOptionsText',
- values: {
- optionsLink:
- '' +
- i18n.translate('kbn.advancedSettings.query.queryStringOptions.optionsLinkText', {
- defaultMessage: 'Options',
- }) +
- '',
- luceneLanguage: luceneQueryLanguageLabel,
- queryLanguage: queryLanguageSettingName,
- },
- }),
- type: 'json',
- },
- 'query:allowLeadingWildcards': {
- name: i18n.translate('kbn.advancedSettings.query.allowWildcardsTitle', {
- defaultMessage: 'Allow leading wildcards in query',
- }),
- value: true,
- description: i18n.translate('kbn.advancedSettings.query.allowWildcardsText', {
- defaultMessage:
- 'When set, * is allowed as the first character in a query clause. ' +
- 'Currently only applies when experimental query features are enabled in the query bar. ' +
- 'To disallow leading wildcards in basic lucene queries, use {queryStringOptionsPattern}.',
- values: {
- queryStringOptionsPattern: 'query:queryString:options',
- },
- }),
- },
- 'search:queryLanguage': {
- name: queryLanguageSettingName,
- value: DEFAULT_QUERY_LANGUAGE,
- description: i18n.translate('kbn.advancedSettings.searchQueryLanguageText', {
- defaultMessage:
- 'Query language used by the query bar. KQL is a new language built specifically for Kibana.',
- }),
- type: 'select',
- options: ['lucene', 'kuery'],
- optionLabels: {
- lucene: luceneQueryLanguageLabel,
- kuery: i18n.translate('kbn.advancedSettings.searchQueryLanguageKql', {
- defaultMessage: 'KQL',
- }),
- },
- },
- 'sort:options': {
- name: i18n.translate('kbn.advancedSettings.sortOptionsTitle', {
- defaultMessage: 'Sort options',
- }),
- value: '{ "unmapped_type": "boolean" }',
- description: i18n.translate('kbn.advancedSettings.sortOptionsText', {
- defaultMessage: '{optionsLink} for the Elasticsearch sort parameter',
- description:
- 'Part of composite text: kbn.advancedSettings.sortOptions.optionsLinkText + ' +
- 'kbn.advancedSettings.sortOptionsText',
- values: {
- optionsLink:
- '' +
- i18n.translate('kbn.advancedSettings.sortOptions.optionsLinkText', {
- defaultMessage: 'Options',
- }) +
- '',
- },
- }),
- type: 'json',
- },
dateFormat: {
name: i18n.translate('kbn.advancedSettings.dateFormatTitle', {
defaultMessage: 'Date format',
@@ -261,160 +163,6 @@ export function getUiSettingDefaults() {
},
}),
},
- defaultIndex: {
- name: i18n.translate('kbn.advancedSettings.defaultIndexTitle', {
- defaultMessage: 'Default index',
- }),
- value: null,
- type: 'string',
- description: i18n.translate('kbn.advancedSettings.defaultIndexText', {
- defaultMessage: 'The index to access if no index is set',
- }),
- },
- 'courier:ignoreFilterIfFieldNotInIndex': {
- name: i18n.translate('kbn.advancedSettings.courier.ignoreFilterTitle', {
- defaultMessage: 'Ignore filter(s)',
- }),
- value: false,
- description: i18n.translate('kbn.advancedSettings.courier.ignoreFilterText', {
- defaultMessage:
- 'This configuration enhances support for dashboards containing visualizations accessing dissimilar indexes. ' +
- 'When disabled, all filters are applied to all visualizations. ' +
- 'When enabled, filter(s) will be ignored for a visualization ' +
- `when the visualization's index does not contain the filtering field.`,
- }),
- category: ['search'],
- },
- 'courier:setRequestPreference': {
- name: i18n.translate('kbn.advancedSettings.courier.requestPreferenceTitle', {
- defaultMessage: 'Request preference',
- }),
- value: 'sessionId',
- options: ['sessionId', 'custom', 'none'],
- optionLabels: requestPreferenceOptionLabels,
- type: 'select',
- description: i18n.translate('kbn.advancedSettings.courier.requestPreferenceText', {
- defaultMessage: `Allows you to set which shards handle your search requests.
-
- - {sessionId}: restricts operations to execute all search requests on the same shards.
- This has the benefit of reusing shard caches across requests.
- - {custom}: allows you to define a your own preference.
- Use courier:customRequestPreference to customize your preference value.
- - {none}: means do not set a preference.
- This might provide better performance because requests can be spread across all shard copies.
- However, results might be inconsistent because different shards might be in different refresh states.
-
`,
- values: {
- sessionId: requestPreferenceOptionLabels.sessionId,
- custom: requestPreferenceOptionLabels.custom,
- none: requestPreferenceOptionLabels.none,
- },
- }),
- category: ['search'],
- },
- 'courier:customRequestPreference': {
- name: i18n.translate('kbn.advancedSettings.courier.customRequestPreferenceTitle', {
- defaultMessage: 'Custom request preference',
- }),
- value: '_local',
- type: 'string',
- description: i18n.translate('kbn.advancedSettings.courier.customRequestPreferenceText', {
- defaultMessage:
- '{requestPreferenceLink} used when {setRequestReferenceSetting} is set to {customSettingValue}.',
- description:
- 'Part of composite text: kbn.advancedSettings.courier.customRequestPreference.requestPreferenceLinkText + ' +
- 'kbn.advancedSettings.courier.customRequestPreferenceText',
- values: {
- setRequestReferenceSetting: 'courier:setRequestPreference',
- customSettingValue: '"custom"',
- requestPreferenceLink:
- '' +
- i18n.translate(
- 'kbn.advancedSettings.courier.customRequestPreference.requestPreferenceLinkText',
- {
- defaultMessage: 'Request Preference',
- }
- ) +
- '',
- },
- }),
- category: ['search'],
- },
- 'courier:maxConcurrentShardRequests': {
- name: i18n.translate('kbn.advancedSettings.courier.maxRequestsTitle', {
- defaultMessage: 'Max Concurrent Shard Requests',
- }),
- value: 0,
- type: 'number',
- description: i18n.translate('kbn.advancedSettings.courier.maxRequestsText', {
- defaultMessage:
- 'Controls the {maxRequestsLink} setting used for _msearch requests sent by Kibana. ' +
- 'Set to 0 to disable this config and use the Elasticsearch default.',
- values: {
- maxRequestsLink: `max_concurrent_shard_requests`,
- },
- }),
- category: ['search'],
- },
- 'courier:batchSearches': {
- name: i18n.translate('kbn.advancedSettings.courier.batchSearchesTitle', {
- defaultMessage: 'Batch concurrent searches',
- }),
- value: false,
- type: 'boolean',
- description: i18n.translate('kbn.advancedSettings.courier.batchSearchesText', {
- defaultMessage: `When disabled, dashboard panels will load individually, and search requests will terminate when users navigate
- away or update the query. When enabled, dashboard panels will load together when all of the data is loaded, and
- searches will not terminate.`,
- }),
- deprecation: {
- message: i18n.translate('kbn.advancedSettings.courier.batchSearchesTextDeprecation', {
- defaultMessage: 'This setting is deprecated and will be removed in Kibana 8.0.',
- }),
- docLinksKey: 'kibanaSearchSettings',
- },
- category: ['search'],
- },
- 'search:includeFrozen': {
- name: 'Search in frozen indices',
- description: `Will include frozen indices in results if enabled. Searching through frozen indices
- might increase the search time.`,
- value: false,
- category: ['search'],
- },
- 'histogram:barTarget': {
- name: i18n.translate('kbn.advancedSettings.histogram.barTargetTitle', {
- defaultMessage: 'Target bars',
- }),
- value: 50,
- description: i18n.translate('kbn.advancedSettings.histogram.barTargetText', {
- defaultMessage:
- 'Attempt to generate around this many bars when using "auto" interval in date histograms',
- }),
- },
- 'histogram:maxBars': {
- name: i18n.translate('kbn.advancedSettings.histogram.maxBarsTitle', {
- defaultMessage: 'Maximum bars',
- }),
- value: 100,
- description: i18n.translate('kbn.advancedSettings.histogram.maxBarsText', {
- defaultMessage:
- 'Never show more than this many bars in date histograms, scale values if needed',
- }),
- },
- 'visualize:enableLabs': {
- name: i18n.translate('kbn.advancedSettings.visualizeEnableLabsTitle', {
- defaultMessage: 'Enable experimental visualizations',
- }),
- value: true,
- description: i18n.translate('kbn.advancedSettings.visualizeEnableLabsText', {
- defaultMessage: `Allows users to create, view, and edit experimental visualizations. If disabled,
- only visualizations that are considered production-ready are available to the user.`,
- }),
- category: ['visualization'],
- },
'visualization:tileMap:maxPrecision': {
name: i18n.translate('kbn.advancedSettings.visualization.tileMap.maxPrecisionTitle', {
defaultMessage: 'Maximum tile map precision',
@@ -493,43 +241,6 @@ export function getUiSettingDefaults() {
}),
category: ['visualization'],
},
- 'csv:separator': {
- name: i18n.translate('kbn.advancedSettings.csv.separatorTitle', {
- defaultMessage: 'CSV separator',
- }),
- value: ',',
- description: i18n.translate('kbn.advancedSettings.csv.separatorText', {
- defaultMessage: 'Separate exported values with this string',
- }),
- },
- 'csv:quoteValues': {
- name: i18n.translate('kbn.advancedSettings.csv.quoteValuesTitle', {
- defaultMessage: 'Quote CSV values',
- }),
- value: true,
- description: i18n.translate('kbn.advancedSettings.csv.quoteValuesText', {
- defaultMessage: 'Should values be quoted in csv exports?',
- }),
- },
- 'history:limit': {
- name: i18n.translate('kbn.advancedSettings.historyLimitTitle', {
- defaultMessage: 'History limit',
- }),
- value: 10,
- description: i18n.translate('kbn.advancedSettings.historyLimitText', {
- defaultMessage:
- 'In fields that have history (e.g. query inputs), show this many recent values',
- }),
- },
- 'shortDots:enable': {
- name: i18n.translate('kbn.advancedSettings.shortenFieldsTitle', {
- defaultMessage: 'Shorten fields',
- }),
- value: false,
- description: i18n.translate('kbn.advancedSettings.shortenFieldsText', {
- defaultMessage: 'Shorten long fields, for example, instead of foo.bar.baz, show f.b.baz',
- }),
- },
'truncate:maxHeight': {
name: i18n.translate('kbn.advancedSettings.maxCellHeightTitle', {
defaultMessage: 'Maximum table cell height',
@@ -540,138 +251,6 @@ export function getUiSettingDefaults() {
'The maximum height that a cell in a table should occupy. Set to 0 to disable truncation',
}),
},
- 'format:defaultTypeMap': {
- name: i18n.translate('kbn.advancedSettings.format.defaultTypeMapTitle', {
- defaultMessage: 'Field type format name',
- }),
- value: `{
- "ip": { "id": "ip", "params": {} },
- "date": { "id": "date", "params": {} },
- "date_nanos": { "id": "date_nanos", "params": {}, "es": true },
- "number": { "id": "number", "params": {} },
- "boolean": { "id": "boolean", "params": {} },
- "_source": { "id": "_source", "params": {} },
- "_default_": { "id": "string", "params": {} }
-}`,
- type: 'json',
- description: i18n.translate('kbn.advancedSettings.format.defaultTypeMapText', {
- defaultMessage:
- 'Map of the format name to use by default for each field type. ' +
- '{defaultFormat} is used if the field type is not mentioned explicitly',
- values: {
- defaultFormat: '"_default_"',
- },
- }),
- },
- 'format:number:defaultPattern': {
- name: i18n.translate('kbn.advancedSettings.format.numberFormatTitle', {
- defaultMessage: 'Number format',
- }),
- value: '0,0.[000]',
- type: 'string',
- description: i18n.translate('kbn.advancedSettings.format.numberFormatText', {
- defaultMessage: 'Default {numeralFormatLink} for the "number" format',
- description:
- 'Part of composite text: kbn.advancedSettings.format.numberFormatText + ' +
- 'kbn.advancedSettings.format.numberFormat.numeralFormatLinkText',
- values: {
- numeralFormatLink:
- '' +
- i18n.translate('kbn.advancedSettings.format.numberFormat.numeralFormatLinkText', {
- defaultMessage: 'numeral format',
- }) +
- '',
- },
- }),
- },
- 'format:bytes:defaultPattern': {
- name: i18n.translate('kbn.advancedSettings.format.bytesFormatTitle', {
- defaultMessage: 'Bytes format',
- }),
- value: '0,0.[0]b',
- type: 'string',
- description: i18n.translate('kbn.advancedSettings.format.bytesFormatText', {
- defaultMessage: 'Default {numeralFormatLink} for the "bytes" format',
- description:
- 'Part of composite text: kbn.advancedSettings.format.bytesFormatText + ' +
- 'kbn.advancedSettings.format.bytesFormat.numeralFormatLinkText',
- values: {
- numeralFormatLink:
- '' +
- i18n.translate('kbn.advancedSettings.format.bytesFormat.numeralFormatLinkText', {
- defaultMessage: 'numeral format',
- }) +
- '',
- },
- }),
- },
- 'format:percent:defaultPattern': {
- name: i18n.translate('kbn.advancedSettings.format.percentFormatTitle', {
- defaultMessage: 'Percent format',
- }),
- value: '0,0.[000]%',
- type: 'string',
- description: i18n.translate('kbn.advancedSettings.format.percentFormatText', {
- defaultMessage: 'Default {numeralFormatLink} for the "percent" format',
- description:
- 'Part of composite text: kbn.advancedSettings.format.percentFormatText + ' +
- 'kbn.advancedSettings.format.percentFormat.numeralFormatLinkText',
- values: {
- numeralFormatLink:
- '' +
- i18n.translate('kbn.advancedSettings.format.percentFormat.numeralFormatLinkText', {
- defaultMessage: 'numeral format',
- }) +
- '',
- },
- }),
- },
- 'format:currency:defaultPattern': {
- name: i18n.translate('kbn.advancedSettings.format.currencyFormatTitle', {
- defaultMessage: 'Currency format',
- }),
- value: '($0,0.[00])',
- type: 'string',
- description: i18n.translate('kbn.advancedSettings.format.currencyFormatText', {
- defaultMessage: 'Default {numeralFormatLink} for the "currency" format',
- description:
- 'Part of composite text: kbn.advancedSettings.format.currencyFormatText + ' +
- 'kbn.advancedSettings.format.currencyFormat.numeralFormatLinkText',
- values: {
- numeralFormatLink:
- '' +
- i18n.translate('kbn.advancedSettings.format.currencyFormat.numeralFormatLinkText', {
- defaultMessage: 'numeral format',
- }) +
- '',
- },
- }),
- },
- 'format:number:defaultLocale': {
- name: i18n.translate('kbn.advancedSettings.format.formattingLocaleTitle', {
- defaultMessage: 'Formatting locale',
- }),
- value: 'en',
- type: 'select',
- options: numeralLanguageIds,
- optionLabels: Object.fromEntries(
- numeralLanguages.map((language) => [language.id, language.name])
- ),
- description: i18n.translate('kbn.advancedSettings.format.formattingLocaleText', {
- defaultMessage: `{numeralLanguageLink} locale`,
- description:
- 'Part of composite text: kbn.advancedSettings.format.formattingLocale.numeralLanguageLinkText + ' +
- 'kbn.advancedSettings.format.formattingLocaleText',
- values: {
- numeralLanguageLink:
- '' +
- i18n.translate('kbn.advancedSettings.format.formattingLocale.numeralLanguageLinkText', {
- defaultMessage: 'Numeral language',
- }) +
- '',
- },
- }),
- },
'timepicker:timeDefaults': {
name: i18n.translate('kbn.advancedSettings.timepicker.timeDefaultsTitle', {
defaultMessage: 'Time filter defaults',
@@ -686,120 +265,6 @@ export function getUiSettingDefaults() {
}),
requiresPageReload: true,
},
- 'timepicker:refreshIntervalDefaults': {
- name: i18n.translate('kbn.advancedSettings.timepicker.refreshIntervalDefaultsTitle', {
- defaultMessage: 'Time filter refresh interval',
- }),
- value: `{
- "pause": false,
- "value": 0
-}`,
- type: 'json',
- description: i18n.translate('kbn.advancedSettings.timepicker.refreshIntervalDefaultsText', {
- defaultMessage: `The timefilter's default refresh interval`,
- }),
- requiresPageReload: true,
- },
- 'timepicker:quickRanges': {
- name: i18n.translate('kbn.advancedSettings.timepicker.quickRangesTitle', {
- defaultMessage: 'Time filter quick ranges',
- }),
- value: JSON.stringify(
- [
- {
- from: 'now/d',
- to: 'now/d',
- display: i18n.translate('kbn.advancedSettings.timepicker.today', {
- defaultMessage: 'Today',
- }),
- },
- {
- from: 'now/w',
- to: 'now/w',
- display: i18n.translate('kbn.advancedSettings.timepicker.thisWeek', {
- defaultMessage: 'This week',
- }),
- },
- {
- from: 'now-15m',
- to: 'now',
- display: i18n.translate('kbn.advancedSettings.timepicker.last15Minutes', {
- defaultMessage: 'Last 15 minutes',
- }),
- },
- {
- from: 'now-30m',
- to: 'now',
- display: i18n.translate('kbn.advancedSettings.timepicker.last30Minutes', {
- defaultMessage: 'Last 30 minutes',
- }),
- },
- {
- from: 'now-1h',
- to: 'now',
- display: i18n.translate('kbn.advancedSettings.timepicker.last1Hour', {
- defaultMessage: 'Last 1 hour',
- }),
- },
- {
- from: 'now-24h',
- to: 'now',
- display: i18n.translate('kbn.advancedSettings.timepicker.last24Hours', {
- defaultMessage: 'Last 24 hours',
- }),
- },
- {
- from: 'now-7d',
- to: 'now',
- display: i18n.translate('kbn.advancedSettings.timepicker.last7Days', {
- defaultMessage: 'Last 7 days',
- }),
- },
- {
- from: 'now-30d',
- to: 'now',
- display: i18n.translate('kbn.advancedSettings.timepicker.last30Days', {
- defaultMessage: 'Last 30 days',
- }),
- },
- {
- from: 'now-90d',
- to: 'now',
- display: i18n.translate('kbn.advancedSettings.timepicker.last90Days', {
- defaultMessage: 'Last 90 days',
- }),
- },
- {
- from: 'now-1y',
- to: 'now',
- display: i18n.translate('kbn.advancedSettings.timepicker.last1Year', {
- defaultMessage: 'Last 1 year',
- }),
- },
- ],
- null,
- 2
- ),
- type: 'json',
- description: i18n.translate('kbn.advancedSettings.timepicker.quickRangesText', {
- defaultMessage:
- 'The list of ranges to show in the Quick section of the time filter. This should be an array of objects, ' +
- 'with each object containing "from", "to" (see {acceptedFormatsLink}), and ' +
- '"display" (the title to be displayed).',
- description:
- 'Part of composite text: kbn.advancedSettings.timepicker.quickRangesText + ' +
- 'kbn.advancedSettings.timepicker.quickRanges.acceptedFormatsLinkText',
- values: {
- acceptedFormatsLink:
- `` +
- i18n.translate('kbn.advancedSettings.timepicker.quickRanges.acceptedFormatsLinkText', {
- defaultMessage: 'accepted formats',
- }) +
- '',
- },
- }),
- },
'theme:darkMode': {
name: i18n.translate('kbn.advancedSettings.darkModeTitle', {
defaultMessage: 'Dark mode',
@@ -822,26 +287,6 @@ export function getUiSettingDefaults() {
}),
requiresPageReload: true,
},
- 'filters:pinnedByDefault': {
- name: i18n.translate('kbn.advancedSettings.pinFiltersTitle', {
- defaultMessage: 'Pin filters by default',
- }),
- value: false,
- description: i18n.translate('kbn.advancedSettings.pinFiltersText', {
- defaultMessage: 'Whether the filters should have a global state (be pinned) by default',
- }),
- },
- 'filterEditor:suggestValues': {
- name: i18n.translate('kbn.advancedSettings.suggestFilterValuesTitle', {
- defaultMessage: 'Filter editor suggest values',
- description: '"Filter editor" refers to the UI you create filters in.',
- }),
- value: true,
- description: i18n.translate('kbn.advancedSettings.suggestFilterValuesText', {
- defaultMessage:
- 'Set this property to false to prevent the filter editor from suggesting values for fields.',
- }),
- },
'notifications:banner': {
name: i18n.translate('kbn.advancedSettings.notifications.bannerTitle', {
defaultMessage: 'Custom banner notification',
@@ -930,28 +375,6 @@ export function getUiSettingDefaults() {
type: 'number',
category: ['notifications'],
},
- 'state:storeInSessionStorage': {
- name: i18n.translate('kbn.advancedSettings.storeUrlTitle', {
- defaultMessage: 'Store URLs in session storage',
- }),
- value: false,
- description: i18n.translate('kbn.advancedSettings.storeUrlText', {
- defaultMessage:
- 'The URL can sometimes grow to be too large for some browsers to handle. ' +
- 'To counter-act this we are testing if storing parts of the URL in session storage could help. ' +
- 'Please let us know how it goes!',
- }),
- },
- 'indexPattern:placeholder': {
- name: i18n.translate('kbn.advancedSettings.indexPatternPlaceholderTitle', {
- defaultMessage: 'Index pattern placeholder',
- }),
- value: '',
- description: i18n.translate('kbn.advancedSettings.indexPatternPlaceholderText', {
- defaultMessage:
- 'The placeholder for the "Index pattern name" field in "Management > Index Patterns > Create Index Pattern".',
- }),
- },
'accessibility:disableAnimations': {
name: i18n.translate('kbn.advancedSettings.disableAnimationsTitle', {
defaultMessage: 'Disable Animations',
diff --git a/src/legacy/core_plugins/timelion/public/directives/saved_object_finder.js b/src/legacy/core_plugins/timelion/public/directives/saved_object_finder.js
index 08a347fbf7295..879fab206b99d 100644
--- a/src/legacy/core_plugins/timelion/public/directives/saved_object_finder.js
+++ b/src/legacy/core_plugins/timelion/public/directives/saved_object_finder.js
@@ -29,6 +29,7 @@ import {
PaginateDirectiveProvider,
} from '../../../../../plugins/kibana_legacy/public';
import { PER_PAGE_SETTING } from '../../../../../plugins/saved_objects/common';
+import { VISUALIZE_ENABLE_LABS_SETTING } from '../../../../../plugins/visualizations/public';
const module = uiModules.get('kibana');
@@ -294,7 +295,7 @@ module
prevSearch = filter;
- const isLabsEnabled = config.get('visualize:enableLabs');
+ const isLabsEnabled = config.get(VISUALIZE_ENABLE_LABS_SETTING);
self.service.find(filter).then(function (hits) {
hits.hits = hits.hits.filter(
(hit) => isLabsEnabled || _.get(hit, 'type.stage') !== 'experimental'
diff --git a/src/legacy/server/saved_objects/saved_objects_mixin.js b/src/legacy/server/saved_objects/saved_objects_mixin.js
index 7d84c27bd1ef0..63839b9d0f1d7 100644
--- a/src/legacy/server/saved_objects/saved_objects_mixin.js
+++ b/src/legacy/server/saved_objects/saved_objects_mixin.js
@@ -27,14 +27,13 @@ import {
importSavedObjectsFromStream,
resolveSavedObjectsImportErrors,
} from '../../../core/server/saved_objects';
-import { getRootPropertiesObjects } from '../../../core/server/saved_objects/mappings';
import { convertTypesToLegacySchema } from '../../../core/server/saved_objects/utils';
export function savedObjectsMixin(kbnServer, server) {
const migrator = kbnServer.newPlatform.__internals.kibanaMigrator;
const typeRegistry = kbnServer.newPlatform.start.core.savedObjects.getTypeRegistry();
const mappings = migrator.getActiveMappings();
- const allTypes = Object.keys(getRootPropertiesObjects(mappings));
+ const allTypes = typeRegistry.getAllTypes().map((t) => t.name);
const schema = new SavedObjectsSchema(convertTypesToLegacySchema(typeRegistry.getAllTypes()));
const visibleTypes = allTypes.filter((type) => !schema.isHiddenType(type));
diff --git a/src/legacy/ui/public/new_platform/new_platform.karma_mock.js b/src/legacy/ui/public/new_platform/new_platform.karma_mock.js
index 229bfb1978a4e..d98770842a0f0 100644
--- a/src/legacy/ui/public/new_platform/new_platform.karma_mock.js
+++ b/src/legacy/ui/public/new_platform/new_platform.karma_mock.js
@@ -28,6 +28,11 @@ import {
// eslint-disable-next-line @kbn/eslint/no-restricted-paths
} from '../../../../../src/plugins/data/public/search/aggs';
import { ComponentRegistry } from '../../../../../src/plugins/advanced_settings/public/';
+import { UI_SETTINGS } from '../../../../../src/plugins/data/public/';
+import {
+ CSV_SEPARATOR_SETTING,
+ CSV_QUOTE_VALUES_SETTING,
+} from '../../../../../src/plugins/share/public';
const mockObservable = () => {
return {
@@ -49,18 +54,31 @@ let isTimeRangeSelectorEnabled = true;
let isAutoRefreshSelectorEnabled = true;
export const mockUiSettings = {
- get: (item) => {
- return mockUiSettings[item];
+ get: (item, defaultValue) => {
+ const defaultValues = {
+ dateFormat: 'MMM D, YYYY @ HH:mm:ss.SSS',
+ 'dateFormat:tz': 'UTC',
+ [UI_SETTINGS.SHORT_DOTS_ENABLE]: true,
+ [UI_SETTINGS.COURIER_IGNORE_FILTER_IF_FIELD_NOT_IN_INDEX]: true,
+ [UI_SETTINGS.QUERY_ALLOW_LEADING_WILDCARDS]: true,
+ [UI_SETTINGS.QUERY_STRING_OPTIONS]: {},
+ [UI_SETTINGS.FORMAT_CURRENCY_DEFAULT_PATTERN]: '($0,0.[00])',
+ [UI_SETTINGS.FORMAT_NUMBER_DEFAULT_PATTERN]: '0,0.[000]',
+ [UI_SETTINGS.FORMAT_PERCENT_DEFAULT_PATTERN]: '0,0.[000]%',
+ [UI_SETTINGS.FORMAT_NUMBER_DEFAULT_LOCALE]: 'en',
+ [UI_SETTINGS.FORMAT_DEFAULT_TYPE_MAP]: {},
+ [CSV_SEPARATOR_SETTING]: ',',
+ [CSV_QUOTE_VALUES_SETTING]: true,
+ [UI_SETTINGS.SEARCH_QUERY_LANGUAGE]: 'kuery',
+ 'state:storeInSessionStorage': false,
+ };
+
+ return defaultValues[item] || defaultValue;
},
getUpdate$: () => ({
subscribe: sinon.fake(),
}),
isDefault: sinon.fake(),
- 'query:allowLeadingWildcards': true,
- 'query:queryString:options': {},
- 'courier:ignoreFilterIfFieldNotInIndex': true,
- 'dateFormat:tz': 'Browser',
- 'format:defaultTypeMap': {},
};
const mockCoreSetup = {
@@ -236,6 +254,9 @@ export const npSetup = {
},
share: {
register: () => {},
+ urlGenerators: {
+ registerUrlGenerator: () => {},
+ },
},
devTools: {
register: () => {},
@@ -524,6 +545,8 @@ export function __setup__(coreSetup) {
// bootstrap an LP plugin outside of tests)
npSetup.core.application.register = () => {};
+ npSetup.core.uiSettings.get = mockUiSettings.get;
+
// Services that need to be set in the legacy platform since the legacy data
// & vis plugins which previously provided them have been removed.
setSetupServices(npSetup);
@@ -532,6 +555,8 @@ export function __setup__(coreSetup) {
export function __start__(coreStart) {
npStart.core = coreStart;
+ npStart.core.uiSettings.get = mockUiSettings.get;
+
// Services that need to be set in the legacy platform since the legacy data
// & vis plugins which previously provided them have been removed.
setStartServices(npStart);
diff --git a/src/legacy/ui/public/timefilter/setup_router.ts b/src/legacy/ui/public/timefilter/setup_router.ts
index a7492e538b3af..7c25c6aa3166e 100644
--- a/src/legacy/ui/public/timefilter/setup_router.ts
+++ b/src/legacy/ui/public/timefilter/setup_router.ts
@@ -21,10 +21,15 @@ import _ from 'lodash';
import { IScope } from 'angular';
import moment from 'moment';
import chrome from 'ui/chrome';
-import { RefreshInterval, TimeRange, TimefilterContract } from 'src/plugins/data/public';
import { Subscription } from 'rxjs';
import { fatalError } from 'ui/notify/fatal_error';
import { subscribeWithScope } from '../../../../plugins/kibana_legacy/public';
+import {
+ RefreshInterval,
+ TimeRange,
+ TimefilterContract,
+ UI_SETTINGS,
+} from '../../../../plugins/data/public';
// TODO
// remove everything underneath once globalState is no longer an angular service
@@ -38,7 +43,7 @@ export function getTimefilterConfig() {
const settings = chrome.getUiSettingsClient();
return {
timeDefaults: settings.get('timepicker:timeDefaults'),
- refreshIntervalDefaults: settings.get('timepicker:refreshIntervalDefaults'),
+ refreshIntervalDefaults: settings.get(UI_SETTINGS.TIMEPICKER_REFRESH_INTERVAL_DEFAULTS),
};
}
diff --git a/src/plugins/charts/public/services/theme/theme.ts b/src/plugins/charts/public/services/theme/theme.ts
index 166e1c539688a..e1e71573caa3a 100644
--- a/src/plugins/charts/public/services/theme/theme.ts
+++ b/src/plugins/charts/public/services/theme/theme.ts
@@ -42,8 +42,10 @@ export class ThemeService {
/** A React hook for consuming the charts theme */
public useChartsTheme = () => {
+ /* eslint-disable-next-line react-hooks/rules-of-hooks */
const [value, update] = useState(this.chartsDefaultTheme);
+ /* eslint-disable-next-line react-hooks/rules-of-hooks */
useEffect(() => {
const s = this.chartsTheme$.subscribe(update);
return () => s.unsubscribe();
diff --git a/src/plugins/console/public/application/containers/editor/editor.tsx b/src/plugins/console/public/application/containers/editor/editor.tsx
index 0bfe837f2cd90..66d3cbab20ac5 100644
--- a/src/plugins/console/public/application/containers/editor/editor.tsx
+++ b/src/plugins/console/public/application/containers/editor/editor.tsx
@@ -47,6 +47,7 @@ export const Editor = memo(({ loading }: Props) => {
INITIAL_PANEL_WIDTH,
]);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const onPanelWidthChange = useCallback(
debounce((widths: number[]) => {
storage.set(StorageKeys.WIDTH, widths);
diff --git a/src/plugins/console/public/application/hooks/use_save_current_text_object.ts b/src/plugins/console/public/application/hooks/use_save_current_text_object.ts
index ab517ba1bfdd1..1bd1a7fb09bd1 100644
--- a/src/plugins/console/public/application/hooks/use_save_current_text_object.ts
+++ b/src/plugins/console/public/application/hooks/use_save_current_text_object.ts
@@ -32,6 +32,7 @@ export const useSaveCurrentTextObject = () => {
const { currentTextObject } = useEditorReadContext();
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
return useCallback(
throttle(
(text: string) => {
diff --git a/src/plugins/dashboard/public/application/dashboard_app_controller.tsx b/src/plugins/dashboard/public/application/dashboard_app_controller.tsx
index 8dd0a766da97b..a59d1e8c546d4 100644
--- a/src/plugins/dashboard/public/application/dashboard_app_controller.tsx
+++ b/src/plugins/dashboard/public/application/dashboard_app_controller.tsx
@@ -41,6 +41,7 @@ import {
QueryState,
SavedQuery,
syncQueryStateWithUrl,
+ UI_SETTINGS,
} from '../../../data/public';
import { getSavedObjectFinder, SaveResult, showSaveModal } from '../../../saved_objects/public';
@@ -430,7 +431,8 @@ export class DashboardAppController {
dashboardStateManager.getQuery() || {
query: '',
language:
- localStorage.get('kibana.userQueryLanguage') || uiSettings.get('search:queryLanguage'),
+ localStorage.get('kibana.userQueryLanguage') ||
+ uiSettings.get(UI_SETTINGS.SEARCH_QUERY_LANGUAGE),
},
queryFilter.getFilters()
);
diff --git a/src/plugins/dashboard/public/application/embeddable/panel/dashboard_panel_placement.ts b/src/plugins/dashboard/public/application/embeddable/panel/dashboard_panel_placement.ts
index 62a39ee898d3a..1b060c186db97 100644
--- a/src/plugins/dashboard/public/application/embeddable/panel/dashboard_panel_placement.ts
+++ b/src/plugins/dashboard/public/application/embeddable/panel/dashboard_panel_placement.ts
@@ -108,16 +108,32 @@ interface IplacementDirection {
fits: boolean;
}
+/**
+ * Compare grid data by an ending y coordinate. Grid data with a smaller ending y coordinate
+ * comes first.
+ * @param a
+ * @param b
+ */
+function comparePanels(a: GridData, b: GridData): number {
+ if (a.y + a.h < b.y + b.h) {
+ return -1;
+ }
+ if (a.y + a.h > b.y + b.h) {
+ return 1;
+ }
+ // a.y === b.y
+ if (a.x + a.w <= b.x + b.w) {
+ return -1;
+ }
+ return 1;
+}
+
export function placePanelBeside({
width,
height,
currentPanels,
placeBesideId,
}: IPanelPlacementBesideArgs): Omit {
- // const clonedPanels = _.cloneDeep(currentPanels);
- if (!placeBesideId) {
- throw new Error('Place beside method called without placeBesideId');
- }
const panelToPlaceBeside = currentPanels[placeBesideId];
if (!panelToPlaceBeside) {
throw new PanelNotFoundError();
@@ -130,10 +146,11 @@ export function placePanelBeside({
const possiblePlacementDirections: IplacementDirection[] = [
{ grid: { x: beside.x + beside.w, y: beside.y, w: width, h: height }, fits: true }, // right
- { grid: { x: beside.x - width, y: beside.y, w: width, h: height }, fits: true }, // left
+ { grid: { x: 0, y: beside.y + beside.h, w: width, h: height }, fits: true }, // left side of next row
{ grid: { x: beside.x, y: beside.y + beside.h, w: width, h: height }, fits: true }, // bottom
];
+ // first, we check if there is place around the current panel
for (const direction of possiblePlacementDirections) {
if (
direction.grid.x >= 0 &&
@@ -156,13 +173,32 @@ export function placePanelBeside({
}
}
// if we get here that means there is no blank space around the panel we are placing beside. This means it's time to mess up the dashboard's groove. Fun!
- const [, , bottomPlacement] = possiblePlacementDirections;
- for (const currentPanelGrid of otherPanels) {
- if (bottomPlacement.grid.y <= currentPanelGrid.y) {
- const movedPanel = _.cloneDeep(currentPanels[currentPanelGrid.i]);
- movedPanel.gridData.y = movedPanel.gridData.y + bottomPlacement.grid.h;
- currentPanels[currentPanelGrid.i] = movedPanel;
+ /**
+ * 1. sort the panels in the grid
+ * 2. place the cloned panel to the bottom
+ * 3. reposition the panels after the cloned panel in the grid
+ */
+ const grid = otherPanels.sort(comparePanels);
+
+ let position = 0;
+ for (position; position < grid.length; position++) {
+ if (beside.i === grid[position].i) {
+ break;
}
}
+ const bottomPlacement = possiblePlacementDirections[2];
+ // place to the bottom and move all other panels
+ let originalPositionInTheGrid = grid[position + 1].i;
+ const diff =
+ bottomPlacement.grid.y +
+ bottomPlacement.grid.h -
+ currentPanels[originalPositionInTheGrid].gridData.y;
+
+ for (let j = position + 1; j < grid.length; j++) {
+ originalPositionInTheGrid = grid[j].i;
+ const movedPanel = _.cloneDeep(currentPanels[originalPositionInTheGrid]);
+ movedPanel.gridData.y = movedPanel.gridData.y + diff;
+ currentPanels[originalPositionInTheGrid] = movedPanel;
+ }
return bottomPlacement.grid;
}
diff --git a/src/plugins/data/common/constants.ts b/src/plugins/data/common/constants.ts
index 66a96e3e6e129..8ec72dc1f9a74 100644
--- a/src/plugins/data/common/constants.ts
+++ b/src/plugins/data/common/constants.ts
@@ -18,5 +18,33 @@
*/
export const DEFAULT_QUERY_LANGUAGE = 'kuery';
-export const META_FIELDS_SETTING = 'metaFields';
-export const DOC_HIGHLIGHT_SETTING = 'doc_table:highlight';
+
+export const UI_SETTINGS = {
+ META_FIELDS: 'metaFields',
+ DOC_HIGHLIGHT: 'doc_table:highlight',
+ QUERY_STRING_OPTIONS: 'query:queryString:options',
+ QUERY_ALLOW_LEADING_WILDCARDS: 'query:allowLeadingWildcards',
+ SEARCH_QUERY_LANGUAGE: 'search:queryLanguage',
+ SORT_OPTIONS: 'sort:options',
+ COURIER_IGNORE_FILTER_IF_FIELD_NOT_IN_INDEX: 'courier:ignoreFilterIfFieldNotInIndex',
+ COURIER_SET_REQUEST_PREFERENCE: 'courier:setRequestPreference',
+ COURIER_CUSTOM_REQUEST_PREFERENCE: 'courier:customRequestPreference',
+ COURIER_MAX_CONCURRENT_SHARD_REQUESTS: 'courier:maxConcurrentShardRequests',
+ COURIER_BATCH_SEARCHES: 'courier:batchSearches',
+ SEARCH_INCLUDE_FROZEN: 'search:includeFrozen',
+ HISTOGRAM_BAR_TARGET: 'histogram:barTarget',
+ HISTOGRAM_MAX_BARS: 'histogram:maxBars',
+ HISTORY_LIMIT: 'history:limit',
+ SHORT_DOTS_ENABLE: 'shortDots:enable',
+ FORMAT_DEFAULT_TYPE_MAP: 'format:defaultTypeMap',
+ FORMAT_NUMBER_DEFAULT_PATTERN: 'format:number:defaultPattern',
+ FORMAT_PERCENT_DEFAULT_PATTERN: 'format:percent:defaultPattern',
+ FORMAT_BYTES_DEFAULT_PATTERN: 'format:bytes:defaultPattern',
+ FORMAT_CURRENCY_DEFAULT_PATTERN: 'format:currency:defaultPattern',
+ FORMAT_NUMBER_DEFAULT_LOCALE: 'format:number:defaultLocale',
+ TIMEPICKER_REFRESH_INTERVAL_DEFAULTS: 'timepicker:refreshIntervalDefaults',
+ TIMEPICKER_QUICK_RANGES: 'timepicker:quickRanges',
+ INDEXPATTERN_PLACEHOLDER: 'indexPattern:placeholder',
+ FILTERS_PINNED_BY_DEFAULT: 'filters:pinnedByDefault',
+ FILTERS_EDITOR_SUGGEST_VALUES: 'filterEditor:suggestValues',
+};
diff --git a/src/plugins/data/common/es_query/es_query/get_es_query_config.test.ts b/src/plugins/data/common/es_query/es_query/get_es_query_config.test.ts
index d146d81973d0d..5fa3c67dea400 100644
--- a/src/plugins/data/common/es_query/es_query/get_es_query_config.test.ts
+++ b/src/plugins/data/common/es_query/es_query/get_es_query_config.test.ts
@@ -19,18 +19,19 @@
import { get } from 'lodash';
import { getEsQueryConfig } from './get_es_query_config';
import { IUiSettingsClient } from 'kibana/public';
+import { UI_SETTINGS } from '../../';
const config = ({
get(item: string) {
return get(config, item);
},
- 'query:allowLeadingWildcards': {
+ [UI_SETTINGS.QUERY_ALLOW_LEADING_WILDCARDS]: {
allowLeadingWildcards: true,
},
- 'query:queryString:options': {
+ [UI_SETTINGS.QUERY_STRING_OPTIONS]: {
queryStringOptions: {},
},
- 'courier:ignoreFilterIfFieldNotInIndex': {
+ [UI_SETTINGS.COURIER_IGNORE_FILTER_IF_FIELD_NOT_IN_INDEX]: {
ignoreFilterIfFieldNotInIndex: true,
},
'dateFormat:tz': {
diff --git a/src/plugins/data/common/es_query/es_query/get_es_query_config.ts b/src/plugins/data/common/es_query/es_query/get_es_query_config.ts
index 0a82cf03bdb44..ff8fc5b11b26e 100644
--- a/src/plugins/data/common/es_query/es_query/get_es_query_config.ts
+++ b/src/plugins/data/common/es_query/es_query/get_es_query_config.ts
@@ -18,15 +18,18 @@
*/
import { EsQueryConfig } from './build_es_query';
+import { UI_SETTINGS } from '../../';
interface KibanaConfig {
get(key: string): T;
}
export function getEsQueryConfig(config: KibanaConfig) {
- const allowLeadingWildcards = config.get('query:allowLeadingWildcards');
- const queryStringOptions = config.get('query:queryString:options');
- const ignoreFilterIfFieldNotInIndex = config.get('courier:ignoreFilterIfFieldNotInIndex');
+ const allowLeadingWildcards = config.get(UI_SETTINGS.QUERY_ALLOW_LEADING_WILDCARDS);
+ const queryStringOptions = config.get(UI_SETTINGS.QUERY_STRING_OPTIONS);
+ const ignoreFilterIfFieldNotInIndex = config.get(
+ UI_SETTINGS.COURIER_IGNORE_FILTER_IF_FIELD_NOT_IN_INDEX
+ );
const dateFormatTZ = config.get('dateFormat:tz');
return {
diff --git a/src/plugins/data/common/field_formats/converters/bytes.test.ts b/src/plugins/data/common/field_formats/converters/bytes.test.ts
index 8dad9fc206e72..e0c26170c2907 100644
--- a/src/plugins/data/common/field_formats/converters/bytes.test.ts
+++ b/src/plugins/data/common/field_formats/converters/bytes.test.ts
@@ -18,11 +18,12 @@
*/
import { BytesFormat } from './bytes';
+import { UI_SETTINGS } from '../../constants';
describe('BytesFormat', () => {
const config: Record = {};
- config['format:bytes:defaultPattern'] = '0,0.[000]b';
+ config[UI_SETTINGS.FORMAT_BYTES_DEFAULT_PATTERN] = '0,0.[000]b';
const getConfig = (key: string) => config[key];
diff --git a/src/plugins/data/common/field_formats/converters/number.test.ts b/src/plugins/data/common/field_formats/converters/number.test.ts
index fe36d5b12e873..31c5ea41bf5af 100644
--- a/src/plugins/data/common/field_formats/converters/number.test.ts
+++ b/src/plugins/data/common/field_formats/converters/number.test.ts
@@ -18,11 +18,12 @@
*/
import { NumberFormat } from './number';
+import { UI_SETTINGS } from '../../constants';
describe('NumberFormat', () => {
const config: Record = {};
- config['format:number:defaultPattern'] = '0,0.[000]';
+ config[UI_SETTINGS.FORMAT_NUMBER_DEFAULT_PATTERN] = '0,0.[000]';
const getConfig = (key: string) => config[key];
diff --git a/src/plugins/data/common/field_formats/converters/numeral.ts b/src/plugins/data/common/field_formats/converters/numeral.ts
index a483b5a1e4f99..1d844bca3f89a 100644
--- a/src/plugins/data/common/field_formats/converters/numeral.ts
+++ b/src/plugins/data/common/field_formats/converters/numeral.ts
@@ -24,6 +24,7 @@ import numeralLanguages from '@elastic/numeral/languages';
import { KBN_FIELD_TYPES } from '../../kbn_field_types/types';
import { FieldFormat } from '../field_format';
import { TextContextTypeConvert } from '../types';
+import { UI_SETTINGS } from '../../constants';
const numeralInst = numeral();
@@ -51,7 +52,8 @@ export abstract class NumeralFormat extends FieldFormat {
if (isNaN(val)) return '';
const previousLocale = numeral.language();
- const defaultLocale = (this.getConfig && this.getConfig('format:number:defaultLocale')) || 'en';
+ const defaultLocale =
+ (this.getConfig && this.getConfig(UI_SETTINGS.FORMAT_NUMBER_DEFAULT_LOCALE)) || 'en';
numeral.language(defaultLocale);
const formatted = numeralInst.set(val).format(this.param('pattern'));
diff --git a/src/plugins/data/common/field_formats/converters/percent.test.ts b/src/plugins/data/common/field_formats/converters/percent.test.ts
index 8b26564814af3..754234bdeb78b 100644
--- a/src/plugins/data/common/field_formats/converters/percent.test.ts
+++ b/src/plugins/data/common/field_formats/converters/percent.test.ts
@@ -18,11 +18,12 @@
*/
import { PercentFormat } from './percent';
+import { UI_SETTINGS } from '../../constants';
describe('PercentFormat', () => {
const config: Record = {};
- config['format:percent:defaultPattern'] = '0,0.[000]%';
+ config[UI_SETTINGS.FORMAT_PERCENT_DEFAULT_PATTERN] = '0,0.[000]%';
const getConfig = (key: string) => config[key];
diff --git a/src/plugins/data/common/field_formats/converters/percent.ts b/src/plugins/data/common/field_formats/converters/percent.ts
index ef3b0a1503a98..ecf9c7d19108d 100644
--- a/src/plugins/data/common/field_formats/converters/percent.ts
+++ b/src/plugins/data/common/field_formats/converters/percent.ts
@@ -20,6 +20,7 @@
import { i18n } from '@kbn/i18n';
import { NumeralFormat } from './numeral';
import { TextContextTypeConvert, FIELD_FORMAT_IDS } from '../types';
+import { UI_SETTINGS } from '../../constants';
export class PercentFormat extends NumeralFormat {
static id = FIELD_FORMAT_IDS.PERCENT;
@@ -32,7 +33,7 @@ export class PercentFormat extends NumeralFormat {
allowsNumericalAggregations = true;
getParamDefaults = () => ({
- pattern: this.getConfig!('format:percent:defaultPattern'),
+ pattern: this.getConfig!(UI_SETTINGS.FORMAT_PERCENT_DEFAULT_PATTERN),
fractional: true,
});
diff --git a/src/plugins/data/common/field_formats/converters/source.ts b/src/plugins/data/common/field_formats/converters/source.ts
index 9e50d47bb2624..f00261e00971a 100644
--- a/src/plugins/data/common/field_formats/converters/source.ts
+++ b/src/plugins/data/common/field_formats/converters/source.ts
@@ -22,6 +22,7 @@ import { shortenDottedString } from '../../utils';
import { KBN_FIELD_TYPES } from '../../kbn_field_types/types';
import { FieldFormat } from '../field_format';
import { TextContextTypeConvert, HtmlContextTypeConvert, FIELD_FORMAT_IDS } from '../types';
+import { UI_SETTINGS } from '../../';
/**
* Remove all of the whitespace between html tags
@@ -71,7 +72,7 @@ export class SourceFormat extends FieldFormat {
const formatted = field.indexPattern.formatHit(hit);
const highlightPairs: any[] = [];
const sourcePairs: any[] = [];
- const isShortDots = this.getConfig!('shortDots:enable');
+ const isShortDots = this.getConfig!(UI_SETTINGS.SHORT_DOTS_ENABLE);
keys(formatted).forEach((key) => {
const pairs = highlights[key] ? highlightPairs : sourcePairs;
diff --git a/src/plugins/data/common/field_formats/field_formats_registry.ts b/src/plugins/data/common/field_formats/field_formats_registry.ts
index c04a371066de3..9325485bce75d 100644
--- a/src/plugins/data/common/field_formats/field_formats_registry.ts
+++ b/src/plugins/data/common/field_formats/field_formats_registry.ts
@@ -33,6 +33,7 @@ import { baseFormatters } from './constants/base_formatters';
import { FieldFormat } from './field_format';
import { SerializedFieldFormat } from '../../../expressions/common/types';
import { ES_FIELD_TYPES, KBN_FIELD_TYPES } from '../types';
+import { UI_SETTINGS } from '../';
export class FieldFormatsRegistry {
protected fieldFormats: Map = new Map();
@@ -49,7 +50,7 @@ export class FieldFormatsRegistry {
metaParamsOptions: Record = {},
defaultFieldConverters: FieldFormatInstanceType[] = baseFormatters
) {
- const defaultTypeMap = getConfig('format:defaultTypeMap');
+ const defaultTypeMap = getConfig(UI_SETTINGS.FORMAT_DEFAULT_TYPE_MAP);
this.register(defaultFieldConverters);
this.parseDefaultTypeMap(defaultTypeMap);
this.getConfig = getConfig;
diff --git a/src/plugins/data/public/autocomplete/providers/value_suggestion_provider.ts b/src/plugins/data/public/autocomplete/providers/value_suggestion_provider.ts
index ef7a0e8c3a5ad..a6a45a26f06b3 100644
--- a/src/plugins/data/public/autocomplete/providers/value_suggestion_provider.ts
+++ b/src/plugins/data/public/autocomplete/providers/value_suggestion_provider.ts
@@ -19,7 +19,7 @@
import { memoize } from 'lodash';
import { CoreSetup } from 'src/core/public';
-import { IIndexPattern, IFieldType } from '../../../common';
+import { IIndexPattern, IFieldType, UI_SETTINGS } from '../../../common';
function resolver(title: string, field: IFieldType, query: string, boolFilter: any) {
// Only cache results for a minute
@@ -58,7 +58,9 @@ export const setupValueSuggestionProvider = (core: CoreSetup): ValueSuggestionsG
boolFilter,
signal,
}: ValueSuggestionsGetFnArgs): Promise => {
- const shouldSuggestValues = core!.uiSettings.get('filterEditor:suggestValues');
+ const shouldSuggestValues = core!.uiSettings.get(
+ UI_SETTINGS.FILTERS_EDITOR_SUGGEST_VALUES
+ );
const { title } = indexPattern;
if (field.type === 'boolean') {
diff --git a/src/plugins/data/public/field_formats/field_formats_service.ts b/src/plugins/data/public/field_formats/field_formats_service.ts
index 22c7e90c06130..3ddc8d0b68a5b 100644
--- a/src/plugins/data/public/field_formats/field_formats_service.ts
+++ b/src/plugins/data/public/field_formats/field_formats_service.ts
@@ -18,7 +18,7 @@
*/
import { CoreSetup } from 'src/core/public';
-import { FieldFormatsRegistry } from '../../common';
+import { FieldFormatsRegistry, UI_SETTINGS } from '../../common';
import { deserializeFieldFormat } from './utils/deserialize';
import { FormatFactory } from '../../common/field_formats/utils';
import { baseFormattersPublic } from './constants';
@@ -28,7 +28,7 @@ export class FieldFormatsService {
public setup(core: CoreSetup) {
core.uiSettings.getUpdate$().subscribe(({ key, newValue }) => {
- if (key === 'format:defaultTypeMap') {
+ if (key === UI_SETTINGS.FORMAT_DEFAULT_TYPE_MAP) {
this.fieldFormatsRegistry.parseDefaultTypeMap(newValue);
}
});
diff --git a/src/plugins/data/public/index.ts b/src/plugins/data/public/index.ts
index 0c946fc6e1858..5540039323756 100644
--- a/src/plugins/data/public/index.ts
+++ b/src/plugins/data/public/index.ts
@@ -17,8 +17,6 @@
* under the License.
*/
-import './index.scss';
-
import { PluginInitializerContext } from '../../../core/public';
import { ConfigSchema } from '../config';
@@ -267,6 +265,7 @@ export {
ES_FIELD_TYPES,
KBN_FIELD_TYPES,
IndexPatternAttributes,
+ UI_SETTINGS,
} from '../common';
/*
diff --git a/src/plugins/data/public/index_patterns/index_patterns/index_pattern.ts b/src/plugins/data/public/index_patterns/index_patterns/index_pattern.ts
index 43404c32cb3d4..3d54009d0fdca 100644
--- a/src/plugins/data/public/index_patterns/index_patterns/index_pattern.ts
+++ b/src/plugins/data/public/index_patterns/index_patterns/index_pattern.ts
@@ -33,7 +33,7 @@ import {
KBN_FIELD_TYPES,
IIndexPattern,
IFieldType,
- META_FIELDS_SETTING,
+ UI_SETTINGS,
} from '../../../common';
import { findByTitle } from '../utils';
import { IndexPatternMissingIndices } from '../lib';
@@ -108,8 +108,8 @@ export class IndexPattern implements IIndexPattern {
// which cause problems when being consumed from angular
this.getConfig = getConfig;
- this.shortDotsEnable = this.getConfig('shortDots:enable');
- this.metaFields = this.getConfig(META_FIELDS_SETTING);
+ this.shortDotsEnable = this.getConfig(UI_SETTINGS.SHORT_DOTS_ENABLE);
+ this.metaFields = this.getConfig(UI_SETTINGS.META_FIELDS);
this.createFieldList = getIndexPatternFieldListCreator({
fieldFormats: getFieldFormats(),
@@ -117,8 +117,12 @@ export class IndexPattern implements IIndexPattern {
});
this.fields = this.createFieldList(this, [], this.shortDotsEnable);
- this.fieldsFetcher = createFieldsFetcher(this, apiClient, this.getConfig(META_FIELDS_SETTING));
- this.flattenHit = flattenHitWrapper(this, this.getConfig(META_FIELDS_SETTING));
+ this.fieldsFetcher = createFieldsFetcher(
+ this,
+ apiClient,
+ this.getConfig(UI_SETTINGS.META_FIELDS)
+ );
+ this.flattenHit = flattenHitWrapper(this, this.getConfig(UI_SETTINGS.META_FIELDS));
this.formatHit = formatHitProvider(
this,
getFieldFormats().getDefaultInstance(KBN_FIELD_TYPES.STRING)
diff --git a/src/plugins/data/public/plugin.ts b/src/plugins/data/public/plugin.ts
index 66e8d5a6e739a..06b5cbdfdfdfb 100644
--- a/src/plugins/data/public/plugin.ts
+++ b/src/plugins/data/public/plugin.ts
@@ -17,6 +17,8 @@
* under the License.
*/
+import './index.scss';
+
import {
PluginInitializerContext,
CoreSetup,
diff --git a/src/plugins/data/public/public.api.md b/src/plugins/data/public/public.api.md
index ebb4e9d583bc0..dcdb528ac8b7d 100644
--- a/src/plugins/data/public/public.api.md
+++ b/src/plugins/data/public/public.api.md
@@ -1792,6 +1792,39 @@ export interface TimeRange {
// @public
export type TSearchStrategyProvider = (context: ISearchContext) => ISearchStrategy;
+// Warning: (ae-missing-release-tag) "UI_SETTINGS" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
+//
+// @public (undocumented)
+export const UI_SETTINGS: {
+ META_FIELDS: string;
+ DOC_HIGHLIGHT: string;
+ QUERY_STRING_OPTIONS: string;
+ QUERY_ALLOW_LEADING_WILDCARDS: string;
+ SEARCH_QUERY_LANGUAGE: string;
+ SORT_OPTIONS: string;
+ COURIER_IGNORE_FILTER_IF_FIELD_NOT_IN_INDEX: string;
+ COURIER_SET_REQUEST_PREFERENCE: string;
+ COURIER_CUSTOM_REQUEST_PREFERENCE: string;
+ COURIER_MAX_CONCURRENT_SHARD_REQUESTS: string;
+ COURIER_BATCH_SEARCHES: string;
+ SEARCH_INCLUDE_FROZEN: string;
+ HISTOGRAM_BAR_TARGET: string;
+ HISTOGRAM_MAX_BARS: string;
+ HISTORY_LIMIT: string;
+ SHORT_DOTS_ENABLE: string;
+ FORMAT_DEFAULT_TYPE_MAP: string;
+ FORMAT_NUMBER_DEFAULT_PATTERN: string;
+ FORMAT_PERCENT_DEFAULT_PATTERN: string;
+ FORMAT_BYTES_DEFAULT_PATTERN: string;
+ FORMAT_CURRENCY_DEFAULT_PATTERN: string;
+ FORMAT_NUMBER_DEFAULT_LOCALE: string;
+ TIMEPICKER_REFRESH_INTERVAL_DEFAULTS: string;
+ TIMEPICKER_QUICK_RANGES: string;
+ INDEXPATTERN_PLACEHOLDER: string;
+ FILTERS_PINNED_BY_DEFAULT: string;
+ FILTERS_EDITOR_SUGGEST_VALUES: string;
+};
+
// Warnings were encountered during analysis:
//
@@ -1800,52 +1833,52 @@ export type TSearchStrategyProvider = (context: ISearc
// src/plugins/data/common/es_query/filters/match_all_filter.ts:28:3 - (ae-forgotten-export) The symbol "MatchAllFilterMeta" needs to be exported by the entry point index.d.ts
// src/plugins/data/common/es_query/filters/phrase_filter.ts:33:3 - (ae-forgotten-export) The symbol "PhraseFilterMeta" needs to be exported by the entry point index.d.ts
// src/plugins/data/common/es_query/filters/phrases_filter.ts:31:3 - (ae-forgotten-export) The symbol "PhrasesFilterMeta" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:67:23 - (ae-forgotten-export) The symbol "FilterLabel" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:67:23 - (ae-forgotten-export) The symbol "FILTERS" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:67:23 - (ae-forgotten-export) The symbol "getDisplayValueFromFilter" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:67:23 - (ae-forgotten-export) The symbol "generateFilters" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:67:23 - (ae-forgotten-export) The symbol "changeTimeFilter" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:67:23 - (ae-forgotten-export) The symbol "convertRangeFilterToTimeRangeString" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:67:23 - (ae-forgotten-export) The symbol "extractTimeFilter" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:138:21 - (ae-forgotten-export) The symbol "buildEsQuery" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:138:21 - (ae-forgotten-export) The symbol "getEsQueryConfig" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:138:21 - (ae-forgotten-export) The symbol "luceneStringToDsl" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:138:21 - (ae-forgotten-export) The symbol "decorateQuery" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:180:26 - (ae-forgotten-export) The symbol "FieldFormatsRegistry" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:180:26 - (ae-forgotten-export) The symbol "BoolFormat" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:180:26 - (ae-forgotten-export) The symbol "BytesFormat" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:180:26 - (ae-forgotten-export) The symbol "ColorFormat" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:180:26 - (ae-forgotten-export) The symbol "DateNanosFormat" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:180:26 - (ae-forgotten-export) The symbol "DurationFormat" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:180:26 - (ae-forgotten-export) The symbol "IpFormat" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:180:26 - (ae-forgotten-export) The symbol "NumberFormat" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:180:26 - (ae-forgotten-export) The symbol "PercentFormat" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:180:26 - (ae-forgotten-export) The symbol "RelativeDateFormat" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:180:26 - (ae-forgotten-export) The symbol "SourceFormat" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:180:26 - (ae-forgotten-export) The symbol "StaticLookupFormat" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:180:26 - (ae-forgotten-export) The symbol "UrlFormat" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:180:26 - (ae-forgotten-export) The symbol "StringFormat" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:180:26 - (ae-forgotten-export) The symbol "TruncateFormat" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:238:27 - (ae-forgotten-export) The symbol "isFilterable" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:238:27 - (ae-forgotten-export) The symbol "isNestedField" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:238:27 - (ae-forgotten-export) The symbol "validateIndexPattern" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:238:27 - (ae-forgotten-export) The symbol "getFromSavedObject" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:238:27 - (ae-forgotten-export) The symbol "flattenHitWrapper" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:238:27 - (ae-forgotten-export) The symbol "formatHitProvider" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:378:20 - (ae-forgotten-export) The symbol "getRequestInspectorStats" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:378:20 - (ae-forgotten-export) The symbol "getResponseInspectorStats" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:378:20 - (ae-forgotten-export) The symbol "tabifyAggResponse" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:378:20 - (ae-forgotten-export) The symbol "tabifyGetColumns" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:380:1 - (ae-forgotten-export) The symbol "CidrMask" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:381:1 - (ae-forgotten-export) The symbol "dateHistogramInterval" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:390:1 - (ae-forgotten-export) The symbol "InvalidEsCalendarIntervalError" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:391:1 - (ae-forgotten-export) The symbol "InvalidEsIntervalFormatError" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:392:1 - (ae-forgotten-export) The symbol "isDateHistogramBucketAggConfig" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:396:1 - (ae-forgotten-export) The symbol "isValidEsInterval" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:397:1 - (ae-forgotten-export) The symbol "isValidInterval" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:400:1 - (ae-forgotten-export) The symbol "parseInterval" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:401:1 - (ae-forgotten-export) The symbol "propFilter" needs to be exported by the entry point index.d.ts
-// src/plugins/data/public/index.ts:404:1 - (ae-forgotten-export) The symbol "toAbsoluteDates" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:65:23 - (ae-forgotten-export) The symbol "FilterLabel" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:65:23 - (ae-forgotten-export) The symbol "FILTERS" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:65:23 - (ae-forgotten-export) The symbol "getDisplayValueFromFilter" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:65:23 - (ae-forgotten-export) The symbol "generateFilters" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:65:23 - (ae-forgotten-export) The symbol "changeTimeFilter" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:65:23 - (ae-forgotten-export) The symbol "convertRangeFilterToTimeRangeString" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:65:23 - (ae-forgotten-export) The symbol "extractTimeFilter" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:136:21 - (ae-forgotten-export) The symbol "buildEsQuery" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:136:21 - (ae-forgotten-export) The symbol "getEsQueryConfig" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:136:21 - (ae-forgotten-export) The symbol "luceneStringToDsl" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:136:21 - (ae-forgotten-export) The symbol "decorateQuery" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:178:26 - (ae-forgotten-export) The symbol "FieldFormatsRegistry" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:178:26 - (ae-forgotten-export) The symbol "BoolFormat" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:178:26 - (ae-forgotten-export) The symbol "BytesFormat" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:178:26 - (ae-forgotten-export) The symbol "ColorFormat" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:178:26 - (ae-forgotten-export) The symbol "DateNanosFormat" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:178:26 - (ae-forgotten-export) The symbol "DurationFormat" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:178:26 - (ae-forgotten-export) The symbol "IpFormat" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:178:26 - (ae-forgotten-export) The symbol "NumberFormat" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:178:26 - (ae-forgotten-export) The symbol "PercentFormat" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:178:26 - (ae-forgotten-export) The symbol "RelativeDateFormat" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:178:26 - (ae-forgotten-export) The symbol "SourceFormat" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:178:26 - (ae-forgotten-export) The symbol "StaticLookupFormat" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:178:26 - (ae-forgotten-export) The symbol "UrlFormat" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:178:26 - (ae-forgotten-export) The symbol "StringFormat" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:178:26 - (ae-forgotten-export) The symbol "TruncateFormat" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:236:27 - (ae-forgotten-export) The symbol "isFilterable" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:236:27 - (ae-forgotten-export) The symbol "isNestedField" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:236:27 - (ae-forgotten-export) The symbol "validateIndexPattern" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:236:27 - (ae-forgotten-export) The symbol "getFromSavedObject" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:236:27 - (ae-forgotten-export) The symbol "flattenHitWrapper" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:236:27 - (ae-forgotten-export) The symbol "formatHitProvider" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:377:20 - (ae-forgotten-export) The symbol "getRequestInspectorStats" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:377:20 - (ae-forgotten-export) The symbol "getResponseInspectorStats" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:377:20 - (ae-forgotten-export) The symbol "tabifyAggResponse" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:377:20 - (ae-forgotten-export) The symbol "tabifyGetColumns" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:379:1 - (ae-forgotten-export) The symbol "CidrMask" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:380:1 - (ae-forgotten-export) The symbol "dateHistogramInterval" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:389:1 - (ae-forgotten-export) The symbol "InvalidEsCalendarIntervalError" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:390:1 - (ae-forgotten-export) The symbol "InvalidEsIntervalFormatError" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:391:1 - (ae-forgotten-export) The symbol "isDateHistogramBucketAggConfig" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:395:1 - (ae-forgotten-export) The symbol "isValidEsInterval" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:396:1 - (ae-forgotten-export) The symbol "isValidInterval" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:399:1 - (ae-forgotten-export) The symbol "parseInterval" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:400:1 - (ae-forgotten-export) The symbol "propFilter" needs to be exported by the entry point index.d.ts
+// src/plugins/data/public/index.ts:403:1 - (ae-forgotten-export) The symbol "toAbsoluteDates" needs to be exported by the entry point index.d.ts
// src/plugins/data/public/query/state_sync/connect_to_query_state.ts:33:33 - (ae-forgotten-export) The symbol "FilterStateStore" needs to be exported by the entry point index.d.ts
// src/plugins/data/public/query/state_sync/connect_to_query_state.ts:37:1 - (ae-forgotten-export) The symbol "QueryStateChange" needs to be exported by the entry point index.d.ts
// src/plugins/data/public/types.ts:52:5 - (ae-forgotten-export) The symbol "createFiltersFromValueClickAction" needs to be exported by the entry point index.d.ts
diff --git a/src/plugins/data/public/query/filter_manager/filter_manager.test.ts b/src/plugins/data/public/query/filter_manager/filter_manager.test.ts
index 3c69a498e74cd..878142906f54b 100644
--- a/src/plugins/data/public/query/filter_manager/filter_manager.test.ts
+++ b/src/plugins/data/public/query/filter_manager/filter_manager.test.ts
@@ -24,14 +24,14 @@ import { Subscription } from 'rxjs';
import { FilterManager } from './filter_manager';
import { getFilter } from './test_helpers/get_stub_filter';
import { getFiltersArray } from './test_helpers/get_filters_array';
-import { Filter, FilterStateStore } from '../../../common';
+import { Filter, FilterStateStore, UI_SETTINGS } from '../../../common';
import { coreMock } from '../../../../../core/public/mocks';
const setupMock = coreMock.createSetup();
const uiSettingsMock = (pinnedByDefault: boolean) => (key: string) => {
switch (key) {
- case 'filters:pinnedByDefault':
+ case UI_SETTINGS.FILTERS_PINNED_BY_DEFAULT:
return pinnedByDefault;
default:
throw new Error(`Unexpected uiSettings key in FilterManager mock: ${key}`);
diff --git a/src/plugins/data/public/query/filter_manager/filter_manager.ts b/src/plugins/data/public/query/filter_manager/filter_manager.ts
index d58a0eb45c04f..60a49a4bd50f4 100644
--- a/src/plugins/data/public/query/filter_manager/filter_manager.ts
+++ b/src/plugins/data/public/query/filter_manager/filter_manager.ts
@@ -34,6 +34,7 @@ import {
isFilterPinned,
compareFilters,
COMPARE_ALL_OPTIONS,
+ UI_SETTINGS,
} from '../../../common';
export class FilterManager {
@@ -129,7 +130,7 @@ export class FilterManager {
public addFilters(
filters: Filter[] | Filter,
- pinFilterStatus: boolean = this.uiSettings.get('filters:pinnedByDefault')
+ pinFilterStatus: boolean = this.uiSettings.get(UI_SETTINGS.FILTERS_PINNED_BY_DEFAULT)
) {
if (!Array.isArray(filters)) {
filters = [filters];
@@ -157,7 +158,7 @@ export class FilterManager {
public setFilters(
newFilters: Filter[],
- pinFilterStatus: boolean = this.uiSettings.get('filters:pinnedByDefault')
+ pinFilterStatus: boolean = this.uiSettings.get(UI_SETTINGS.FILTERS_PINNED_BY_DEFAULT)
) {
const store = pinFilterStatus ? FilterStateStore.GLOBAL_STATE : FilterStateStore.APP_STATE;
diff --git a/src/plugins/data/public/query/lib/get_query_log.ts b/src/plugins/data/public/query/lib/get_query_log.ts
index a71eb7580cf07..b7827d2c8de02 100644
--- a/src/plugins/data/public/query/lib/get_query_log.ts
+++ b/src/plugins/data/public/query/lib/get_query_log.ts
@@ -20,6 +20,7 @@
import { IUiSettingsClient } from 'src/core/public';
import { IStorageWrapper } from 'src/plugins/kibana_utils/public';
import { PersistedLog } from '../persisted_log';
+import { UI_SETTINGS } from '../../../common';
export function getQueryLog(
uiSettings: IUiSettingsClient,
@@ -30,7 +31,7 @@ export function getQueryLog(
return new PersistedLog(
`typeahead:${appName}-${language}`,
{
- maxLength: uiSettings.get('history:limit'),
+ maxLength: uiSettings.get(UI_SETTINGS.HISTORY_LIMIT),
filterDuplicates: true,
},
storage
diff --git a/src/plugins/data/public/query/state_sync/connect_to_query_state.test.ts b/src/plugins/data/public/query/state_sync/connect_to_query_state.test.ts
index 06e4c1c8be6d5..4e394445b75ae 100644
--- a/src/plugins/data/public/query/state_sync/connect_to_query_state.test.ts
+++ b/src/plugins/data/public/query/state_sync/connect_to_query_state.test.ts
@@ -20,7 +20,7 @@
import { Subscription } from 'rxjs';
import { FilterManager } from '../filter_manager';
import { getFilter } from '../filter_manager/test_helpers/get_stub_filter';
-import { Filter, FilterStateStore } from '../../../common';
+import { Filter, FilterStateStore, UI_SETTINGS } from '../../../common';
import { coreMock } from '../../../../../core/public/mocks';
import { BaseStateContainer, createStateContainer, Storage } from '../../../../kibana_utils/public';
import { QueryService, QueryStart } from '../query_service';
@@ -46,11 +46,11 @@ const startMock = coreMock.createStart();
setupMock.uiSettings.get.mockImplementation((key: string) => {
switch (key) {
- case 'filters:pinnedByDefault':
+ case UI_SETTINGS.FILTERS_PINNED_BY_DEFAULT:
return true;
case 'timepicker:timeDefaults':
return { from: 'now-15m', to: 'now' };
- case 'timepicker:refreshIntervalDefaults':
+ case UI_SETTINGS.TIMEPICKER_REFRESH_INTERVAL_DEFAULTS:
return { pause: false, value: 0 };
default:
throw new Error(`sync_query test: not mocked uiSetting: ${key}`);
diff --git a/src/plugins/data/public/query/state_sync/sync_state_with_url.test.ts b/src/plugins/data/public/query/state_sync/sync_state_with_url.test.ts
index 50dc35ea955ee..7727153537257 100644
--- a/src/plugins/data/public/query/state_sync/sync_state_with_url.test.ts
+++ b/src/plugins/data/public/query/state_sync/sync_state_with_url.test.ts
@@ -21,7 +21,7 @@ import { Subscription } from 'rxjs';
import { createBrowserHistory, History } from 'history';
import { FilterManager } from '../filter_manager';
import { getFilter } from '../filter_manager/test_helpers/get_stub_filter';
-import { Filter, FilterStateStore } from '../../../common';
+import { Filter, FilterStateStore, UI_SETTINGS } from '../../../common';
import { coreMock } from '../../../../../core/public/mocks';
import {
createKbnUrlStateStorage,
@@ -39,11 +39,11 @@ const startMock = coreMock.createStart();
setupMock.uiSettings.get.mockImplementation((key: string) => {
switch (key) {
- case 'filters:pinnedByDefault':
+ case UI_SETTINGS.FILTERS_PINNED_BY_DEFAULT:
return true;
case 'timepicker:timeDefaults':
return { from: 'now-15m', to: 'now' };
- case 'timepicker:refreshIntervalDefaults':
+ case UI_SETTINGS.TIMEPICKER_REFRESH_INTERVAL_DEFAULTS:
return { pause: false, value: 0 };
default:
throw new Error(`sync_query test: not mocked uiSetting: ${key}`);
diff --git a/src/plugins/data/public/query/timefilter/timefilter_service.ts b/src/plugins/data/public/query/timefilter/timefilter_service.ts
index 413163ed059ad..df2fbc8e5a8f3 100644
--- a/src/plugins/data/public/query/timefilter/timefilter_service.ts
+++ b/src/plugins/data/public/query/timefilter/timefilter_service.ts
@@ -20,6 +20,7 @@
import { IUiSettingsClient } from 'src/core/public';
import { IStorageWrapper } from 'src/plugins/kibana_utils/public';
import { TimeHistory, Timefilter, TimeHistoryContract, TimefilterContract } from './index';
+import { UI_SETTINGS } from '../../../common';
/**
* Filter Service
@@ -35,7 +36,7 @@ export class TimefilterService {
public setup({ uiSettings, storage }: TimeFilterServiceDependencies): TimefilterSetup {
const timefilterConfig = {
timeDefaults: uiSettings.get('timepicker:timeDefaults'),
- refreshIntervalDefaults: uiSettings.get('timepicker:refreshIntervalDefaults'),
+ refreshIntervalDefaults: uiSettings.get(UI_SETTINGS.TIMEPICKER_REFRESH_INTERVAL_DEFAULTS),
};
const history = new TimeHistory(storage);
const timefilter = new Timefilter(timefilterConfig, history);
diff --git a/src/plugins/data/public/search/aggs/buckets/date_histogram.ts b/src/plugins/data/public/search/aggs/buckets/date_histogram.ts
index d5c97d0c95c5c..8a5596f669cb7 100644
--- a/src/plugins/data/public/search/aggs/buckets/date_histogram.ts
+++ b/src/plugins/data/public/search/aggs/buckets/date_histogram.ts
@@ -31,7 +31,7 @@ import { dateHistogramInterval, TimeRange } from '../../../../common';
import { writeParams } from '../agg_params';
import { isMetricAggType } from '../metrics/metric_agg_type';
-import { FIELD_FORMAT_IDS, KBN_FIELD_TYPES } from '../../../../common';
+import { FIELD_FORMAT_IDS, KBN_FIELD_TYPES, UI_SETTINGS } from '../../../../common';
import { TimefilterContract } from '../../../query';
import { QuerySetup } from '../../../query/query_service';
import { GetInternalStartServicesFn } from '../../../types';
@@ -125,8 +125,8 @@ export const getDateHistogramBucketAgg = ({
const { timefilter } = query.timefilter;
buckets = new TimeBuckets({
- 'histogram:maxBars': uiSettings.get('histogram:maxBars'),
- 'histogram:barTarget': uiSettings.get('histogram:barTarget'),
+ 'histogram:maxBars': uiSettings.get(UI_SETTINGS.HISTOGRAM_MAX_BARS),
+ 'histogram:barTarget': uiSettings.get(UI_SETTINGS.HISTOGRAM_BAR_TARGET),
dateFormat: uiSettings.get('dateFormat'),
'dateFormat:scaled': uiSettings.get('dateFormat:scaled'),
});
diff --git a/src/plugins/data/public/search/aggs/buckets/filters.ts b/src/plugins/data/public/search/aggs/buckets/filters.ts
index 3f3f13bb955c1..4052c0b390155 100644
--- a/src/plugins/data/public/search/aggs/buckets/filters.ts
+++ b/src/plugins/data/public/search/aggs/buckets/filters.ts
@@ -26,7 +26,7 @@ import { toAngularJSON } from '../utils';
import { BucketAggType } from './bucket_agg_type';
import { BUCKET_TYPES } from './bucket_agg_types';
import { Storage } from '../../../../../../plugins/kibana_utils/public';
-import { getEsQueryConfig, buildEsQuery, Query } from '../../../../common';
+import { getEsQueryConfig, buildEsQuery, Query, UI_SETTINGS } from '../../../../common';
import { getQueryLog } from '../../../query';
import { GetInternalStartServicesFn } from '../../../types';
import { BaseAggParams } from '../types';
@@ -69,7 +69,10 @@ export const getFiltersBucketAgg = ({
{
name: 'filters',
default: [
- { input: { query: '', language: uiSettings.get('search:queryLanguage') }, label: '' },
+ {
+ input: { query: '', language: uiSettings.get(UI_SETTINGS.SEARCH_QUERY_LANGUAGE) },
+ label: '',
+ },
],
write(aggConfig, output) {
const inFilters: FilterValue[] = aggConfig.params.filters;
diff --git a/src/plugins/data/public/search/aggs/buckets/histogram.ts b/src/plugins/data/public/search/aggs/buckets/histogram.ts
index d04df4f8aac6b..c1fad17f488db 100644
--- a/src/plugins/data/public/search/aggs/buckets/histogram.ts
+++ b/src/plugins/data/public/search/aggs/buckets/histogram.ts
@@ -24,7 +24,7 @@ import { IUiSettingsClient } from 'src/core/public';
import { BucketAggType, IBucketAggConfig } from './bucket_agg_type';
import { createFilterHistogram } from './create_filter/histogram';
import { BUCKET_TYPES } from './bucket_agg_types';
-import { KBN_FIELD_TYPES } from '../../../../common';
+import { KBN_FIELD_TYPES, UI_SETTINGS } from '../../../../common';
import { GetInternalStartServicesFn } from '../../../types';
import { BaseAggParams } from '../types';
import { ExtendedBounds } from './lib/extended_bounds';
@@ -155,8 +155,8 @@ export const getHistogramBucketAgg = ({
const range = autoBounds.max - autoBounds.min;
const bars = range / interval;
- if (bars > uiSettings.get('histogram:maxBars')) {
- const minInterval = range / uiSettings.get('histogram:maxBars');
+ if (bars > uiSettings.get(UI_SETTINGS.HISTOGRAM_MAX_BARS)) {
+ const minInterval = range / uiSettings.get(UI_SETTINGS.HISTOGRAM_MAX_BARS);
// Round interval by order of magnitude to provide clean intervals
// Always round interval up so there will always be less buckets than histogram:maxBars
diff --git a/src/plugins/data/public/search/aggs/utils/calculate_auto_time_expression.ts b/src/plugins/data/public/search/aggs/utils/calculate_auto_time_expression.ts
index 9d976784329cc..30fcdd9d83a38 100644
--- a/src/plugins/data/public/search/aggs/utils/calculate_auto_time_expression.ts
+++ b/src/plugins/data/public/search/aggs/utils/calculate_auto_time_expression.ts
@@ -19,7 +19,7 @@
import moment from 'moment';
import { IUiSettingsClient } from 'src/core/public';
import { TimeBuckets } from '../buckets/lib/time_buckets';
-import { toAbsoluteDates, TimeRange } from '../../../../common';
+import { toAbsoluteDates, TimeRange, UI_SETTINGS } from '../../../../common';
export function getCalculateAutoTimeExpression(uiSettings: IUiSettingsClient) {
return function calculateAutoTimeExpression(range: TimeRange) {
@@ -29,8 +29,8 @@ export function getCalculateAutoTimeExpression(uiSettings: IUiSettingsClient) {
}
const buckets = new TimeBuckets({
- 'histogram:maxBars': uiSettings.get('histogram:maxBars'),
- 'histogram:barTarget': uiSettings.get('histogram:barTarget'),
+ 'histogram:maxBars': uiSettings.get(UI_SETTINGS.HISTOGRAM_MAX_BARS),
+ 'histogram:barTarget': uiSettings.get(UI_SETTINGS.HISTOGRAM_BAR_TARGET),
dateFormat: uiSettings.get('dateFormat'),
'dateFormat:scaled': uiSettings.get('dateFormat:scaled'),
});
diff --git a/src/plugins/data/public/search/es_search/get_es_preference.test.ts b/src/plugins/data/public/search/es_search/get_es_preference.test.ts
index 8b8156b4519d6..05a74b3e6205a 100644
--- a/src/plugins/data/public/search/es_search/get_es_preference.test.ts
+++ b/src/plugins/data/public/search/es_search/get_es_preference.test.ts
@@ -20,6 +20,7 @@
import { getEsPreference } from './get_es_preference';
import { CoreStart } from '../../../../../core/public';
import { coreMock } from '../../../../../core/public/mocks';
+import { UI_SETTINGS } from '../../../common';
describe('Get ES preference', () => {
let mockCoreStart: MockedKeys;
@@ -30,8 +31,8 @@ describe('Get ES preference', () => {
test('returns the session ID if set to sessionId', () => {
mockCoreStart.uiSettings.get.mockImplementation((key: string) => {
- if (key === 'courier:setRequestPreference') return 'sessionId';
- if (key === 'courier:customRequestPreference') return 'foobar';
+ if (key === UI_SETTINGS.COURIER_SET_REQUEST_PREFERENCE) return 'sessionId';
+ if (key === UI_SETTINGS.COURIER_CUSTOM_REQUEST_PREFERENCE) return 'foobar';
});
const preference = getEsPreference(mockCoreStart.uiSettings, 'my_session_id');
expect(preference).toBe('my_session_id');
@@ -39,8 +40,8 @@ describe('Get ES preference', () => {
test('returns the custom preference if set to custom', () => {
mockCoreStart.uiSettings.get.mockImplementation((key: string) => {
- if (key === 'courier:setRequestPreference') return 'custom';
- if (key === 'courier:customRequestPreference') return 'foobar';
+ if (key === UI_SETTINGS.COURIER_SET_REQUEST_PREFERENCE) return 'custom';
+ if (key === UI_SETTINGS.COURIER_CUSTOM_REQUEST_PREFERENCE) return 'foobar';
});
const preference = getEsPreference(mockCoreStart.uiSettings);
expect(preference).toBe('foobar');
@@ -48,8 +49,8 @@ describe('Get ES preference', () => {
test('returns undefined if set to none', () => {
mockCoreStart.uiSettings.get.mockImplementation((key: string) => {
- if (key === 'courier:setRequestPreference') return 'none';
- if (key === 'courier:customRequestPreference') return 'foobar';
+ if (key === UI_SETTINGS.COURIER_SET_REQUEST_PREFERENCE) return 'none';
+ if (key === UI_SETTINGS.COURIER_CUSTOM_REQUEST_PREFERENCE) return 'foobar';
});
const preference = getEsPreference(mockCoreStart.uiSettings);
expect(preference).toBe(undefined);
diff --git a/src/plugins/data/public/search/es_search/get_es_preference.ts b/src/plugins/data/public/search/es_search/get_es_preference.ts
index 3f1c2b9b3b736..5e40712067bb0 100644
--- a/src/plugins/data/public/search/es_search/get_es_preference.ts
+++ b/src/plugins/data/public/search/es_search/get_es_preference.ts
@@ -18,12 +18,13 @@
*/
import { IUiSettingsClient } from '../../../../../core/public';
+import { UI_SETTINGS } from '../../../common';
const defaultSessionId = `${Date.now()}`;
export function getEsPreference(uiSettings: IUiSettingsClient, sessionId = defaultSessionId) {
- const setPreference = uiSettings.get('courier:setRequestPreference');
+ const setPreference = uiSettings.get(UI_SETTINGS.COURIER_SET_REQUEST_PREFERENCE);
if (setPreference === 'sessionId') return `${sessionId}`;
- const customPreference = uiSettings.get('courier:customRequestPreference');
+ const customPreference = uiSettings.get(UI_SETTINGS.COURIER_CUSTOM_REQUEST_PREFERENCE);
return setPreference === 'custom' ? customPreference : undefined;
}
diff --git a/src/plugins/data/public/search/fetch/get_search_params.test.ts b/src/plugins/data/public/search/fetch/get_search_params.test.ts
index 4809d76a46f59..f9b62fdd4fc61 100644
--- a/src/plugins/data/public/search/fetch/get_search_params.test.ts
+++ b/src/plugins/data/public/search/fetch/get_search_params.test.ts
@@ -19,6 +19,7 @@
import { getSearchParams } from './get_search_params';
import { IUiSettingsClient } from 'kibana/public';
+import { UI_SETTINGS } from '../../../common';
function getConfigStub(config: any = {}) {
return {
@@ -40,21 +41,21 @@ describe('getSearchParams', () => {
});
test('includes ignore_throttled according to search:includeFrozen', () => {
- let config = getConfigStub({ 'search:includeFrozen': true });
+ let config = getConfigStub({ [UI_SETTINGS.SEARCH_INCLUDE_FROZEN]: true });
let searchParams = getSearchParams(config);
expect(searchParams.ignore_throttled).toBe(false);
- config = getConfigStub({ 'search:includeFrozen': false });
+ config = getConfigStub({ [UI_SETTINGS.SEARCH_INCLUDE_FROZEN]: false });
searchParams = getSearchParams(config);
expect(searchParams.ignore_throttled).toBe(true);
});
test('includes max_concurrent_shard_requests according to courier:maxConcurrentShardRequests', () => {
- let config = getConfigStub({ 'courier:maxConcurrentShardRequests': 0 });
+ let config = getConfigStub({ [UI_SETTINGS.COURIER_MAX_CONCURRENT_SHARD_REQUESTS]: 0 });
let searchParams = getSearchParams(config);
expect(searchParams.max_concurrent_shard_requests).toBe(undefined);
- config = getConfigStub({ 'courier:maxConcurrentShardRequests': 5 });
+ config = getConfigStub({ [UI_SETTINGS.COURIER_MAX_CONCURRENT_SHARD_REQUESTS]: 5 });
searchParams = getSearchParams(config);
expect(searchParams.max_concurrent_shard_requests).toBe(5);
});
diff --git a/src/plugins/data/public/search/fetch/get_search_params.ts b/src/plugins/data/public/search/fetch/get_search_params.ts
index f0c43bd2e74cd..60bdc9ed6473a 100644
--- a/src/plugins/data/public/search/fetch/get_search_params.ts
+++ b/src/plugins/data/public/search/fetch/get_search_params.ts
@@ -18,6 +18,7 @@
*/
import { IUiSettingsClient } from 'kibana/public';
+import { UI_SETTINGS } from '../../../common';
const sessionId = Date.now();
@@ -33,19 +34,19 @@ export function getSearchParams(config: IUiSettingsClient, esShardTimeout: numbe
}
export function getIgnoreThrottled(config: IUiSettingsClient) {
- return !config.get('search:includeFrozen');
+ return !config.get(UI_SETTINGS.SEARCH_INCLUDE_FROZEN);
}
export function getMaxConcurrentShardRequests(config: IUiSettingsClient) {
- const maxConcurrentShardRequests = config.get('courier:maxConcurrentShardRequests');
+ const maxConcurrentShardRequests = config.get(UI_SETTINGS.COURIER_MAX_CONCURRENT_SHARD_REQUESTS);
return maxConcurrentShardRequests > 0 ? maxConcurrentShardRequests : undefined;
}
export function getPreference(config: IUiSettingsClient) {
- const setRequestPreference = config.get('courier:setRequestPreference');
+ const setRequestPreference = config.get(UI_SETTINGS.COURIER_SET_REQUEST_PREFERENCE);
if (setRequestPreference === 'sessionId') return sessionId;
return setRequestPreference === 'custom'
- ? config.get('courier:customRequestPreference')
+ ? config.get(UI_SETTINGS.COURIER_CUSTOM_REQUEST_PREFERENCE)
: undefined;
}
diff --git a/src/plugins/data/public/search/legacy/default_search_strategy.test.ts b/src/plugins/data/public/search/legacy/default_search_strategy.test.ts
index c619c9b17d9a8..436b522744622 100644
--- a/src/plugins/data/public/search/legacy/default_search_strategy.test.ts
+++ b/src/plugins/data/public/search/legacy/default_search_strategy.test.ts
@@ -21,6 +21,7 @@ import { IUiSettingsClient } from 'kibana/public';
import { defaultSearchStrategy } from './default_search_strategy';
import { searchStartMock } from '../mocks';
import { SearchStrategySearchParams } from './types';
+import { UI_SETTINGS } from '../../../common';
const { search } = defaultSearchStrategy;
@@ -69,30 +70,30 @@ describe('defaultSearchStrategy', function () {
});
test('does not send max_concurrent_shard_requests by default', async () => {
- const config = getConfigStub({ 'courier:batchSearches': true });
+ const config = getConfigStub({ [UI_SETTINGS.COURIER_BATCH_SEARCHES]: true });
await search({ ...searchArgs, config });
expect(es.msearch.mock.calls[0][0].max_concurrent_shard_requests).toBe(undefined);
});
test('allows configuration of max_concurrent_shard_requests', async () => {
const config = getConfigStub({
- 'courier:batchSearches': true,
- 'courier:maxConcurrentShardRequests': 42,
+ [UI_SETTINGS.COURIER_BATCH_SEARCHES]: true,
+ [UI_SETTINGS.COURIER_MAX_CONCURRENT_SHARD_REQUESTS]: 42,
});
await search({ ...searchArgs, config });
expect(es.msearch.mock.calls[0][0].max_concurrent_shard_requests).toBe(42);
});
test('should set rest_total_hits_as_int to true on a request', async () => {
- const config = getConfigStub({ 'courier:batchSearches': true });
+ const config = getConfigStub({ [UI_SETTINGS.COURIER_BATCH_SEARCHES]: true });
await search({ ...searchArgs, config });
expect(es.msearch.mock.calls[0][0]).toHaveProperty('rest_total_hits_as_int', true);
});
test('should set ignore_throttled=false when including frozen indices', async () => {
const config = getConfigStub({
- 'courier:batchSearches': true,
- 'search:includeFrozen': true,
+ [UI_SETTINGS.COURIER_BATCH_SEARCHES]: true,
+ [UI_SETTINGS.SEARCH_INCLUDE_FROZEN]: true,
});
await search({ ...searchArgs, config });
expect(es.msearch.mock.calls[0][0]).toHaveProperty('ignore_throttled', false);
@@ -100,7 +101,7 @@ describe('defaultSearchStrategy', function () {
test('should properly call abort with msearch', () => {
const config = getConfigStub({
- 'courier:batchSearches': true,
+ [UI_SETTINGS.COURIER_BATCH_SEARCHES]: true,
});
search({ ...searchArgs, config }).abort();
expect(msearchMockResponse.abort).toHaveBeenCalled();
diff --git a/src/plugins/data/public/search/legacy/fetch_soon.test.ts b/src/plugins/data/public/search/legacy/fetch_soon.test.ts
index e99e13ba33d1a..61d3568350b6b 100644
--- a/src/plugins/data/public/search/legacy/fetch_soon.test.ts
+++ b/src/plugins/data/public/search/legacy/fetch_soon.test.ts
@@ -22,6 +22,7 @@ import { callClient } from './call_client';
import { IUiSettingsClient } from 'kibana/public';
import { FetchHandlers, FetchOptions } from '../fetch/types';
import { SearchRequest, SearchResponse } from '../index';
+import { UI_SETTINGS } from '../../../common';
function getConfigStub(config: any = {}) {
return {
@@ -60,7 +61,7 @@ describe('fetchSoon', () => {
test('should execute asap if config is set to not batch searches', () => {
const config = getConfigStub({
- 'courier:batchSearches': false,
+ [UI_SETTINGS.COURIER_BATCH_SEARCHES]: false,
});
const request = {};
const options = {};
@@ -72,7 +73,7 @@ describe('fetchSoon', () => {
test('should delay by 50ms if config is set to batch searches', () => {
const config = getConfigStub({
- 'courier:batchSearches': true,
+ [UI_SETTINGS.COURIER_BATCH_SEARCHES]: true,
});
const request = {};
const options = {};
@@ -88,7 +89,7 @@ describe('fetchSoon', () => {
test('should send a batch of requests to callClient', () => {
const config = getConfigStub({
- 'courier:batchSearches': true,
+ [UI_SETTINGS.COURIER_BATCH_SEARCHES]: true,
});
const requests = [{ foo: 1 }, { foo: 2 }];
const options = [{ bar: 1 }, { bar: 2 }];
@@ -105,7 +106,7 @@ describe('fetchSoon', () => {
test('should return the response to the corresponding call for multiple batched requests', async () => {
const config = getConfigStub({
- 'courier:batchSearches': true,
+ [UI_SETTINGS.COURIER_BATCH_SEARCHES]: true,
});
const requests = [{ _mockResponseId: 'foo' }, { _mockResponseId: 'bar' }];
@@ -120,7 +121,7 @@ describe('fetchSoon', () => {
test('should wait for the previous batch to start before starting a new batch', () => {
const config = getConfigStub({
- 'courier:batchSearches': true,
+ [UI_SETTINGS.COURIER_BATCH_SEARCHES]: true,
});
const firstBatch = [{ foo: 1 }, { foo: 2 }];
const secondBatch = [{ bar: 1 }, { bar: 2 }];
diff --git a/src/plugins/data/public/search/legacy/fetch_soon.ts b/src/plugins/data/public/search/legacy/fetch_soon.ts
index 304c1c4d63f5b..fed2c52bc491f 100644
--- a/src/plugins/data/public/search/legacy/fetch_soon.ts
+++ b/src/plugins/data/public/search/legacy/fetch_soon.ts
@@ -20,6 +20,7 @@
import { callClient } from './call_client';
import { FetchHandlers, FetchOptions } from '../fetch/types';
import { SearchRequest, SearchResponse } from '../index';
+import { UI_SETTINGS } from '../../../common';
/**
* This function introduces a slight delay in the request process to allow multiple requests to queue
@@ -30,7 +31,7 @@ export async function fetchSoon(
options: FetchOptions,
fetchHandlers: FetchHandlers
) {
- const msToDelay = fetchHandlers.config.get('courier:batchSearches') ? 50 : 0;
+ const msToDelay = fetchHandlers.config.get(UI_SETTINGS.COURIER_BATCH_SEARCHES) ? 50 : 0;
return delayedFetch(request, options, fetchHandlers, msToDelay);
}
diff --git a/src/plugins/data/public/search/legacy/get_msearch_params.test.ts b/src/plugins/data/public/search/legacy/get_msearch_params.test.ts
index ce98f6ab2a7bb..dc61e19406631 100644
--- a/src/plugins/data/public/search/legacy/get_msearch_params.test.ts
+++ b/src/plugins/data/public/search/legacy/get_msearch_params.test.ts
@@ -19,6 +19,7 @@
import { getMSearchParams } from './get_msearch_params';
import { IUiSettingsClient } from '../../../../../core/public';
+import { UI_SETTINGS } from '../../../common';
function getConfigStub(config: any = {}) {
return {
@@ -34,29 +35,29 @@ describe('getMSearchParams', () => {
});
test('includes ignore_throttled according to search:includeFrozen', () => {
- let config = getConfigStub({ 'search:includeFrozen': true });
+ let config = getConfigStub({ [UI_SETTINGS.SEARCH_INCLUDE_FROZEN]: true });
let msearchParams = getMSearchParams(config);
expect(msearchParams.ignore_throttled).toBe(false);
- config = getConfigStub({ 'search:includeFrozen': false });
+ config = getConfigStub({ [UI_SETTINGS.SEARCH_INCLUDE_FROZEN]: false });
msearchParams = getMSearchParams(config);
expect(msearchParams.ignore_throttled).toBe(true);
});
test('includes max_concurrent_shard_requests according to courier:maxConcurrentShardRequests if greater than 0', () => {
- let config = getConfigStub({ 'courier:maxConcurrentShardRequests': 0 });
+ let config = getConfigStub({ [UI_SETTINGS.COURIER_MAX_CONCURRENT_SHARD_REQUESTS]: 0 });
let msearchParams = getMSearchParams(config);
expect(msearchParams.max_concurrent_shard_requests).toBe(undefined);
- config = getConfigStub({ 'courier:maxConcurrentShardRequests': 5 });
+ config = getConfigStub({ [UI_SETTINGS.COURIER_MAX_CONCURRENT_SHARD_REQUESTS]: 5 });
msearchParams = getMSearchParams(config);
expect(msearchParams.max_concurrent_shard_requests).toBe(5);
});
test('does not include other search params that are included in the msearch header or body', () => {
const config = getConfigStub({
- 'search:includeFrozen': false,
- 'courier:maxConcurrentShardRequests': 5,
+ [UI_SETTINGS.SEARCH_INCLUDE_FROZEN]: false,
+ [UI_SETTINGS.COURIER_MAX_CONCURRENT_SHARD_REQUESTS]: 5,
});
const msearchParams = getMSearchParams(config);
expect(msearchParams.hasOwnProperty('ignore_unavailable')).toBe(false);
diff --git a/src/plugins/data/public/search/search_source/search_source.ts b/src/plugins/data/public/search/search_source/search_source.ts
index 38f4ce73713c8..b926739112e0e 100644
--- a/src/plugins/data/public/search/search_source/search_source.ts
+++ b/src/plugins/data/public/search/search_source/search_source.ts
@@ -75,12 +75,11 @@ import { CoreStart } from 'kibana/public';
import { normalizeSortRequest } from './normalize_sort_request';
import { filterDocvalueFields } from './filter_docvalue_fields';
import { fieldWildcardFilter } from '../../../../kibana_utils/public';
-import { META_FIELDS_SETTING, DOC_HIGHLIGHT_SETTING } from '../../../common';
import { IIndexPattern, ISearchGeneric, SearchRequest } from '../..';
import { SearchSourceOptions, SearchSourceFields } from './types';
import { FetchOptions, RequestFailure, getSearchParams, handleResponse } from '../fetch';
-import { getEsQueryConfig, buildEsQuery, Filter } from '../../../common';
+import { getEsQueryConfig, buildEsQuery, Filter, UI_SETTINGS } from '../../../common';
import { getHighlightRequest } from '../../../common/field_formats';
import { fetchSoon } from '../legacy';
import { extractReferences } from './extract_references';
@@ -251,7 +250,7 @@ export class SearchSource {
this.history = [searchRequest];
let response;
- if (uiSettings.get('courier:batchSearches')) {
+ if (uiSettings.get(UI_SETTINGS.COURIER_BATCH_SEARCHES)) {
response = await this.legacyFetch(searchRequest, options);
} else {
response = this.fetch$(searchRequest, options.abortSignal).toPromise();
@@ -365,7 +364,7 @@ export class SearchSource {
const sort = normalizeSortRequest(
val,
this.getField('index'),
- uiSettings.get('sort:options')
+ uiSettings.get(UI_SETTINGS.SORT_OPTIONS)
);
return addToBody(key, sort);
default:
@@ -425,7 +424,7 @@ export class SearchSource {
// exclude source fields for this index pattern specified by the user
const filter = fieldWildcardFilter(
body._source.excludes,
- uiSettings.get(META_FIELDS_SETTING)
+ uiSettings.get(UI_SETTINGS.META_FIELDS)
);
body.docvalue_fields = body.docvalue_fields.filter((docvalueField: any) =>
filter(docvalueField.field)
@@ -448,7 +447,7 @@ export class SearchSource {
body.query = buildEsQuery(index, query, filters, esQueryConfigs);
if (highlightAll && body.query) {
- body.highlight = getHighlightRequest(body.query, uiSettings.get(DOC_HIGHLIGHT_SETTING));
+ body.highlight = getHighlightRequest(body.query, uiSettings.get(UI_SETTINGS.DOC_HIGHLIGHT));
delete searchRequest.highlightAll;
}
diff --git a/src/plugins/data/public/ui/filter_bar/filter_bar.tsx b/src/plugins/data/public/ui/filter_bar/filter_bar.tsx
index a54a25acc5913..43dba150bf8d4 100644
--- a/src/plugins/data/public/ui/filter_bar/filter_bar.tsx
+++ b/src/plugins/data/public/ui/filter_bar/filter_bar.tsx
@@ -36,6 +36,7 @@ import {
toggleFilterDisabled,
toggleFilterNegated,
unpinFilter,
+ UI_SETTINGS,
} from '../../../common';
interface Props {
@@ -76,7 +77,7 @@ function FilterBarUI(props: Props) {
}
function renderAddFilter() {
- const isPinned = uiSettings!.get('filters:pinnedByDefault');
+ const isPinned = uiSettings!.get(UI_SETTINGS.FILTERS_PINNED_BY_DEFAULT);
const [indexPattern] = props.indexPatterns;
const index = indexPattern && indexPattern.id;
const newFilter = buildEmptyFilter(isPinned, index);
diff --git a/src/plugins/data/public/ui/filter_bar/filter_editor/phrase_suggestor.tsx b/src/plugins/data/public/ui/filter_bar/filter_editor/phrase_suggestor.tsx
index 546365b89d9be..94138f60b52b1 100644
--- a/src/plugins/data/public/ui/filter_bar/filter_editor/phrase_suggestor.tsx
+++ b/src/plugins/data/public/ui/filter_bar/filter_editor/phrase_suggestor.tsx
@@ -22,6 +22,7 @@ import { debounce } from 'lodash';
import { withKibana, KibanaReactContextValue } from '../../../../../kibana_react/public';
import { IDataPluginServices, IIndexPattern, IFieldType } from '../../..';
+import { UI_SETTINGS } from '../../../../common';
export interface PhraseSuggestorProps {
kibana: KibanaReactContextValue;
@@ -54,7 +55,9 @@ export class PhraseSuggestorUI extends React.Com
}
protected isSuggestingValues() {
- const shouldSuggestValues = this.services.uiSettings.get('filterEditor:suggestValues');
+ const shouldSuggestValues = this.services.uiSettings.get(
+ UI_SETTINGS.FILTERS_EDITOR_SUGGEST_VALUES
+ );
const { field } = this.props;
return shouldSuggestValues && field && field.aggregatable && field.type === 'string';
}
diff --git a/src/plugins/data/public/ui/query_string_input/query_bar_top_row.test.tsx b/src/plugins/data/public/ui/query_string_input/query_bar_top_row.test.tsx
index f579adbc0c7e2..5f2d4c00cd6b6 100644
--- a/src/plugins/data/public/ui/query_string_input/query_bar_top_row.test.tsx
+++ b/src/plugins/data/public/ui/query_string_input/query_bar_top_row.test.tsx
@@ -28,6 +28,7 @@ import { dataPluginMock } from '../../mocks';
import { KibanaContextProvider } from 'src/plugins/kibana_react/public';
import { I18nProvider } from '@kbn/i18n/react';
import { stubIndexPatternWithFields } from '../../stubs';
+import { UI_SETTINGS } from '../../../common';
const startMock = coreMock.createStart();
const mockTimeHistory = {
@@ -38,7 +39,7 @@ const mockTimeHistory = {
startMock.uiSettings.get.mockImplementation((key: string) => {
switch (key) {
- case 'timepicker:quickRanges':
+ case UI_SETTINGS.TIMEPICKER_QUICK_RANGES:
return [
{
from: 'now/d',
@@ -48,7 +49,7 @@ startMock.uiSettings.get.mockImplementation((key: string) => {
];
case 'dateFormat':
return 'MMM D, YYYY @ HH:mm:ss.SSS';
- case 'history:limit':
+ case UI_SETTINGS.HISTORY_LIMIT:
return 10;
case 'timepicker:timeDefaults':
return {
diff --git a/src/plugins/data/public/ui/query_string_input/query_bar_top_row.tsx b/src/plugins/data/public/ui/query_string_input/query_bar_top_row.tsx
index 433cb652ee5ce..f65bf97e391e2 100644
--- a/src/plugins/data/public/ui/query_string_input/query_bar_top_row.tsx
+++ b/src/plugins/data/public/ui/query_string_input/query_bar_top_row.tsx
@@ -38,7 +38,7 @@ import { Toast } from 'src/core/public';
import { IDataPluginServices, IIndexPattern, TimeRange, TimeHistoryContract, Query } from '../..';
import { useKibana, toMountPoint } from '../../../../kibana_react/public';
import { QueryStringInput } from './query_string_input';
-import { doesKueryExpressionHaveLuceneSyntaxError } from '../../../common';
+import { doesKueryExpressionHaveLuceneSyntaxError, UI_SETTINGS } from '../../../common';
import { PersistedLog, getQueryLog } from '../../query';
interface Props {
@@ -255,7 +255,7 @@ export function QueryBarTopRow(props: Props) {
}
const commonlyUsedRanges = uiSettings!
- .get('timepicker:quickRanges')
+ .get(UI_SETTINGS.TIMEPICKER_QUICK_RANGES)
.map(({ from, to, display }: { from: string; to: string; display: string }) => {
return {
start: from,
diff --git a/src/plugins/data/public/ui/search_bar/create_search_bar.tsx b/src/plugins/data/public/ui/search_bar/create_search_bar.tsx
index 7723254f3aa51..81e84e3198072 100644
--- a/src/plugins/data/public/ui/search_bar/create_search_bar.tsx
+++ b/src/plugins/data/public/ui/search_bar/create_search_bar.tsx
@@ -27,7 +27,7 @@ import { useFilterManager } from './lib/use_filter_manager';
import { useTimefilter } from './lib/use_timefilter';
import { useSavedQuery } from './lib/use_saved_query';
import { DataPublicPluginStart } from '../../types';
-import { Filter, Query, TimeRange } from '../../../common';
+import { Filter, Query, TimeRange, UI_SETTINGS } from '../../../common';
interface StatefulSearchBarDeps {
core: CoreStart;
@@ -125,7 +125,8 @@ export function createSearchBar({ core, storage, data }: StatefulSearchBarDeps)
const defaultQuery = {
query: '',
language:
- storage.get('kibana.userQueryLanguage') || core.uiSettings.get('search:queryLanguage'),
+ storage.get('kibana.userQueryLanguage') ||
+ core.uiSettings.get(UI_SETTINGS.SEARCH_QUERY_LANGUAGE),
};
const [query, setQuery] = useState(props.query || defaultQuery);
@@ -134,12 +135,14 @@ export function createSearchBar({ core, storage, data }: StatefulSearchBarDeps)
queryRef.current = props.query;
setQuery(props.query || defaultQuery);
}
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
}, [defaultQuery, props.query]);
useEffect(() => {
if (props.onQuerySubmit !== onQuerySubmitRef.current) {
onQuerySubmitRef.current = props.onQuerySubmit;
}
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
}, [props.onQuerySubmit]);
// handle service state updates.
diff --git a/src/plugins/data/server/index.ts b/src/plugins/data/server/index.ts
index 72a29e377ac54..831d23864d228 100644
--- a/src/plugins/data/server/index.ts
+++ b/src/plugins/data/server/index.ts
@@ -146,6 +146,7 @@ export {
ES_FIELD_TYPES,
KBN_FIELD_TYPES,
IndexPatternAttributes,
+ UI_SETTINGS,
} from '../common';
/**
diff --git a/src/plugins/data/server/kql_telemetry/usage_collector/fetch.test.ts b/src/plugins/data/server/kql_telemetry/usage_collector/fetch.test.ts
index 446320b09757a..81e352fea51b2 100644
--- a/src/plugins/data/server/kql_telemetry/usage_collector/fetch.test.ts
+++ b/src/plugins/data/server/kql_telemetry/usage_collector/fetch.test.ts
@@ -22,6 +22,9 @@ import { APICaller } from 'kibana/server';
jest.mock('../../../common', () => ({
DEFAULT_QUERY_LANGUAGE: 'lucene',
+ UI_SETTINGS: {
+ SEARCH_QUERY_LANGUAGE: 'search:queryLanguage',
+ },
}));
let fetch: ReturnType;
diff --git a/src/plugins/data/server/kql_telemetry/usage_collector/fetch.ts b/src/plugins/data/server/kql_telemetry/usage_collector/fetch.ts
index 9f3437161541f..157716b38f523 100644
--- a/src/plugins/data/server/kql_telemetry/usage_collector/fetch.ts
+++ b/src/plugins/data/server/kql_telemetry/usage_collector/fetch.ts
@@ -19,7 +19,7 @@
import { get } from 'lodash';
import { APICaller } from 'kibana/server';
-import { DEFAULT_QUERY_LANGUAGE } from '../../../common';
+import { DEFAULT_QUERY_LANGUAGE, UI_SETTINGS } from '../../../common';
const defaultSearchQueryLanguageSetting = DEFAULT_QUERY_LANGUAGE;
@@ -40,7 +40,7 @@ export function fetchProvider(index: string) {
const queryLanguageConfigValue = get(
config,
- 'hits.hits[0]._source.config.search:queryLanguage'
+ `hits.hits[0]._source.config.${UI_SETTINGS.SEARCH_QUERY_LANGUAGE}`
);
// search:queryLanguage can potentially be in four states in the .kibana index:
diff --git a/src/plugins/data/server/plugin.ts b/src/plugins/data/server/plugin.ts
index df7a7b9cf4d01..8c9d0df2ed894 100644
--- a/src/plugins/data/server/plugin.ts
+++ b/src/plugins/data/server/plugin.ts
@@ -28,7 +28,7 @@ import { KqlTelemetryService } from './kql_telemetry';
import { UsageCollectionSetup } from '../../usage_collection/server';
import { AutocompleteService } from './autocomplete';
import { FieldFormatsService, FieldFormatsSetup, FieldFormatsStart } from './field_formats';
-import { uiSettings } from './ui_settings';
+import { getUiSettings } from './ui_settings';
export interface DataPluginSetup {
search: ISearchSetup;
@@ -65,7 +65,8 @@ export class DataServerPlugin implements Plugin = (context: ISearchContext, caller: APICaller_2, search: ISearchGeneric) => ISearchStrategy;
+// Warning: (ae-missing-release-tag) "UI_SETTINGS" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal)
+//
+// @public (undocumented)
+export const UI_SETTINGS: {
+ META_FIELDS: string;
+ DOC_HIGHLIGHT: string;
+ QUERY_STRING_OPTIONS: string;
+ QUERY_ALLOW_LEADING_WILDCARDS: string;
+ SEARCH_QUERY_LANGUAGE: string;
+ SORT_OPTIONS: string;
+ COURIER_IGNORE_FILTER_IF_FIELD_NOT_IN_INDEX: string;
+ COURIER_SET_REQUEST_PREFERENCE: string;
+ COURIER_CUSTOM_REQUEST_PREFERENCE: string;
+ COURIER_MAX_CONCURRENT_SHARD_REQUESTS: string;
+ COURIER_BATCH_SEARCHES: string;
+ SEARCH_INCLUDE_FROZEN: string;
+ HISTOGRAM_BAR_TARGET: string;
+ HISTOGRAM_MAX_BARS: string;
+ HISTORY_LIMIT: string;
+ SHORT_DOTS_ENABLE: string;
+ FORMAT_DEFAULT_TYPE_MAP: string;
+ FORMAT_NUMBER_DEFAULT_PATTERN: string;
+ FORMAT_PERCENT_DEFAULT_PATTERN: string;
+ FORMAT_BYTES_DEFAULT_PATTERN: string;
+ FORMAT_CURRENCY_DEFAULT_PATTERN: string;
+ FORMAT_NUMBER_DEFAULT_LOCALE: string;
+ TIMEPICKER_REFRESH_INTERVAL_DEFAULTS: string;
+ TIMEPICKER_QUICK_RANGES: string;
+ INDEXPATTERN_PLACEHOLDER: string;
+ FILTERS_PINNED_BY_DEFAULT: string;
+ FILTERS_EDITOR_SUGGEST_VALUES: string;
+};
+
// Warnings were encountered during analysis:
//
@@ -745,12 +778,12 @@ export type TSearchStrategyProvider = (context: ISearc
// src/plugins/data/server/index.ts:103:26 - (ae-forgotten-export) The symbol "TruncateFormat" needs to be exported by the entry point index.d.ts
// src/plugins/data/server/index.ts:131:27 - (ae-forgotten-export) The symbol "isFilterable" needs to be exported by the entry point index.d.ts
// src/plugins/data/server/index.ts:131:27 - (ae-forgotten-export) The symbol "isNestedField" needs to be exported by the entry point index.d.ts
-// src/plugins/data/server/index.ts:183:1 - (ae-forgotten-export) The symbol "dateHistogramInterval" needs to be exported by the entry point index.d.ts
-// src/plugins/data/server/index.ts:184:1 - (ae-forgotten-export) The symbol "InvalidEsCalendarIntervalError" needs to be exported by the entry point index.d.ts
-// src/plugins/data/server/index.ts:185:1 - (ae-forgotten-export) The symbol "InvalidEsIntervalFormatError" needs to be exported by the entry point index.d.ts
-// src/plugins/data/server/index.ts:186:1 - (ae-forgotten-export) The symbol "isValidEsInterval" needs to be exported by the entry point index.d.ts
-// src/plugins/data/server/index.ts:187:1 - (ae-forgotten-export) The symbol "isValidInterval" needs to be exported by the entry point index.d.ts
-// src/plugins/data/server/index.ts:190:1 - (ae-forgotten-export) The symbol "toAbsoluteDates" needs to be exported by the entry point index.d.ts
+// src/plugins/data/server/index.ts:184:1 - (ae-forgotten-export) The symbol "dateHistogramInterval" needs to be exported by the entry point index.d.ts
+// src/plugins/data/server/index.ts:185:1 - (ae-forgotten-export) The symbol "InvalidEsCalendarIntervalError" needs to be exported by the entry point index.d.ts
+// src/plugins/data/server/index.ts:186:1 - (ae-forgotten-export) The symbol "InvalidEsIntervalFormatError" needs to be exported by the entry point index.d.ts
+// src/plugins/data/server/index.ts:187:1 - (ae-forgotten-export) The symbol "isValidEsInterval" needs to be exported by the entry point index.d.ts
+// src/plugins/data/server/index.ts:188:1 - (ae-forgotten-export) The symbol "isValidInterval" needs to be exported by the entry point index.d.ts
+// src/plugins/data/server/index.ts:191:1 - (ae-forgotten-export) The symbol "toAbsoluteDates" needs to be exported by the entry point index.d.ts
// src/plugins/data/server/plugin.ts:66:14 - (ae-forgotten-export) The symbol "ISearchSetup" needs to be exported by the entry point index.d.ts
// (No @packageDocumentation comment for this package)
diff --git a/src/plugins/data/server/ui_settings.ts b/src/plugins/data/server/ui_settings.ts
index 5af62be295201..de978c7968aee 100644
--- a/src/plugins/data/server/ui_settings.ts
+++ b/src/plugins/data/server/ui_settings.ts
@@ -19,33 +19,652 @@
import { i18n } from '@kbn/i18n';
import { schema } from '@kbn/config-schema';
-
import { UiSettingsParams } from 'kibana/server';
-import { META_FIELDS_SETTING, DOC_HIGHLIGHT_SETTING } from '../common';
+// @ts-ignore untyped module
+import numeralLanguages from '@elastic/numeral/languages';
+import { DEFAULT_QUERY_LANGUAGE, UI_SETTINGS } from '../common';
+
+const luceneQueryLanguageLabel = i18n.translate('data.advancedSettings.searchQueryLanguageLucene', {
+ defaultMessage: 'Lucene',
+});
+
+const queryLanguageSettingName = i18n.translate('data.advancedSettings.searchQueryLanguageTitle', {
+ defaultMessage: 'Query language',
+});
-export const uiSettings: Record = {
- [META_FIELDS_SETTING]: {
- name: i18n.translate('data.advancedSettings.metaFieldsTitle', {
- defaultMessage: 'Meta fields',
- }),
- value: ['_source', '_id', '_type', '_index', '_score'],
- description: i18n.translate('data.advancedSettings.metaFieldsText', {
- defaultMessage:
- 'Fields that exist outside of _source to merge into our document when displaying it',
- }),
- schema: schema.arrayOf(schema.string()),
- },
- [DOC_HIGHLIGHT_SETTING]: {
- name: i18n.translate('data.advancedSettings.docTableHighlightTitle', {
- defaultMessage: 'Highlight results',
- }),
- value: true,
- description: i18n.translate('data.advancedSettings.docTableHighlightText', {
- defaultMessage:
- 'Highlight results in Discover and Saved Searches Dashboard. ' +
- 'Highlighting makes requests slow when working on big documents.',
- }),
- category: ['discover'],
- schema: schema.boolean(),
- },
+const requestPreferenceOptionLabels = {
+ sessionId: i18n.translate('data.advancedSettings.courier.requestPreferenceSessionId', {
+ defaultMessage: 'Session ID',
+ }),
+ custom: i18n.translate('data.advancedSettings.courier.requestPreferenceCustom', {
+ defaultMessage: 'Custom',
+ }),
+ none: i18n.translate('data.advancedSettings.courier.requestPreferenceNone', {
+ defaultMessage: 'None',
+ }),
};
+
+// We add the `en` key manually here, since that's not a real numeral locale, but the
+// default fallback in case the locale is not found.
+const numeralLanguageIds = [
+ 'en',
+ ...numeralLanguages.map((numeralLanguage: any) => {
+ return numeralLanguage.id;
+ }),
+];
+
+export function getUiSettings(): Record> {
+ return {
+ [UI_SETTINGS.META_FIELDS]: {
+ name: i18n.translate('data.advancedSettings.metaFieldsTitle', {
+ defaultMessage: 'Meta fields',
+ }),
+ value: ['_source', '_id', '_type', '_index', '_score'],
+ description: i18n.translate('data.advancedSettings.metaFieldsText', {
+ defaultMessage:
+ 'Fields that exist outside of _source to merge into our document when displaying it',
+ }),
+ schema: schema.arrayOf(schema.string()),
+ },
+ [UI_SETTINGS.DOC_HIGHLIGHT]: {
+ name: i18n.translate('data.advancedSettings.docTableHighlightTitle', {
+ defaultMessage: 'Highlight results',
+ }),
+ value: true,
+ description: i18n.translate('data.advancedSettings.docTableHighlightText', {
+ defaultMessage:
+ 'Highlight results in Discover and Saved Searches Dashboard. ' +
+ 'Highlighting makes requests slow when working on big documents.',
+ }),
+ category: ['discover'],
+ schema: schema.boolean(),
+ },
+ [UI_SETTINGS.QUERY_STRING_OPTIONS]: {
+ name: i18n.translate('data.advancedSettings.query.queryStringOptionsTitle', {
+ defaultMessage: 'Query string options',
+ }),
+ value: '{ "analyze_wildcard": true }',
+ description: i18n.translate('data.advancedSettings.query.queryStringOptionsText', {
+ defaultMessage:
+ '{optionsLink} for the lucene query string parser. Is only used when "{queryLanguage}" is set ' +
+ 'to {luceneLanguage}.',
+ description:
+ 'Part of composite text: data.advancedSettings.query.queryStringOptions.optionsLinkText + ' +
+ 'data.advancedSettings.query.queryStringOptionsText',
+ values: {
+ optionsLink:
+ '' +
+ i18n.translate('data.advancedSettings.query.queryStringOptions.optionsLinkText', {
+ defaultMessage: 'Options',
+ }) +
+ '',
+ luceneLanguage: luceneQueryLanguageLabel,
+ queryLanguage: queryLanguageSettingName,
+ },
+ }),
+ type: 'json',
+ schema: schema.object({
+ analyze_wildcard: schema.boolean(),
+ }),
+ },
+ [UI_SETTINGS.QUERY_ALLOW_LEADING_WILDCARDS]: {
+ name: i18n.translate('data.advancedSettings.query.allowWildcardsTitle', {
+ defaultMessage: 'Allow leading wildcards in query',
+ }),
+ value: true,
+ description: i18n.translate('data.advancedSettings.query.allowWildcardsText', {
+ defaultMessage:
+ 'When set, * is allowed as the first character in a query clause. ' +
+ 'Currently only applies when experimental query features are enabled in the query bar. ' +
+ 'To disallow leading wildcards in basic lucene queries, use {queryStringOptionsPattern}.',
+ values: {
+ queryStringOptionsPattern: UI_SETTINGS.QUERY_STRING_OPTIONS,
+ },
+ }),
+ schema: schema.boolean(),
+ },
+ [UI_SETTINGS.SEARCH_QUERY_LANGUAGE]: {
+ name: queryLanguageSettingName,
+ value: DEFAULT_QUERY_LANGUAGE,
+ description: i18n.translate('data.advancedSettings.searchQueryLanguageText', {
+ defaultMessage:
+ 'Query language used by the query bar. KQL is a new language built specifically for Kibana.',
+ }),
+ type: 'select',
+ options: ['lucene', 'kuery'],
+ optionLabels: {
+ lucene: luceneQueryLanguageLabel,
+ kuery: i18n.translate('data.advancedSettings.searchQueryLanguageKql', {
+ defaultMessage: 'KQL',
+ }),
+ },
+ schema: schema.string(),
+ },
+ [UI_SETTINGS.SORT_OPTIONS]: {
+ name: i18n.translate('data.advancedSettings.sortOptionsTitle', {
+ defaultMessage: 'Sort options',
+ }),
+ value: '{ "unmapped_type": "boolean" }',
+ description: i18n.translate('data.advancedSettings.sortOptionsText', {
+ defaultMessage: '{optionsLink} for the Elasticsearch sort parameter',
+ description:
+ 'Part of composite text: data.advancedSettings.sortOptions.optionsLinkText + ' +
+ 'data.advancedSettings.sortOptionsText',
+ values: {
+ optionsLink:
+ '' +
+ i18n.translate('data.advancedSettings.sortOptions.optionsLinkText', {
+ defaultMessage: 'Options',
+ }) +
+ '',
+ },
+ }),
+ type: 'json',
+ schema: schema.object({
+ unmapped_type: schema.string(),
+ }),
+ },
+ defaultIndex: {
+ name: i18n.translate('data.advancedSettings.defaultIndexTitle', {
+ defaultMessage: 'Default index',
+ }),
+ value: null,
+ type: 'string',
+ description: i18n.translate('data.advancedSettings.defaultIndexText', {
+ defaultMessage: 'The index to access if no index is set',
+ }),
+ schema: schema.nullable(schema.string()),
+ },
+ [UI_SETTINGS.COURIER_IGNORE_FILTER_IF_FIELD_NOT_IN_INDEX]: {
+ name: i18n.translate('data.advancedSettings.courier.ignoreFilterTitle', {
+ defaultMessage: 'Ignore filter(s)',
+ }),
+ value: false,
+ description: i18n.translate('data.advancedSettings.courier.ignoreFilterText', {
+ defaultMessage:
+ 'This configuration enhances support for dashboards containing visualizations accessing dissimilar indexes. ' +
+ 'When disabled, all filters are applied to all visualizations. ' +
+ 'When enabled, filter(s) will be ignored for a visualization ' +
+ `when the visualization's index does not contain the filtering field.`,
+ }),
+ category: ['search'],
+ schema: schema.boolean(),
+ },
+ [UI_SETTINGS.COURIER_SET_REQUEST_PREFERENCE]: {
+ name: i18n.translate('data.advancedSettings.courier.requestPreferenceTitle', {
+ defaultMessage: 'Request preference',
+ }),
+ value: 'sessionId',
+ options: ['sessionId', 'custom', 'none'],
+ optionLabels: requestPreferenceOptionLabels,
+ type: 'select',
+ description: i18n.translate('data.advancedSettings.courier.requestPreferenceText', {
+ defaultMessage: `Allows you to set which shards handle your search requests.
+
+ - {sessionId}: restricts operations to execute all search requests on the same shards.
+ This has the benefit of reusing shard caches across requests.
+ - {custom}: allows you to define a your own preference.
+ Use 'courier:customRequestPreference' to customize your preference value.
+ - {none}: means do not set a preference.
+ This might provide better performance because requests can be spread across all shard copies.
+ However, results might be inconsistent because different shards might be in different refresh states.
+
`,
+ values: {
+ sessionId: requestPreferenceOptionLabels.sessionId,
+ custom: requestPreferenceOptionLabels.custom,
+ none: requestPreferenceOptionLabels.none,
+ },
+ }),
+ category: ['search'],
+ schema: schema.string(),
+ },
+ [UI_SETTINGS.COURIER_CUSTOM_REQUEST_PREFERENCE]: {
+ name: i18n.translate('data.advancedSettings.courier.customRequestPreferenceTitle', {
+ defaultMessage: 'Custom request preference',
+ }),
+ value: '_local',
+ type: 'string',
+ description: i18n.translate('data.advancedSettings.courier.customRequestPreferenceText', {
+ defaultMessage:
+ '{requestPreferenceLink} used when {setRequestReferenceSetting} is set to {customSettingValue}.',
+ description:
+ 'Part of composite text: data.advancedSettings.courier.customRequestPreference.requestPreferenceLinkText + ' +
+ 'data.advancedSettings.courier.customRequestPreferenceText',
+ values: {
+ setRequestReferenceSetting: `${UI_SETTINGS.COURIER_SET_REQUEST_PREFERENCE}`,
+ customSettingValue: '"custom"',
+ requestPreferenceLink:
+ '' +
+ i18n.translate(
+ 'data.advancedSettings.courier.customRequestPreference.requestPreferenceLinkText',
+ {
+ defaultMessage: 'Request Preference',
+ }
+ ) +
+ '',
+ },
+ }),
+ category: ['search'],
+ schema: schema.string(),
+ },
+ [UI_SETTINGS.COURIER_MAX_CONCURRENT_SHARD_REQUESTS]: {
+ name: i18n.translate('data.advancedSettings.courier.maxRequestsTitle', {
+ defaultMessage: 'Max Concurrent Shard Requests',
+ }),
+ value: 0,
+ type: 'number',
+ description: i18n.translate('data.advancedSettings.courier.maxRequestsText', {
+ defaultMessage:
+ 'Controls the {maxRequestsLink} setting used for _msearch requests sent by Kibana. ' +
+ 'Set to 0 to disable this config and use the Elasticsearch default.',
+ values: {
+ maxRequestsLink: `max_concurrent_shard_requests`,
+ },
+ }),
+ category: ['search'],
+ schema: schema.number(),
+ },
+ [UI_SETTINGS.COURIER_BATCH_SEARCHES]: {
+ name: i18n.translate('data.advancedSettings.courier.batchSearchesTitle', {
+ defaultMessage: 'Batch concurrent searches',
+ }),
+ value: false,
+ type: 'boolean',
+ description: i18n.translate('data.advancedSettings.courier.batchSearchesText', {
+ defaultMessage: `When disabled, dashboard panels will load individually, and search requests will terminate when users navigate
+ away or update the query. When enabled, dashboard panels will load together when all of the data is loaded, and
+ searches will not terminate.`,
+ }),
+ deprecation: {
+ message: i18n.translate('data.advancedSettings.courier.batchSearchesTextDeprecation', {
+ defaultMessage: 'This setting is deprecated and will be removed in Kibana 8.0.',
+ }),
+ docLinksKey: 'kibanaSearchSettings',
+ },
+ category: ['search'],
+ schema: schema.boolean(),
+ },
+ [UI_SETTINGS.SEARCH_INCLUDE_FROZEN]: {
+ name: 'Search in frozen indices',
+ description: `Will include frozen indices in results if enabled. Searching through frozen indices
+ might increase the search time.`,
+ value: false,
+ category: ['search'],
+ schema: schema.boolean(),
+ },
+ [UI_SETTINGS.HISTOGRAM_BAR_TARGET]: {
+ name: i18n.translate('data.advancedSettings.histogram.barTargetTitle', {
+ defaultMessage: 'Target bars',
+ }),
+ value: 50,
+ description: i18n.translate('data.advancedSettings.histogram.barTargetText', {
+ defaultMessage:
+ 'Attempt to generate around this many bars when using "auto" interval in date histograms',
+ }),
+ schema: schema.number(),
+ },
+ [UI_SETTINGS.HISTOGRAM_MAX_BARS]: {
+ name: i18n.translate('data.advancedSettings.histogram.maxBarsTitle', {
+ defaultMessage: 'Maximum bars',
+ }),
+ value: 100,
+ description: i18n.translate('data.advancedSettings.histogram.maxBarsText', {
+ defaultMessage:
+ 'Never show more than this many bars in date histograms, scale values if needed',
+ }),
+ schema: schema.number(),
+ },
+ [UI_SETTINGS.HISTORY_LIMIT]: {
+ name: i18n.translate('data.advancedSettings.historyLimitTitle', {
+ defaultMessage: 'History limit',
+ }),
+ value: 10,
+ description: i18n.translate('data.advancedSettings.historyLimitText', {
+ defaultMessage:
+ 'In fields that have history (e.g. query inputs), show this many recent values',
+ }),
+ schema: schema.number(),
+ },
+ [UI_SETTINGS.SHORT_DOTS_ENABLE]: {
+ name: i18n.translate('data.advancedSettings.shortenFieldsTitle', {
+ defaultMessage: 'Shorten fields',
+ }),
+ value: false,
+ description: i18n.translate('data.advancedSettings.shortenFieldsText', {
+ defaultMessage: 'Shorten long fields, for example, instead of foo.bar.baz, show f.b.baz',
+ }),
+ schema: schema.boolean(),
+ },
+ [UI_SETTINGS.FORMAT_DEFAULT_TYPE_MAP]: {
+ name: i18n.translate('data.advancedSettings.format.defaultTypeMapTitle', {
+ defaultMessage: 'Field type format name',
+ }),
+ value: `{
+ "ip": { "id": "ip", "params": {} },
+ "date": { "id": "date", "params": {} },
+ "date_nanos": { "id": "date_nanos", "params": {}, "es": true },
+ "number": { "id": "number", "params": {} },
+ "boolean": { "id": "boolean", "params": {} },
+ "_source": { "id": "_source", "params": {} },
+ "_default_": { "id": "string", "params": {} }
+}`,
+ type: 'json',
+ description: i18n.translate('data.advancedSettings.format.defaultTypeMapText', {
+ defaultMessage:
+ 'Map of the format name to use by default for each field type. ' +
+ '{defaultFormat} is used if the field type is not mentioned explicitly',
+ values: {
+ defaultFormat: '"_default_"',
+ },
+ }),
+ schema: schema.object({
+ ip: schema.object({
+ id: schema.string(),
+ params: schema.object({}),
+ }),
+ date: schema.object({
+ id: schema.string(),
+ params: schema.object({}),
+ }),
+ date_nanos: schema.object({
+ id: schema.string(),
+ params: schema.object({}),
+ es: schema.boolean(),
+ }),
+ number: schema.object({
+ id: schema.string(),
+ params: schema.object({}),
+ }),
+ boolean: schema.object({
+ id: schema.string(),
+ params: schema.object({}),
+ }),
+ _source: schema.object({
+ id: schema.string(),
+ params: schema.object({}),
+ }),
+ _default_: schema.object({
+ id: schema.string(),
+ params: schema.object({}),
+ }),
+ }),
+ },
+ [UI_SETTINGS.FORMAT_NUMBER_DEFAULT_PATTERN]: {
+ name: i18n.translate('data.advancedSettings.format.numberFormatTitle', {
+ defaultMessage: 'Number format',
+ }),
+ value: '0,0.[000]',
+ type: 'string',
+ description: i18n.translate('data.advancedSettings.format.numberFormatText', {
+ defaultMessage: 'Default {numeralFormatLink} for the "number" format',
+ description:
+ 'Part of composite text: data.advancedSettings.format.numberFormatText + ' +
+ 'data.advancedSettings.format.numberFormat.numeralFormatLinkText',
+ values: {
+ numeralFormatLink:
+ '' +
+ i18n.translate('data.advancedSettings.format.numberFormat.numeralFormatLinkText', {
+ defaultMessage: 'numeral format',
+ }) +
+ '',
+ },
+ }),
+ schema: schema.string(),
+ },
+ [UI_SETTINGS.FORMAT_PERCENT_DEFAULT_PATTERN]: {
+ name: i18n.translate('data.advancedSettings.format.percentFormatTitle', {
+ defaultMessage: 'Percent format',
+ }),
+ value: '0,0.[000]%',
+ type: 'string',
+ description: i18n.translate('data.advancedSettings.format.percentFormatText', {
+ defaultMessage: 'Default {numeralFormatLink} for the "percent" format',
+ description:
+ 'Part of composite text: data.advancedSettings.format.percentFormatText + ' +
+ 'data.advancedSettings.format.percentFormat.numeralFormatLinkText',
+ values: {
+ numeralFormatLink:
+ '' +
+ i18n.translate('data.advancedSettings.format.percentFormat.numeralFormatLinkText', {
+ defaultMessage: 'numeral format',
+ }) +
+ '',
+ },
+ }),
+ schema: schema.string(),
+ },
+ [UI_SETTINGS.FORMAT_BYTES_DEFAULT_PATTERN]: {
+ name: i18n.translate('data.advancedSettings.format.bytesFormatTitle', {
+ defaultMessage: 'Bytes format',
+ }),
+ value: '0,0.[0]b',
+ type: 'string',
+ description: i18n.translate('data.advancedSettings.format.bytesFormatText', {
+ defaultMessage: 'Default {numeralFormatLink} for the "bytes" format',
+ description:
+ 'Part of composite text: data.advancedSettings.format.bytesFormatText + ' +
+ 'data.advancedSettings.format.bytesFormat.numeralFormatLinkText',
+ values: {
+ numeralFormatLink:
+ '' +
+ i18n.translate('data.advancedSettings.format.bytesFormat.numeralFormatLinkText', {
+ defaultMessage: 'numeral format',
+ }) +
+ '',
+ },
+ }),
+ schema: schema.string(),
+ },
+ [UI_SETTINGS.FORMAT_CURRENCY_DEFAULT_PATTERN]: {
+ name: i18n.translate('data.advancedSettings.format.currencyFormatTitle', {
+ defaultMessage: 'Currency format',
+ }),
+ value: '($0,0.[00])',
+ type: 'string',
+ description: i18n.translate('data.advancedSettings.format.currencyFormatText', {
+ defaultMessage: 'Default {numeralFormatLink} for the "currency" format',
+ description:
+ 'Part of composite text: data.advancedSettings.format.currencyFormatText + ' +
+ 'data.advancedSettings.format.currencyFormat.numeralFormatLinkText',
+ values: {
+ numeralFormatLink:
+ '' +
+ i18n.translate('data.advancedSettings.format.currencyFormat.numeralFormatLinkText', {
+ defaultMessage: 'numeral format',
+ }) +
+ '',
+ },
+ }),
+ schema: schema.string(),
+ },
+ [UI_SETTINGS.FORMAT_NUMBER_DEFAULT_LOCALE]: {
+ name: i18n.translate('data.advancedSettings.format.formattingLocaleTitle', {
+ defaultMessage: 'Formatting locale',
+ }),
+ value: 'en',
+ type: 'select',
+ options: numeralLanguageIds,
+ optionLabels: Object.fromEntries(
+ numeralLanguages.map((language: Record) => [language.id, language.name])
+ ),
+ description: i18n.translate('data.advancedSettings.format.formattingLocaleText', {
+ defaultMessage: `{numeralLanguageLink} locale`,
+ description:
+ 'Part of composite text: data.advancedSettings.format.formattingLocale.numeralLanguageLinkText + ' +
+ 'data.advancedSettings.format.formattingLocaleText',
+ values: {
+ numeralLanguageLink:
+ '' +
+ i18n.translate(
+ 'data.advancedSettings.format.formattingLocale.numeralLanguageLinkText',
+ {
+ defaultMessage: 'Numeral language',
+ }
+ ) +
+ '',
+ },
+ }),
+ schema: schema.string(),
+ },
+ [UI_SETTINGS.TIMEPICKER_REFRESH_INTERVAL_DEFAULTS]: {
+ name: i18n.translate('data.advancedSettings.timepicker.refreshIntervalDefaultsTitle', {
+ defaultMessage: 'Time filter refresh interval',
+ }),
+ value: `{
+ "pause": false,
+ "value": 0
+}`,
+ type: 'json',
+ description: i18n.translate('data.advancedSettings.timepicker.refreshIntervalDefaultsText', {
+ defaultMessage: `The timefilter's default refresh interval`,
+ }),
+ requiresPageReload: true,
+ schema: schema.object({
+ pause: schema.boolean(),
+ value: schema.number(),
+ }),
+ },
+ [UI_SETTINGS.TIMEPICKER_QUICK_RANGES]: {
+ name: i18n.translate('data.advancedSettings.timepicker.quickRangesTitle', {
+ defaultMessage: 'Time filter quick ranges',
+ }),
+ value: JSON.stringify(
+ [
+ {
+ from: 'now/d',
+ to: 'now/d',
+ display: i18n.translate('data.advancedSettings.timepicker.today', {
+ defaultMessage: 'Today',
+ }),
+ },
+ {
+ from: 'now/w',
+ to: 'now/w',
+ display: i18n.translate('data.advancedSettings.timepicker.thisWeek', {
+ defaultMessage: 'This week',
+ }),
+ },
+ {
+ from: 'now-15m',
+ to: 'now',
+ display: i18n.translate('data.advancedSettings.timepicker.last15Minutes', {
+ defaultMessage: 'Last 15 minutes',
+ }),
+ },
+ {
+ from: 'now-30m',
+ to: 'now',
+ display: i18n.translate('data.advancedSettings.timepicker.last30Minutes', {
+ defaultMessage: 'Last 30 minutes',
+ }),
+ },
+ {
+ from: 'now-1h',
+ to: 'now',
+ display: i18n.translate('data.advancedSettings.timepicker.last1Hour', {
+ defaultMessage: 'Last 1 hour',
+ }),
+ },
+ {
+ from: 'now-24h',
+ to: 'now',
+ display: i18n.translate('data.advancedSettings.timepicker.last24Hours', {
+ defaultMessage: 'Last 24 hours',
+ }),
+ },
+ {
+ from: 'now-7d',
+ to: 'now',
+ display: i18n.translate('data.advancedSettings.timepicker.last7Days', {
+ defaultMessage: 'Last 7 days',
+ }),
+ },
+ {
+ from: 'now-30d',
+ to: 'now',
+ display: i18n.translate('data.advancedSettings.timepicker.last30Days', {
+ defaultMessage: 'Last 30 days',
+ }),
+ },
+ {
+ from: 'now-90d',
+ to: 'now',
+ display: i18n.translate('data.advancedSettings.timepicker.last90Days', {
+ defaultMessage: 'Last 90 days',
+ }),
+ },
+ {
+ from: 'now-1y',
+ to: 'now',
+ display: i18n.translate('data.advancedSettings.timepicker.last1Year', {
+ defaultMessage: 'Last 1 year',
+ }),
+ },
+ ],
+ null,
+ 2
+ ),
+ type: 'json',
+ description: i18n.translate('data.advancedSettings.timepicker.quickRangesText', {
+ defaultMessage:
+ 'The list of ranges to show in the Quick section of the time filter. This should be an array of objects, ' +
+ 'with each object containing "from", "to" (see {acceptedFormatsLink}), and ' +
+ '"display" (the title to be displayed).',
+ description:
+ 'Part of composite text: data.advancedSettings.timepicker.quickRangesText + ' +
+ 'data.advancedSettings.timepicker.quickRanges.acceptedFormatsLinkText',
+ values: {
+ acceptedFormatsLink:
+ `` +
+ i18n.translate('data.advancedSettings.timepicker.quickRanges.acceptedFormatsLinkText', {
+ defaultMessage: 'accepted formats',
+ }) +
+ '',
+ },
+ }),
+ schema: schema.arrayOf(
+ schema.object({
+ from: schema.string(),
+ to: schema.string(),
+ display: schema.string(),
+ })
+ ),
+ },
+ [UI_SETTINGS.INDEXPATTERN_PLACEHOLDER]: {
+ name: i18n.translate('data.advancedSettings.indexPatternPlaceholderTitle', {
+ defaultMessage: 'Index pattern placeholder',
+ }),
+ value: '',
+ description: i18n.translate('data.advancedSettings.indexPatternPlaceholderText', {
+ defaultMessage:
+ 'The placeholder for the "Index pattern name" field in "Management > Index Patterns > Create Index Pattern".',
+ }),
+ schema: schema.string(),
+ },
+ [UI_SETTINGS.FILTERS_PINNED_BY_DEFAULT]: {
+ name: i18n.translate('data.advancedSettings.pinFiltersTitle', {
+ defaultMessage: 'Pin filters by default',
+ }),
+ value: false,
+ description: i18n.translate('data.advancedSettings.pinFiltersText', {
+ defaultMessage: 'Whether the filters should have a global state (be pinned) by default',
+ }),
+ schema: schema.boolean(),
+ },
+ [UI_SETTINGS.FILTERS_EDITOR_SUGGEST_VALUES]: {
+ name: i18n.translate('data.advancedSettings.suggestFilterValuesTitle', {
+ defaultMessage: 'Filter editor suggest values',
+ description: '"Filter editor" refers to the UI you create filters in.',
+ }),
+ value: true,
+ description: i18n.translate('data.advancedSettings.suggestFilterValuesText', {
+ defaultMessage:
+ 'Set this property to false to prevent the filter editor from suggesting values for fields.',
+ }),
+ schema: schema.boolean(),
+ },
+ };
+}
diff --git a/src/plugins/discover/kibana.json b/src/plugins/discover/kibana.json
index 0b3a07e98624e..14dd399697b56 100644
--- a/src/plugins/discover/kibana.json
+++ b/src/plugins/discover/kibana.json
@@ -1,6 +1,7 @@
{
"id": "discover",
"version": "kibana",
+ "optionalPlugins": ["share"],
"server": true,
"ui": true,
"requiredPlugins": [
diff --git a/src/plugins/discover/public/application/angular/discover.js b/src/plugins/discover/public/application/angular/discover.js
index caba094bd0984..88885b3eb211b 100644
--- a/src/plugins/discover/public/application/angular/discover.js
+++ b/src/plugins/discover/public/application/angular/discover.js
@@ -72,6 +72,7 @@ import {
syncQueryStateWithUrl,
getDefaultQuery,
search,
+ UI_SETTINGS,
} from '../../../../data/public';
import { getIndexPatternId } from '../helpers/get_index_pattern_id';
import { addFatalError } from '../../../../kibana_legacy/public';
@@ -592,7 +593,8 @@ function discoverController(
const query =
$scope.searchSource.getField('query') ||
getDefaultQuery(
- localStorage.get('kibana.userQueryLanguage') || config.get('search:queryLanguage')
+ localStorage.get('kibana.userQueryLanguage') ||
+ config.get(UI_SETTINGS.SEARCH_QUERY_LANGUAGE)
);
return {
query,
diff --git a/src/plugins/discover/public/application/angular/doc_table/components/table_header.ts b/src/plugins/discover/public/application/angular/doc_table/components/table_header.ts
index 60dfb69e85e74..82bfcc8bc42f9 100644
--- a/src/plugins/discover/public/application/angular/doc_table/components/table_header.ts
+++ b/src/plugins/discover/public/application/angular/doc_table/components/table_header.ts
@@ -19,6 +19,7 @@
import { TableHeader } from './table_header/table_header';
import { getServices } from '../../../../kibana_services';
import { SORT_DEFAULT_ORDER_SETTING, DOC_HIDE_TIME_COLUMN_SETTING } from '../../../../../common';
+import { UI_SETTINGS } from '../../../../../../data/public';
export function createTableHeaderDirective(reactDirective: any) {
const { uiSettings: config } = getServices();
@@ -38,7 +39,7 @@ export function createTableHeaderDirective(reactDirective: any) {
{ restrict: 'A' },
{
hideTimeColumn: config.get(DOC_HIDE_TIME_COLUMN_SETTING, false),
- isShortDots: config.get('shortDots:enable'),
+ isShortDots: config.get(UI_SETTINGS.SHORT_DOTS_ENABLE),
defaultSortOrder: config.get(SORT_DEFAULT_ORDER_SETTING, 'desc'),
}
);
diff --git a/src/plugins/discover/public/application/components/sidebar/discover_sidebar.tsx b/src/plugins/discover/public/application/components/sidebar/discover_sidebar.tsx
index 99a5547ed0760..5a319d30b2515 100644
--- a/src/plugins/discover/public/application/components/sidebar/discover_sidebar.tsx
+++ b/src/plugins/discover/public/application/components/sidebar/discover_sidebar.tsx
@@ -33,6 +33,7 @@ import {
IIndexPatternFieldList,
IndexPatternField,
IndexPattern,
+ UI_SETTINGS,
} from '../../../../../data/public';
import { AppState } from '../../angular/discover_state';
import { getDetails } from './lib/get_details';
@@ -133,7 +134,7 @@ export function DiscoverSidebar({
);
const popularLimit = services.uiSettings.get(FIELDS_LIMIT_SETTING);
- const useShortDots = services.uiSettings.get('shortDots:enable');
+ const useShortDots = services.uiSettings.get(UI_SETTINGS.SHORT_DOTS_ENABLE);
const {
selected: selectedFields,
diff --git a/src/plugins/discover/public/index.ts b/src/plugins/discover/public/index.ts
index 359d91325f064..4154fdfeb3ff4 100644
--- a/src/plugins/discover/public/index.ts
+++ b/src/plugins/discover/public/index.ts
@@ -27,3 +27,4 @@ export function plugin(initializerContext: PluginInitializerContext) {
export { SavedSearch, SavedSearchLoader, createSavedSearchesLoader } from './saved_searches';
export { ISearchEmbeddable, SEARCH_EMBEDDABLE_TYPE, SearchInput } from './application/embeddable';
+export { DISCOVER_APP_URL_GENERATOR } from './url_generator';
diff --git a/src/plugins/discover/public/mocks.ts b/src/plugins/discover/public/mocks.ts
index c394fe2c11a71..e4314426bfce5 100644
--- a/src/plugins/discover/public/mocks.ts
+++ b/src/plugins/discover/public/mocks.ts
@@ -34,6 +34,9 @@ const createSetupContract = (): Setup => {
const createStartContract = (): Start => {
const startContract: Start = {
savedSearchLoader: {} as any,
+ urlGenerator: {
+ createUrl: jest.fn(),
+ } as any,
};
return startContract;
};
diff --git a/src/plugins/discover/public/plugin.ts b/src/plugins/discover/public/plugin.ts
index 4323e3d8deda4..091288e3e65aa 100644
--- a/src/plugins/discover/public/plugin.ts
+++ b/src/plugins/discover/public/plugin.ts
@@ -34,7 +34,7 @@ import { UiActionsStart, UiActionsSetup } from 'src/plugins/ui_actions/public';
import { EmbeddableStart, EmbeddableSetup } from 'src/plugins/embeddable/public';
import { ChartsPluginStart } from 'src/plugins/charts/public';
import { NavigationPublicPluginStart as NavigationStart } from 'src/plugins/navigation/public';
-import { SharePluginStart } from 'src/plugins/share/public';
+import { SharePluginStart, SharePluginSetup, UrlGeneratorContract } from 'src/plugins/share/public';
import { VisualizationsStart, VisualizationsSetup } from 'src/plugins/visualizations/public';
import { KibanaLegacySetup } from 'src/plugins/kibana_legacy/public';
import { HomePublicPluginSetup } from 'src/plugins/home/public';
@@ -43,7 +43,7 @@ import { DataPublicPluginStart, DataPublicPluginSetup, esFilters } from '../../d
import { SavedObjectLoader } from '../../saved_objects/public';
import { createKbnUrlTracker } from '../../kibana_utils/public';
import { DEFAULT_APP_CATEGORIES } from '../../../core/public';
-
+import { UrlGeneratorState } from '../../share/public';
import { DocViewInput, DocViewInputFn } from './application/doc_views/doc_views_types';
import { DocViewsRegistry } from './application/doc_views/doc_views_registry';
import { DocViewTable } from './application/components/table/table';
@@ -59,6 +59,17 @@ import {
import { createSavedSearchesLoader } from './saved_searches';
import { registerFeature } from './register_feature';
import { buildServices } from './build_services';
+import {
+ DiscoverUrlGeneratorState,
+ DISCOVER_APP_URL_GENERATOR,
+ DiscoverUrlGenerator,
+} from './url_generator';
+
+declare module '../../share/public' {
+ export interface UrlGeneratorStateMapping {
+ [DISCOVER_APP_URL_GENERATOR]: UrlGeneratorState;
+ }
+}
/**
* @public
@@ -76,12 +87,31 @@ export interface DiscoverSetup {
export interface DiscoverStart {
savedSearchLoader: SavedObjectLoader;
+
+ /**
+ * `share` plugin URL generator for Discover app. Use it to generate links into
+ * Discover application, example:
+ *
+ * ```ts
+ * const url = await plugins.discover.urlGenerator.createUrl({
+ * savedSearchId: '571aaf70-4c88-11e8-b3d7-01146121b73d',
+ * indexPatternId: 'c367b774-a4c2-11ea-bb37-0242ac130002',
+ * timeRange: {
+ * to: 'now',
+ * from: 'now-15m',
+ * mode: 'relative',
+ * },
+ * });
+ * ```
+ */
+ readonly urlGenerator: undefined | UrlGeneratorContract<'DISCOVER_APP_URL_GENERATOR'>;
}
/**
* @internal
*/
export interface DiscoverSetupPlugins {
+ share?: SharePluginSetup;
uiActions: UiActionsSetup;
embeddable: EmbeddableSetup;
kibanaLegacy: KibanaLegacySetup;
@@ -122,6 +152,7 @@ export class DiscoverPlugin
private stopUrlTracking: (() => void) | undefined = undefined;
private servicesInitialized: boolean = false;
private innerAngularInitialized: boolean = false;
+ private urlGenerator?: DiscoverStart['urlGenerator'];
/**
* why are those functions public? they are needed for some mocha tests
@@ -131,6 +162,17 @@ export class DiscoverPlugin
public initializeServices?: () => Promise<{ core: CoreStart; plugins: DiscoverStartPlugins }>;
setup(core: CoreSetup, plugins: DiscoverSetupPlugins) {
+ const baseUrl = core.http.basePath.prepend('/app/discover');
+
+ if (plugins.share) {
+ this.urlGenerator = plugins.share.urlGenerators.registerUrlGenerator(
+ new DiscoverUrlGenerator({
+ appBasePath: baseUrl,
+ useHash: core.uiSettings.get('state:storeInSessionStorage'),
+ })
+ );
+ }
+
this.docViewsRegistry = new DocViewsRegistry();
setDocViewsRegistry(this.docViewsRegistry);
this.docViewsRegistry.addDocView({
@@ -158,7 +200,7 @@ export class DiscoverPlugin
// so history is lazily created (when app is mounted)
// this prevents redundant `#` when not in discover app
getHistory: getScopedHistory,
- baseUrl: core.http.basePath.prepend('/app/discover'),
+ baseUrl,
defaultSubUrl: '#/',
storageKey: `lastUrl:${core.http.basePath.get()}:discover`,
navLinkUpdater$: this.appStateUpdater,
@@ -266,6 +308,7 @@ export class DiscoverPlugin
};
return {
+ urlGenerator: this.urlGenerator,
savedSearchLoader: createSavedSearchesLoader({
savedObjectsClient: core.savedObjects.client,
indexPatterns: plugins.data.indexPatterns,
diff --git a/src/plugins/discover/public/url_generator.test.ts b/src/plugins/discover/public/url_generator.test.ts
new file mode 100644
index 0000000000000..cf9beb246fea2
--- /dev/null
+++ b/src/plugins/discover/public/url_generator.test.ts
@@ -0,0 +1,259 @@
+/*
+ * Licensed to Elasticsearch B.V. under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch B.V. licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import { DiscoverUrlGenerator } from './url_generator';
+import { hashedItemStore, getStatesFromKbnUrl } from '../../kibana_utils/public';
+// eslint-disable-next-line
+import { mockStorage } from '../../kibana_utils/public/storage/hashed_item_store/mock';
+import { FilterStateStore } from '../../data/common';
+
+const appBasePath: string = 'xyz/app/discover';
+const indexPatternId: string = 'c367b774-a4c2-11ea-bb37-0242ac130002';
+const savedSearchId: string = '571aaf70-4c88-11e8-b3d7-01146121b73d';
+
+interface SetupParams {
+ useHash?: boolean;
+}
+
+const setup = async ({ useHash = false }: SetupParams = {}) => {
+ const generator = new DiscoverUrlGenerator({
+ appBasePath,
+ useHash,
+ });
+
+ return {
+ generator,
+ };
+};
+
+beforeEach(() => {
+ // @ts-ignore
+ hashedItemStore.storage = mockStorage;
+});
+
+describe('Discover url generator', () => {
+ test('can create a link to Discover with no state and no saved search', async () => {
+ const { generator } = await setup();
+ const url = await generator.createUrl({});
+ const { _a, _g } = getStatesFromKbnUrl(url, ['_a', '_g']);
+
+ expect(url.startsWith(appBasePath)).toBe(true);
+ expect(_a).toEqual({});
+ expect(_g).toEqual({});
+ });
+
+ test('can create a link to a saved search in Discover', async () => {
+ const { generator } = await setup();
+ const url = await generator.createUrl({ savedSearchId });
+ const { _a, _g } = getStatesFromKbnUrl(url, ['_a', '_g']);
+
+ expect(url.startsWith(`${appBasePath}#/${savedSearchId}`)).toBe(true);
+ expect(_a).toEqual({});
+ expect(_g).toEqual({});
+ });
+
+ test('can specify specific index pattern', async () => {
+ const { generator } = await setup();
+ const url = await generator.createUrl({
+ indexPatternId,
+ });
+ const { _a, _g } = getStatesFromKbnUrl(url, ['_a', '_g']);
+
+ expect(_a).toEqual({
+ index: indexPatternId,
+ });
+ expect(_g).toEqual({});
+ });
+
+ test('can specify specific time range', async () => {
+ const { generator } = await setup();
+ const url = await generator.createUrl({
+ timeRange: { to: 'now', from: 'now-15m', mode: 'relative' },
+ });
+ const { _a, _g } = getStatesFromKbnUrl(url, ['_a', '_g']);
+
+ expect(_a).toEqual({});
+ expect(_g).toEqual({
+ time: {
+ from: 'now-15m',
+ mode: 'relative',
+ to: 'now',
+ },
+ });
+ });
+
+ test('can specify query', async () => {
+ const { generator } = await setup();
+ const url = await generator.createUrl({
+ query: {
+ language: 'kuery',
+ query: 'foo',
+ },
+ });
+ const { _a, _g } = getStatesFromKbnUrl(url, ['_a', '_g']);
+
+ expect(_a).toEqual({
+ query: {
+ language: 'kuery',
+ query: 'foo',
+ },
+ });
+ expect(_g).toEqual({});
+ });
+
+ test('can specify local and global filters', async () => {
+ const { generator } = await setup();
+ const url = await generator.createUrl({
+ filters: [
+ {
+ meta: {
+ alias: 'foo',
+ disabled: false,
+ negate: false,
+ },
+ $state: {
+ store: FilterStateStore.APP_STATE,
+ },
+ },
+ {
+ meta: {
+ alias: 'bar',
+ disabled: false,
+ negate: false,
+ },
+ $state: {
+ store: FilterStateStore.GLOBAL_STATE,
+ },
+ },
+ ],
+ });
+ const { _a, _g } = getStatesFromKbnUrl(url, ['_a', '_g']);
+
+ expect(_a).toEqual({
+ filters: [
+ {
+ $state: {
+ store: 'appState',
+ },
+ meta: {
+ alias: 'foo',
+ disabled: false,
+ negate: false,
+ },
+ },
+ ],
+ });
+ expect(_g).toEqual({
+ filters: [
+ {
+ $state: {
+ store: 'globalState',
+ },
+ meta: {
+ alias: 'bar',
+ disabled: false,
+ negate: false,
+ },
+ },
+ ],
+ });
+ });
+
+ test('can set refresh interval', async () => {
+ const { generator } = await setup();
+ const url = await generator.createUrl({
+ refreshInterval: {
+ pause: false,
+ value: 666,
+ },
+ });
+ const { _a, _g } = getStatesFromKbnUrl(url, ['_a', '_g']);
+
+ expect(_a).toEqual({});
+ expect(_g).toEqual({
+ refreshInterval: {
+ pause: false,
+ value: 666,
+ },
+ });
+ });
+
+ test('can set time range', async () => {
+ const { generator } = await setup();
+ const url = await generator.createUrl({
+ timeRange: {
+ from: 'now-3h',
+ to: 'now',
+ },
+ });
+ const { _a, _g } = getStatesFromKbnUrl(url, ['_a', '_g']);
+
+ expect(_a).toEqual({});
+ expect(_g).toEqual({
+ time: {
+ from: 'now-3h',
+ to: 'now',
+ },
+ });
+ });
+
+ describe('useHash property', () => {
+ describe('when default useHash is set to false', () => {
+ test('when using default, sets index pattern ID in the generated URL', async () => {
+ const { generator } = await setup();
+ const url = await generator.createUrl({
+ indexPatternId,
+ });
+
+ expect(url.indexOf(indexPatternId) > -1).toBe(true);
+ });
+
+ test('when enabling useHash, does not set index pattern ID in the generated URL', async () => {
+ const { generator } = await setup();
+ const url = await generator.createUrl({
+ useHash: true,
+ indexPatternId,
+ });
+
+ expect(url.indexOf(indexPatternId) > -1).toBe(false);
+ });
+ });
+
+ describe('when default useHash is set to true', () => {
+ test('when using default, does not set index pattern ID in the generated URL', async () => {
+ const { generator } = await setup({ useHash: true });
+ const url = await generator.createUrl({
+ indexPatternId,
+ });
+
+ expect(url.indexOf(indexPatternId) > -1).toBe(false);
+ });
+
+ test('when disabling useHash, sets index pattern ID in the generated URL', async () => {
+ const { generator } = await setup();
+ const url = await generator.createUrl({
+ useHash: false,
+ indexPatternId,
+ });
+
+ expect(url.indexOf(indexPatternId) > -1).toBe(true);
+ });
+ });
+ });
+});
diff --git a/src/plugins/discover/public/url_generator.ts b/src/plugins/discover/public/url_generator.ts
new file mode 100644
index 0000000000000..42d689050d5ad
--- /dev/null
+++ b/src/plugins/discover/public/url_generator.ts
@@ -0,0 +1,114 @@
+/*
+ * Licensed to Elasticsearch B.V. under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch B.V. licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+import {
+ TimeRange,
+ Filter,
+ Query,
+ esFilters,
+ QueryState,
+ RefreshInterval,
+} from '../../data/public';
+import { setStateToKbnUrl } from '../../kibana_utils/public';
+import { UrlGeneratorsDefinition } from '../../share/public';
+
+export const DISCOVER_APP_URL_GENERATOR = 'DISCOVER_APP_URL_GENERATOR';
+
+export interface DiscoverUrlGeneratorState {
+ /**
+ * Optionally set saved search ID.
+ */
+ savedSearchId?: string;
+
+ /**
+ * Optionally set index pattern ID.
+ */
+ indexPatternId?: string;
+
+ /**
+ * Optionally set the time range in the time picker.
+ */
+ timeRange?: TimeRange;
+
+ /**
+ * Optionally set the refresh interval.
+ */
+ refreshInterval?: RefreshInterval;
+
+ /**
+ * Optionally apply filers.
+ */
+ filters?: Filter[];
+
+ /**
+ * Optionally set a query. NOTE: if given and used in conjunction with `dashboardId`, and the
+ * saved dashboard has a query saved with it, this will _replace_ that query.
+ */
+ query?: Query;
+
+ /**
+ * If not given, will use the uiSettings configuration for `storeInSessionStorage`. useHash determines
+ * whether to hash the data in the url to avoid url length issues.
+ */
+ useHash?: boolean;
+}
+
+interface Params {
+ appBasePath: string;
+ useHash: boolean;
+}
+
+export class DiscoverUrlGenerator
+ implements UrlGeneratorsDefinition {
+ constructor(private readonly params: Params) {}
+
+ public readonly id = DISCOVER_APP_URL_GENERATOR;
+
+ public readonly createUrl = async ({
+ filters,
+ indexPatternId,
+ query,
+ refreshInterval,
+ savedSearchId,
+ timeRange,
+ useHash = this.params.useHash,
+ }: DiscoverUrlGeneratorState): Promise => {
+ const savedSearchPath = savedSearchId ? encodeURIComponent(savedSearchId) : '';
+ const appState: {
+ query?: Query;
+ filters?: Filter[];
+ index?: string;
+ } = {};
+ const queryState: QueryState = {};
+
+ if (query) appState.query = query;
+ if (filters) appState.filters = filters?.filter((f) => !esFilters.isFilterPinned(f));
+ if (indexPatternId) appState.index = indexPatternId;
+
+ if (timeRange) queryState.time = timeRange;
+ if (filters) queryState.filters = filters?.filter((f) => esFilters.isFilterPinned(f));
+ if (refreshInterval) queryState.refreshInterval = refreshInterval;
+
+ let url = `${this.params.appBasePath}#/${savedSearchPath}`;
+ url = setStateToKbnUrl('_g', queryState, { useHash }, url);
+ url = setStateToKbnUrl('_a', appState, { useHash }, url);
+
+ return url;
+ };
+}
diff --git a/src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/components/step_index_pattern/step_index_pattern.tsx b/src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/components/step_index_pattern/step_index_pattern.tsx
index edb96f119385e..b6205a8731dfa 100644
--- a/src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/components/step_index_pattern/step_index_pattern.tsx
+++ b/src/plugins/index_pattern_management/public/components/create_index_pattern_wizard/components/step_index_pattern/step_index_pattern.tsx
@@ -21,7 +21,11 @@ import React, { Component } from 'react';
import { EuiPanel, EuiSpacer, EuiCallOut } from '@elastic/eui';
import { i18n } from '@kbn/i18n';
import { FormattedMessage } from '@kbn/i18n/react';
-import { indexPatterns, IndexPatternAttributes } from '../../../../../../../plugins/data/public';
+import {
+ indexPatterns,
+ IndexPatternAttributes,
+ UI_SETTINGS,
+} from '../../../../../../../plugins/data/public';
import { MAX_SEARCH_SIZE } from '../../constants';
import {
getIndices,
@@ -82,7 +86,8 @@ export class StepIndexPattern extends Component fieldWildcardMatcher(filters, uiSettings.get('metaFields')),
+ (filters: string[]) => fieldWildcardMatcher(filters, uiSettings.get(UI_SETTINGS.META_FIELDS)),
[uiSettings]
);
diff --git a/src/plugins/index_pattern_management/public/components/field_editor/components/scripting_help/test_script.tsx b/src/plugins/index_pattern_management/public/components/field_editor/components/scripting_help/test_script.tsx
index a1b7289efee21..c97f19f59d340 100644
--- a/src/plugins/index_pattern_management/public/components/field_editor/components/scripting_help/test_script.tsx
+++ b/src/plugins/index_pattern_management/public/components/field_editor/components/scripting_help/test_script.tsx
@@ -35,7 +35,12 @@ import {
import { FormattedMessage } from '@kbn/i18n/react';
import { i18n } from '@kbn/i18n';
-import { esQuery, IndexPattern, Query } from '../../../../../../../plugins/data/public';
+import {
+ esQuery,
+ IndexPattern,
+ Query,
+ UI_SETTINGS,
+} from '../../../../../../../plugins/data/public';
import { context as contextType } from '../../../../../../kibana_react/public';
import { IndexPatternManagmentContextValue } from '../../../../types';
import { ExecuteScript } from '../../types';
@@ -244,7 +249,7 @@ export class TestScript extends Component {
showDatePicker={false}
showQueryInput={true}
query={{
- language: this.context.services.uiSettings.get('search:queryLanguage'),
+ language: this.context.services.uiSettings.get(UI_SETTINGS.SEARCH_QUERY_LANGUAGE),
query: '',
}}
onQuerySubmit={this.previewScript}
diff --git a/src/plugins/inspector/public/views/data/components/data_table.tsx b/src/plugins/inspector/public/views/data/components/data_table.tsx
index 69be069272f79..0fdf3d9b13e33 100644
--- a/src/plugins/inspector/public/views/data/components/data_table.tsx
+++ b/src/plugins/inspector/public/views/data/components/data_table.tsx
@@ -37,6 +37,7 @@ import { DataDownloadOptions } from './download_options';
import { DataViewRow, DataViewColumn } from '../types';
import { TabularData } from '../../../../common/adapters/data/types';
import { IUiSettingsClient } from '../../../../../../core/public';
+import { CSV_SEPARATOR_SETTING, CSV_QUOTE_VALUES_SETTING } from '../../../../../share/public';
interface DataTableFormatState {
columns: DataViewColumn[];
@@ -58,8 +59,8 @@ export class DataTableFormat extends Component {
+export interface StartServices {
plugins: Plugins;
self: OwnContract;
- core: CoreStart;
+ core: Core;
}
-export type StartServicesGetter = () => StartServices<
- Plugins,
- OwnContract
->;
+export type StartServicesGetter<
+ Plugins = unknown,
+ OwnContract = unknown,
+ Core = CoreStart
+> = () => StartServices;
/**
* Use this utility to create a synchronous *start* service getter in *setup*
diff --git a/src/plugins/share/common/constants.ts b/src/plugins/share/common/constants.ts
new file mode 100644
index 0000000000000..7ad8e39c279d3
--- /dev/null
+++ b/src/plugins/share/common/constants.ts
@@ -0,0 +1,21 @@
+/*
+ * Licensed to Elasticsearch B.V. under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch B.V. licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+export const CSV_SEPARATOR_SETTING = 'csv:separator';
+export const CSV_QUOTE_VALUES_SETTING = 'csv:quoteValues';
diff --git a/src/plugins/share/public/index.ts b/src/plugins/share/public/index.ts
index 183219645467e..e3d6c41a278cd 100644
--- a/src/plugins/share/public/index.ts
+++ b/src/plugins/share/public/index.ts
@@ -17,6 +17,8 @@
* under the License.
*/
+export { CSV_QUOTE_VALUES_SETTING, CSV_SEPARATOR_SETTING } from '../common/constants';
+
export { UrlGeneratorStateMapping } from './url_generators/url_generator_definition';
export { SharePluginSetup, SharePluginStart } from './plugin';
diff --git a/src/plugins/share/public/url_generators/url_generator_service.ts b/src/plugins/share/public/url_generators/url_generator_service.ts
index 13c1b94acdd07..b63e2a45d6812 100644
--- a/src/plugins/share/public/url_generators/url_generator_service.ts
+++ b/src/plugins/share/public/url_generators/url_generator_service.ts
@@ -24,7 +24,7 @@ import { UrlGeneratorInternal } from './url_generator_internal';
import { UrlGeneratorContract } from './url_generator_contract';
export interface UrlGeneratorsStart {
- getUrlGenerator: (urlGeneratorId: UrlGeneratorId) => UrlGeneratorContract;
+ getUrlGenerator: (urlGeneratorId: T) => UrlGeneratorContract;
}
export interface UrlGeneratorsSetup {
diff --git a/src/plugins/share/server/index.ts b/src/plugins/share/server/index.ts
index 9e574314f8000..ff419ce68d46b 100644
--- a/src/plugins/share/server/index.ts
+++ b/src/plugins/share/server/index.ts
@@ -20,6 +20,8 @@
import { PluginInitializerContext } from '../../../core/server';
import { SharePlugin } from './plugin';
+export { CSV_QUOTE_VALUES_SETTING, CSV_SEPARATOR_SETTING } from '../common/constants';
+
export function plugin(initializerContext: PluginInitializerContext) {
return new SharePlugin(initializerContext);
}
diff --git a/src/plugins/share/server/plugin.ts b/src/plugins/share/server/plugin.ts
index 0d9f183d13404..e444cb1658d95 100644
--- a/src/plugins/share/server/plugin.ts
+++ b/src/plugins/share/server/plugin.ts
@@ -17,9 +17,12 @@
* under the License.
*/
+import { i18n } from '@kbn/i18n';
+import { schema } from '@kbn/config-schema';
import { CoreSetup, Plugin, PluginInitializerContext } from 'kibana/server';
import { createRoutes } from './routes/create_routes';
import { url } from './saved_objects';
+import { CSV_SEPARATOR_SETTING, CSV_QUOTE_VALUES_SETTING } from '../common/constants';
export class SharePlugin implements Plugin {
constructor(private readonly initializerContext: PluginInitializerContext) {}
@@ -27,6 +30,28 @@ export class SharePlugin implements Plugin {
public async setup(core: CoreSetup) {
createRoutes(core, this.initializerContext.logger.get());
core.savedObjects.registerType(url);
+ core.uiSettings.register({
+ [CSV_SEPARATOR_SETTING]: {
+ name: i18n.translate('share.advancedSettings.csv.separatorTitle', {
+ defaultMessage: 'CSV separator',
+ }),
+ value: ',',
+ description: i18n.translate('share.advancedSettings.csv.separatorText', {
+ defaultMessage: 'Separate exported values with this string',
+ }),
+ schema: schema.string(),
+ },
+ [CSV_QUOTE_VALUES_SETTING]: {
+ name: i18n.translate('share.advancedSettings.csv.quoteValuesTitle', {
+ defaultMessage: 'Quote CSV values',
+ }),
+ value: true,
+ description: i18n.translate('share.advancedSettings.csv.quoteValuesText', {
+ defaultMessage: 'Should values be quoted in csv exports?',
+ }),
+ schema: schema.boolean(),
+ },
+ });
}
public start() {
diff --git a/src/plugins/vis_default_editor/public/components/controls/filters.tsx b/src/plugins/vis_default_editor/public/components/controls/filters.tsx
index 7a655b935a45e..9a9933b5e1e83 100644
--- a/src/plugins/vis_default_editor/public/components/controls/filters.tsx
+++ b/src/plugins/vis_default_editor/public/components/controls/filters.tsx
@@ -23,7 +23,7 @@ import { htmlIdGenerator, EuiButton, EuiSpacer } from '@elastic/eui';
import { FormattedMessage } from '@kbn/i18n/react';
import { useMount } from 'react-use';
-import { Query } from 'src/plugins/data/public';
+import { Query, UI_SETTINGS } from '../../../../data/public';
import { useKibana } from '../../../../kibana_react/public';
import { FilterRow } from './filter';
import { AggParamEditorProps } from '../agg_param_props';
@@ -68,7 +68,7 @@ function FiltersParamEditor({ agg, value = [], setValue }: AggParamEditorProps) {
setValue(value && agg.params.min_doc_count);
}
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
}, [agg.params.min_doc_count, setValue, value]);
return (
diff --git a/src/plugins/vis_default_editor/public/components/controls/number_interval.tsx b/src/plugins/vis_default_editor/public/components/controls/number_interval.tsx
index 02bf680734526..0d21eb04c12b2 100644
--- a/src/plugins/vis_default_editor/public/components/controls/number_interval.tsx
+++ b/src/plugins/vis_default_editor/public/components/controls/number_interval.tsx
@@ -23,6 +23,7 @@ import React, { useEffect, useCallback } from 'react';
import { EuiFieldNumber, EuiFormRow, EuiIconTip } from '@elastic/eui';
import { i18n } from '@kbn/i18n';
import { FormattedMessage } from '@kbn/i18n/react';
+import { UI_SETTINGS } from '../../../../data/public';
import { AggParamEditorProps } from '../agg_param_props';
@@ -38,7 +39,7 @@ const label = (
}
type="questionInCircle"
diff --git a/src/plugins/vis_default_editor/public/components/controls/utils/agg_utils.ts b/src/plugins/vis_default_editor/public/components/controls/utils/agg_utils.ts
index ee24e2b42113d..950c856349230 100644
--- a/src/plugins/vis_default_editor/public/components/controls/utils/agg_utils.ts
+++ b/src/plugins/vis_default_editor/public/components/controls/utils/agg_utils.ts
@@ -33,6 +33,7 @@ const CUSTOM_METRIC = {
};
function useCompatibleAggCallback(aggFilter: AggFilter) {
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
return useCallback(isCompatibleAggregation(aggFilter), [aggFilter]);
}
diff --git a/src/plugins/vis_type_table/public/agg_table/agg_table.js b/src/plugins/vis_type_table/public/agg_table/agg_table.js
index f67dcf42adff6..bd7626a493338 100644
--- a/src/plugins/vis_type_table/public/agg_table/agg_table.js
+++ b/src/plugins/vis_type_table/public/agg_table/agg_table.js
@@ -17,6 +17,7 @@
* under the License.
*/
import _ from 'lodash';
+import { CSV_SEPARATOR_SETTING, CSV_QUOTE_VALUES_SETTING } from '../../../share/public';
import aggTableTemplate from './agg_table.html';
import { getFormatService } from '../services';
import { i18n } from '@kbn/i18n';
@@ -47,8 +48,8 @@ export function KbnAggTable(config, RecursionHelper) {
self._saveAs = require('@elastic/filesaver').saveAs;
self.csv = {
- separator: config.get('csv:separator'),
- quoteValues: config.get('csv:quoteValues'),
+ separator: config.get(CSV_SEPARATOR_SETTING),
+ quoteValues: config.get(CSV_QUOTE_VALUES_SETTING),
};
self.exportAsCsv = function (formatted) {
diff --git a/src/plugins/vis_type_timelion/public/components/panel.tsx b/src/plugins/vis_type_timelion/public/components/panel.tsx
index 4c28e4e5a18ab..99c5532c04832 100644
--- a/src/plugins/vis_type_timelion/public/components/panel.tsx
+++ b/src/plugins/vis_type_timelion/public/components/panel.tsx
@@ -102,6 +102,7 @@ function Panel({ interval, seriesList, renderComplete }: PanelProps) {
[chartElem]
);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const highlightSeries = useCallback(
debounce(({ currentTarget }: JQuery.TriggeredEvent) => {
const id = Number(currentTarget.getAttribute(SERIES_ID_ATTR));
@@ -295,6 +296,7 @@ function Panel({ interval, seriesList, renderComplete }: PanelProps) {
[plot, legendValueNumbers, unhighlightSeries, legendCaption]
);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const debouncedSetLegendNumbers = useCallback(
debounce(setLegendNumbers, DEBOUNCE_DELAY, {
maxWait: DEBOUNCE_DELAY,
diff --git a/src/plugins/vis_type_timelion/server/series_functions/es/es.test.js b/src/plugins/vis_type_timelion/server/series_functions/es/es.test.js
index 1bc979399b1b1..a624ff72ead69 100644
--- a/src/plugins/vis_type_timelion/server/series_functions/es/es.test.js
+++ b/src/plugins/vis_type_timelion/server/series_functions/es/es.test.js
@@ -30,6 +30,7 @@ import _ from 'lodash';
import { expect } from 'chai';
import sinon from 'sinon';
import invoke from '../helpers/invoke_series_fn.js';
+import { UI_SETTINGS } from '../../../../data/server';
function stubRequestAndServer(response, indexPatternSavedObjects = []) {
return {
@@ -216,14 +217,14 @@ describe('es', () => {
it('sets ignore_throttled=true on the request', () => {
config.index = 'beer';
- tlConfig.settings['search:includeFrozen'] = false;
+ tlConfig.settings[UI_SETTINGS.SEARCH_INCLUDE_FROZEN] = false;
const request = fn(config, tlConfig, emptyScriptedFields);
expect(request.ignore_throttled).to.equal(true);
});
it('sets no timeout if elasticsearch.shardTimeout is set to 0', () => {
- tlConfig.settings['search:includeFrozen'] = true;
+ tlConfig.settings[UI_SETTINGS.SEARCH_INCLUDE_FROZEN] = true;
config.index = 'beer';
const request = fn(config, tlConfig, emptyScriptedFields);
diff --git a/src/plugins/vis_type_timelion/server/series_functions/es/lib/build_request.js b/src/plugins/vis_type_timelion/server/series_functions/es/lib/build_request.js
index 65b28fb833279..bc0e368fbdab1 100644
--- a/src/plugins/vis_type_timelion/server/series_functions/es/lib/build_request.js
+++ b/src/plugins/vis_type_timelion/server/series_functions/es/lib/build_request.js
@@ -21,6 +21,7 @@ import _ from 'lodash';
import moment from 'moment';
import { buildAggBody } from './agg_body';
import createDateAgg from './create_date_agg';
+import { UI_SETTINGS } from '../../../../../data/server';
export default function buildRequest(config, tlConfig, scriptedFields, timeout) {
const bool = { must: [] };
@@ -78,7 +79,7 @@ export default function buildRequest(config, tlConfig, scriptedFields, timeout)
const request = {
index: config.index,
- ignore_throttled: !tlConfig.settings['search:includeFrozen'],
+ ignore_throttled: !tlConfig.settings[UI_SETTINGS.SEARCH_INCLUDE_FROZEN],
body: {
query: {
bool: bool,
diff --git a/src/plugins/vis_type_timeseries/public/application/components/lib/get_default_query_language.js b/src/plugins/vis_type_timeseries/public/application/components/lib/get_default_query_language.js
index 972f937ad109d..84da28718e323 100644
--- a/src/plugins/vis_type_timeseries/public/application/components/lib/get_default_query_language.js
+++ b/src/plugins/vis_type_timeseries/public/application/components/lib/get_default_query_language.js
@@ -18,7 +18,8 @@
*/
import { getUISettings } from '../../../services';
+import { UI_SETTINGS } from '../../../../../data/public';
export function getDefaultQueryLanguage() {
- return getUISettings().get('search:queryLanguage');
+ return getUISettings().get(UI_SETTINGS.SEARCH_QUERY_LANGUAGE);
}
diff --git a/src/plugins/vis_type_timeseries/public/application/components/lib/tick_formatter.test.js b/src/plugins/vis_type_timeseries/public/application/components/lib/tick_formatter.test.js
index 71e82770bfa03..308579126eeb1 100644
--- a/src/plugins/vis_type_timeseries/public/application/components/lib/tick_formatter.test.js
+++ b/src/plugins/vis_type_timeseries/public/application/components/lib/tick_formatter.test.js
@@ -20,6 +20,7 @@
import { createTickFormatter } from './tick_formatter';
import { getFieldFormatsRegistry } from '../../../../../../test_utils/public/stub_field_formats';
import { setFieldFormats } from '../../../services';
+import { UI_SETTINGS } from '../../../../../data/public';
const mockUiSettings = {
get: (item) => {
@@ -28,11 +29,11 @@ const mockUiSettings = {
getUpdate$: () => ({
subscribe: jest.fn(),
}),
- 'query:allowLeadingWildcards': true,
- 'query:queryString:options': {},
- 'courier:ignoreFilterIfFieldNotInIndex': true,
+ [UI_SETTINGS.QUERY_ALLOW_LEADING_WILDCARDS]: true,
+ [UI_SETTINGS.QUERY_STRING_OPTIONS]: {},
+ [UI_SETTINGS.COURIER_IGNORE_FILTER_IF_FIELD_NOT_IN_INDEX]: true,
'dateFormat:tz': 'Browser',
- 'format:defaultTypeMap': {},
+ [UI_SETTINGS.FORMAT_DEFAULT_TYPE_MAP]: {},
};
const mockCore = {
@@ -55,7 +56,7 @@ describe('createTickFormatter(format, template)', () => {
test('returns a percent with percent formatter', () => {
const config = {
- 'format:percent:defaultPattern': '0.[00]%',
+ [UI_SETTINGS.FORMAT_PERCENT_DEFAULT_PATTERN]: '0.[00]%',
};
const fn = createTickFormatter('percent', null, (key) => config[key]);
expect(fn(0.5556)).toEqual('55.56%');
@@ -63,7 +64,7 @@ describe('createTickFormatter(format, template)', () => {
test('returns a byte formatted string with byte formatter', () => {
const config = {
- 'format:bytes:defaultPattern': '0.0b',
+ [UI_SETTINGS.FORMAT_BYTES_DEFAULT_PATTERN]: '0.0b',
};
const fn = createTickFormatter('bytes', null, (key) => config[key]);
expect(fn(1500 ^ 10)).toEqual('1.5KB');
@@ -76,7 +77,7 @@ describe('createTickFormatter(format, template)', () => {
test('returns a located string with custom locale setting', () => {
const config = {
- 'format:number:defaultLocale': 'fr',
+ [UI_SETTINGS.FORMAT_NUMBER_DEFAULT_LOCALE]: 'fr',
};
const fn = createTickFormatter('0,0.0', null, (key) => config[key]);
expect(fn(1500)).toEqual('1 500,0');
@@ -99,7 +100,7 @@ describe('createTickFormatter(format, template)', () => {
test('returns formatted value if passed a bad template', () => {
const config = {
- 'format:number:defaultPattern': '0,0.[00]',
+ [UI_SETTINGS.FORMAT_NUMBER_DEFAULT_PATTERN]: '0,0.[00]',
};
const fn = createTickFormatter('number', '{{value', (key) => config[key]);
expect(fn(1.5556)).toEqual('1.56');
diff --git a/src/plugins/vis_type_timeseries/public/application/components/vis_editor.js b/src/plugins/vis_type_timeseries/public/application/components/vis_editor.js
index 0c53ddd3f0ba8..a96890d4d1502 100644
--- a/src/plugins/vis_type_timeseries/public/application/components/vis_editor.js
+++ b/src/plugins/vis_type_timeseries/public/application/components/vis_editor.js
@@ -29,7 +29,7 @@ import { PanelConfig } from './panel_config';
import { createBrushHandler } from '../lib/create_brush_handler';
import { fetchFields } from '../lib/fetch_fields';
import { extractIndexPatterns } from '../../../../../plugins/vis_type_timeseries/common/extract_index_patterns';
-import { esKuery } from '../../../../../plugins/data/public';
+import { esKuery, UI_SETTINGS } from '../../../../../plugins/data/public';
import { getSavedObjectsClient, getUISettings, getDataStart, getCoreStart } from '../../services';
import { CoreStartContextProvider } from '../contexts/query_input_bar_context';
@@ -89,7 +89,9 @@ export class VisEditor extends Component {
isValidKueryQuery = (filterQuery) => {
if (filterQuery && filterQuery.language === 'kuery') {
try {
- const queryOptions = this.coreContext.uiSettings.get('query:allowLeadingWildcards');
+ const queryOptions = this.coreContext.uiSettings.get(
+ UI_SETTINGS.QUERY_ALLOW_LEADING_WILDCARDS
+ );
esKuery.fromKueryExpression(filterQuery.query, { allowLeadingWildcards: queryOptions });
} catch (error) {
return false;
diff --git a/src/plugins/vis_type_timeseries/server/lib/search_strategies/search_requests/multi_search_request.js b/src/plugins/vis_type_timeseries/server/lib/search_strategies/search_requests/multi_search_request.js
index 93a4eaba4ad9e..9ada39e359589 100644
--- a/src/plugins/vis_type_timeseries/server/lib/search_strategies/search_requests/multi_search_request.js
+++ b/src/plugins/vis_type_timeseries/server/lib/search_strategies/search_requests/multi_search_request.js
@@ -17,12 +17,15 @@
* under the License.
*/
import { AbstractSearchRequest } from './abstract_request';
+import { UI_SETTINGS } from '../../../../../data/server';
const SEARCH_METHOD = 'msearch';
export class MultiSearchRequest extends AbstractSearchRequest {
async search(searches) {
- const includeFrozen = await this.req.getUiSettingsService().get('search:includeFrozen');
+ const includeFrozen = await this.req
+ .getUiSettingsService()
+ .get(UI_SETTINGS.SEARCH_INCLUDE_FROZEN);
const multiSearchBody = searches.reduce(
(acc, { body, index }) => [
...acc,
diff --git a/src/plugins/vis_type_timeseries/server/lib/search_strategies/search_requests/multi_search_request.test.js b/src/plugins/vis_type_timeseries/server/lib/search_strategies/search_requests/multi_search_request.test.js
index 1e28965a35793..c113db76332b7 100644
--- a/src/plugins/vis_type_timeseries/server/lib/search_strategies/search_requests/multi_search_request.test.js
+++ b/src/plugins/vis_type_timeseries/server/lib/search_strategies/search_requests/multi_search_request.test.js
@@ -17,6 +17,7 @@
* under the License.
*/
import { MultiSearchRequest } from './multi_search_request';
+import { UI_SETTINGS } from '../../../../../data/server';
describe('MultiSearchRequest', () => {
let searchRequest;
@@ -51,7 +52,7 @@ describe('MultiSearchRequest', () => {
expect(responses).toEqual([]);
expect(req.getUiSettingsService).toHaveBeenCalled();
- expect(getServiceMock).toHaveBeenCalledWith('search:includeFrozen');
+ expect(getServiceMock).toHaveBeenCalledWith(UI_SETTINGS.SEARCH_INCLUDE_FROZEN);
expect(callWithRequest).toHaveBeenCalledWith(req, 'msearch', {
body: [
{ ignoreUnavailable: true, index: 'index' },
diff --git a/src/plugins/vis_type_timeseries/server/lib/search_strategies/search_requests/single_search_request.js b/src/plugins/vis_type_timeseries/server/lib/search_strategies/search_requests/single_search_request.js
index 110deb6a9bc1b..7d8b60a7e4595 100644
--- a/src/plugins/vis_type_timeseries/server/lib/search_strategies/search_requests/single_search_request.js
+++ b/src/plugins/vis_type_timeseries/server/lib/search_strategies/search_requests/single_search_request.js
@@ -17,12 +17,15 @@
* under the License.
*/
import { AbstractSearchRequest } from './abstract_request';
+import { UI_SETTINGS } from '../../../../../data/server';
const SEARCH_METHOD = 'search';
export class SingleSearchRequest extends AbstractSearchRequest {
async search([{ body, index }]) {
- const includeFrozen = await this.req.getUiSettingsService().get('search:includeFrozen');
+ const includeFrozen = await this.req
+ .getUiSettingsService()
+ .get(UI_SETTINGS.SEARCH_INCLUDE_FROZEN);
const resp = await this.callWithRequest(this.req, SEARCH_METHOD, {
ignore_throttled: !includeFrozen,
body,
diff --git a/src/plugins/vis_type_timeseries/server/lib/search_strategies/search_requests/single_search_request.test.js b/src/plugins/vis_type_timeseries/server/lib/search_strategies/search_requests/single_search_request.test.js
index 043bd52d87aad..b899814f2fe13 100644
--- a/src/plugins/vis_type_timeseries/server/lib/search_strategies/search_requests/single_search_request.test.js
+++ b/src/plugins/vis_type_timeseries/server/lib/search_strategies/search_requests/single_search_request.test.js
@@ -17,6 +17,7 @@
* under the License.
*/
import { SingleSearchRequest } from './single_search_request';
+import { UI_SETTINGS } from '../../../../../data/server';
describe('SingleSearchRequest', () => {
let searchRequest;
@@ -48,7 +49,7 @@ describe('SingleSearchRequest', () => {
expect(responses).toEqual([{}]);
expect(req.getUiSettingsService).toHaveBeenCalled();
- expect(getServiceMock).toHaveBeenCalledWith('search:includeFrozen');
+ expect(getServiceMock).toHaveBeenCalledWith(UI_SETTINGS.SEARCH_INCLUDE_FROZEN);
expect(callWithRequest).toHaveBeenCalledWith(req, 'search', {
body: 'body',
index: 'index',
diff --git a/src/plugins/vis_type_timeseries/server/lib/vis_data/helpers/get_es_query_uisettings.js b/src/plugins/vis_type_timeseries/server/lib/vis_data/helpers/get_es_query_uisettings.js
index 42b8681f142e0..b427e5f12cadc 100644
--- a/src/plugins/vis_type_timeseries/server/lib/vis_data/helpers/get_es_query_uisettings.js
+++ b/src/plugins/vis_type_timeseries/server/lib/vis_data/helpers/get_es_query_uisettings.js
@@ -17,12 +17,14 @@
* under the License.
*/
+import { UI_SETTINGS } from '../../../../../data/server';
+
export async function getEsQueryConfig(req) {
const uiSettings = req.getUiSettingsService();
- const allowLeadingWildcards = await uiSettings.get('query:allowLeadingWildcards');
- const queryStringOptions = await uiSettings.get('query:queryString:options');
+ const allowLeadingWildcards = await uiSettings.get(UI_SETTINGS.QUERY_ALLOW_LEADING_WILDCARDS);
+ const queryStringOptions = await uiSettings.get(UI_SETTINGS.QUERY_STRING_OPTIONS);
const ignoreFilterIfFieldNotInIndex = await uiSettings.get(
- 'courier:ignoreFilterIfFieldNotInIndex'
+ UI_SETTINGS.COURIER_IGNORE_FILTER_IF_FIELD_NOT_IN_INDEX
);
return {
allowLeadingWildcards,
diff --git a/src/plugins/visualizations/common/constants.ts b/src/plugins/visualizations/common/constants.ts
new file mode 100644
index 0000000000000..9129f060c5eef
--- /dev/null
+++ b/src/plugins/visualizations/common/constants.ts
@@ -0,0 +1,20 @@
+/*
+ * Licensed to Elasticsearch B.V. under one or more contributor
+ * license agreements. See the NOTICE file distributed with
+ * this work for additional information regarding copyright
+ * ownership. Elasticsearch B.V. licenses this file to you under
+ * the Apache License, Version 2.0 (the "License"); you may
+ * not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+export const VISUALIZE_ENABLE_LABS_SETTING = 'visualize:enableLabs';
diff --git a/src/plugins/visualizations/public/embeddable/create_vis_embeddable_from_object.ts b/src/plugins/visualizations/public/embeddable/create_vis_embeddable_from_object.ts
index 81794c31527ad..45c750de05ae1 100644
--- a/src/plugins/visualizations/public/embeddable/create_vis_embeddable_from_object.ts
+++ b/src/plugins/visualizations/public/embeddable/create_vis_embeddable_from_object.ts
@@ -29,6 +29,7 @@ import {
getCapabilities,
} from '../services';
import { VisualizeEmbeddableFactoryDeps } from './visualize_embeddable_factory';
+import { VISUALIZE_ENABLE_LABS_SETTING } from '../../common/constants';
export const createVisEmbeddableFromObject = (deps: VisualizeEmbeddableFactoryDeps) => async (
vis: Vis,
@@ -44,7 +45,7 @@ export const createVisEmbeddableFromObject = (deps: VisualizeEmbeddableFactoryDe
const editUrl = visId
? getHttp().basePath.prepend(`/app/visualize${savedVisualizations.urlFor(visId)}`)
: '';
- const isLabsEnabled = getUISettings().get('visualize:enableLabs');
+ const isLabsEnabled = getUISettings().get(VISUALIZE_ENABLE_LABS_SETTING);
if (!isLabsEnabled && vis.type.stage === 'experimental') {
return new DisabledLabEmbeddable(vis.title, input);
diff --git a/src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx b/src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx
index c4aa4c262edb0..c4267c9a36f78 100644
--- a/src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx
+++ b/src/plugins/visualizations/public/embeddable/visualize_embeddable_factory.tsx
@@ -43,6 +43,7 @@ import { convertToSerializedVis } from '../saved_visualizations/_saved_vis';
import { createVisEmbeddableFromObject } from './create_vis_embeddable_from_object';
import { StartServicesGetter } from '../../../kibana_utils/public';
import { VisualizationsStartDeps } from '../plugin';
+import { VISUALIZE_ENABLE_LABS_SETTING } from '../../common/constants';
interface VisualizationAttributes extends SavedObjectAttributes {
visState: string;
@@ -82,7 +83,7 @@ export class VisualizeEmbeddableFactory
if (!visType) {
return false;
}
- if (getUISettings().get('visualize:enableLabs')) {
+ if (getUISettings().get(VISUALIZE_ENABLE_LABS_SETTING)) {
return true;
}
return visType.stage !== 'experimental';
diff --git a/src/plugins/visualizations/public/index.ts b/src/plugins/visualizations/public/index.ts
index e475684ed5934..0bbf862216ed5 100644
--- a/src/plugins/visualizations/public/index.ts
+++ b/src/plugins/visualizations/public/index.ts
@@ -17,8 +17,6 @@
* under the License.
*/
-import './index.scss';
-
import { PublicContract } from '@kbn/utility-types';
import { PluginInitializerContext } from 'src/core/public';
import { VisualizationsPlugin, VisualizationsSetup, VisualizationsStart } from './plugin';
@@ -53,3 +51,4 @@ export {
VisSavedObject,
VisResponseValue,
} from './types';
+export { VISUALIZE_ENABLE_LABS_SETTING } from '../common/constants';
diff --git a/src/plugins/visualizations/public/plugin.ts b/src/plugins/visualizations/public/plugin.ts
index 20cf6c6337e42..3546fa4056491 100644
--- a/src/plugins/visualizations/public/plugin.ts
+++ b/src/plugins/visualizations/public/plugin.ts
@@ -17,6 +17,8 @@
* under the License.
*/
+import './index.scss';
+
import {
PluginInitializerContext,
CoreSetup,
diff --git a/src/plugins/visualizations/public/wizard/new_vis_modal.tsx b/src/plugins/visualizations/public/wizard/new_vis_modal.tsx
index cea92b1db93aa..1a970e505b7c7 100644
--- a/src/plugins/visualizations/public/wizard/new_vis_modal.tsx
+++ b/src/plugins/visualizations/public/wizard/new_vis_modal.tsx
@@ -29,6 +29,7 @@ import { TypeSelection } from './type_selection';
import { TypesStart, VisType, VisTypeAlias } from '../vis_types';
import { UsageCollectionSetup } from '../../../../plugins/usage_collection/public';
import { EMBEDDABLE_ORIGINATING_APP_PARAM } from '../../../embeddable/public';
+import { VISUALIZE_ENABLE_LABS_SETTING } from '../../common/constants';
interface TypeSelectionProps {
isOpen: boolean;
@@ -65,7 +66,7 @@ class NewVisModal extends React.Component {
- const isLabsEnabled = uiSettings.get('visualize:enableLabs');
+ const isLabsEnabled = uiSettings.get(VISUALIZE_ENABLE_LABS_SETTING);
return savedVisualizations
.findListItems(filter, savedObjectsPublic.settings.getListingLimit())
.then((result) => {
diff --git a/test/functional/apps/bundles/index.js b/test/functional/apps/bundles/index.js
index 503517a98c69e..ead6412564751 100644
--- a/test/functional/apps/bundles/index.js
+++ b/test/functional/apps/bundles/index.js
@@ -25,7 +25,7 @@ export default function ({ getService }) {
const supertest = getService('supertest');
describe('bundle compression', function () {
- this.tags('ciGroup12');
+ this.tags(['ciGroup12', 'skipCoverage']);
let buildNum;
before(async () => {
diff --git a/test/functional/apps/context/_filters.js b/test/functional/apps/context/_filters.js
index 470ef462b9d9d..66888d441954e 100644
--- a/test/functional/apps/context/_filters.js
+++ b/test/functional/apps/context/_filters.js
@@ -17,8 +17,6 @@
* under the License.
*/
-import expect from '@kbn/expect';
-
const TEST_INDEX_PATTERN = 'logstash-*';
const TEST_ANCHOR_ID = 'AU_x3_BrGFA8no6QjjaI';
const TEST_ANCHOR_FILTER_FIELD = 'geo.src';
@@ -40,20 +38,19 @@ export default function ({ getService, getPageObjects }) {
});
it('inclusive filter should be addable via expanded doc table rows', async function () {
- await docTable.toggleRowExpanded({ isAnchorRow: true });
-
- await retry.try(async () => {
+ await retry.waitFor(`filter ${TEST_ANCHOR_FILTER_FIELD} in filterbar`, async () => {
+ await docTable.toggleRowExpanded({ isAnchorRow: true });
const anchorDetailsRow = await docTable.getAnchorDetailsRow();
await docTable.addInclusiveFilter(anchorDetailsRow, TEST_ANCHOR_FILTER_FIELD);
await PageObjects.context.waitUntilContextLoadingHasFinished();
- expect(
- await filterBar.hasFilter(TEST_ANCHOR_FILTER_FIELD, TEST_ANCHOR_FILTER_VALUE, true)
- ).to.be(true);
+
+ return await filterBar.hasFilter(TEST_ANCHOR_FILTER_FIELD, TEST_ANCHOR_FILTER_VALUE, true);
+ });
+ await retry.waitFor(`filter matching docs in docTable`, async () => {
const fields = await docTable.getFields();
- const hasOnlyFilteredRows = fields
+ return fields
.map((row) => row[2])
.every((fieldContent) => fieldContent === TEST_ANCHOR_FILTER_VALUE);
- expect(hasOnlyFilteredRows).to.be(true);
});
});
@@ -64,26 +61,27 @@ export default function ({ getService, getPageObjects }) {
await filterBar.toggleFilterEnabled(TEST_ANCHOR_FILTER_FIELD);
await PageObjects.context.waitUntilContextLoadingHasFinished();
- await retry.try(async () => {
- expect(
- await filterBar.hasFilter(TEST_ANCHOR_FILTER_FIELD, TEST_ANCHOR_FILTER_VALUE, false)
- ).to.be(true);
+ await retry.waitFor(`a disabled filter in filterbar`, async () => {
+ return await filterBar.hasFilter(TEST_ANCHOR_FILTER_FIELD, TEST_ANCHOR_FILTER_VALUE, false);
+ });
+
+ await retry.waitFor('filters are disabled', async () => {
const fields = await docTable.getFields();
const hasOnlyFilteredRows = fields
.map((row) => row[2])
.every((fieldContent) => fieldContent === TEST_ANCHOR_FILTER_VALUE);
- expect(hasOnlyFilteredRows).to.be(false);
+ return hasOnlyFilteredRows === false;
});
});
it('filter for presence should be addable via expanded doc table rows', async function () {
await docTable.toggleRowExpanded({ isAnchorRow: true });
- await retry.try(async () => {
+ await retry.waitFor('an exists filter in the filterbar', async () => {
const anchorDetailsRow = await docTable.getAnchorDetailsRow();
await docTable.addExistsFilter(anchorDetailsRow, TEST_ANCHOR_FILTER_FIELD);
await PageObjects.context.waitUntilContextLoadingHasFinished();
- expect(await filterBar.hasFilter(TEST_ANCHOR_FILTER_FIELD, 'exists', true)).to.be(true);
+ return await filterBar.hasFilter(TEST_ANCHOR_FILTER_FIELD, 'exists', true);
});
});
});
diff --git a/test/functional/apps/context/_size.js b/test/functional/apps/context/_size.js
index 3beb070b50deb..067a23daacb4a 100644
--- a/test/functional/apps/context/_size.js
+++ b/test/functional/apps/context/_size.js
@@ -16,69 +16,69 @@
* specific language governing permissions and limitations
* under the License.
*/
-
-import expect from '@kbn/expect';
-
const TEST_INDEX_PATTERN = 'logstash-*';
const TEST_ANCHOR_ID = 'AU_x3_BrGFA8no6QjjaI';
-const TEST_DEFAULT_CONTEXT_SIZE = 7;
-const TEST_STEP_SIZE = 3;
+const TEST_DEFAULT_CONTEXT_SIZE = 2;
+const TEST_STEP_SIZE = 2;
export default function ({ getService, getPageObjects }) {
const kibanaServer = getService('kibanaServer');
const retry = getService('retry');
const docTable = getService('docTable');
const PageObjects = getPageObjects(['context']);
+ let expectedRowLength = 2 * TEST_DEFAULT_CONTEXT_SIZE + 1;
- // FLAKY: https://github.com/elastic/kibana/issues/53888
- describe.skip('context size', function contextSize() {
+ describe('context size', function contextSize() {
before(async function () {
await kibanaServer.uiSettings.update({
'context:defaultSize': `${TEST_DEFAULT_CONTEXT_SIZE}`,
'context:step': `${TEST_STEP_SIZE}`,
});
+ await PageObjects.context.navigateTo(TEST_INDEX_PATTERN, TEST_ANCHOR_ID);
});
it('should default to the `context:defaultSize` setting', async function () {
- await PageObjects.context.navigateTo(TEST_INDEX_PATTERN, TEST_ANCHOR_ID);
-
- await retry.try(async function () {
- expect(await docTable.getRowsText()).to.have.length(2 * TEST_DEFAULT_CONTEXT_SIZE + 1);
- });
- await retry.try(async function () {
- const predecessorCountPicker = await PageObjects.context.getPredecessorCountPicker();
- expect(await predecessorCountPicker.getAttribute('value')).to.equal(
- `${TEST_DEFAULT_CONTEXT_SIZE}`
- );
- });
- await retry.try(async function () {
- const successorCountPicker = await PageObjects.context.getSuccessorCountPicker();
- expect(await successorCountPicker.getAttribute('value')).to.equal(
- `${TEST_DEFAULT_CONTEXT_SIZE}`
- );
- });
+ await retry.waitFor(
+ `number of rows displayed initially is ${expectedRowLength}`,
+ async function () {
+ const rows = await docTable.getRowsText();
+ return rows.length === expectedRowLength;
+ }
+ );
+ await retry.waitFor(
+ `predecessor count picker is set to ${TEST_DEFAULT_CONTEXT_SIZE}`,
+ async function () {
+ const predecessorCountPicker = await PageObjects.context.getPredecessorCountPicker();
+ const value = await predecessorCountPicker.getAttribute('value');
+ return value === String(TEST_DEFAULT_CONTEXT_SIZE);
+ }
+ );
});
it('should increase according to the `context:step` setting when clicking the `load newer` button', async function () {
- await PageObjects.context.navigateTo(TEST_INDEX_PATTERN, TEST_ANCHOR_ID);
await PageObjects.context.clickPredecessorLoadMoreButton();
+ expectedRowLength += TEST_STEP_SIZE;
- await retry.try(async function () {
- expect(await docTable.getRowsText()).to.have.length(
- 2 * TEST_DEFAULT_CONTEXT_SIZE + TEST_STEP_SIZE + 1
- );
- });
+ await retry.waitFor(
+ `number of rows displayed after clicking load more predecessors is ${expectedRowLength}`,
+ async function () {
+ const rows = await docTable.getRowsText();
+ return rows.length === expectedRowLength;
+ }
+ );
});
it('should increase according to the `context:step` setting when clicking the `load older` button', async function () {
- await PageObjects.context.navigateTo(TEST_INDEX_PATTERN, TEST_ANCHOR_ID);
await PageObjects.context.clickSuccessorLoadMoreButton();
+ expectedRowLength += TEST_STEP_SIZE;
- await retry.try(async function () {
- expect(await docTable.getRowsText()).to.have.length(
- 2 * TEST_DEFAULT_CONTEXT_SIZE + TEST_STEP_SIZE + 1
- );
- });
+ await retry.waitFor(
+ `number of rows displayed after clicking load more successors is ${expectedRowLength}`,
+ async function () {
+ const rows = await docTable.getRowsText();
+ return rows.length === expectedRowLength;
+ }
+ );
});
});
}
diff --git a/test/functional/apps/dashboard/create_and_add_embeddables.js b/test/functional/apps/dashboard/create_and_add_embeddables.js
index ba715f3472b98..f5c2496a9a5aa 100644
--- a/test/functional/apps/dashboard/create_and_add_embeddables.js
+++ b/test/functional/apps/dashboard/create_and_add_embeddables.js
@@ -20,6 +20,7 @@
import expect from '@kbn/expect';
import { VisualizeConstants } from '../../../../src/plugins/visualize/public/application/visualize_constants';
+import { VISUALIZE_ENABLE_LABS_SETTING } from '../../../../src/plugins/visualizations/common/constants';
export default function ({ getService, getPageObjects }) {
const retry = getService('retry');
@@ -102,7 +103,7 @@ export default function ({ getService, getPageObjects }) {
before(async () => {
await PageObjects.header.clickStackManagement();
await PageObjects.settings.clickKibanaSettings();
- await PageObjects.settings.toggleAdvancedSettingCheckbox('visualize:enableLabs');
+ await PageObjects.settings.toggleAdvancedSettingCheckbox(VISUALIZE_ENABLE_LABS_SETTING);
});
it('should not display lab visualizations in add panel', async () => {
@@ -117,7 +118,7 @@ export default function ({ getService, getPageObjects }) {
after(async () => {
await PageObjects.header.clickStackManagement();
await PageObjects.settings.clickKibanaSettings();
- await PageObjects.settings.clearAdvancedSettings('visualize:enableLabs');
+ await PageObjects.settings.clearAdvancedSettings(VISUALIZE_ENABLE_LABS_SETTING);
await PageObjects.header.clickDashboard();
});
});
diff --git a/test/functional/apps/visualize/_lab_mode.js b/test/functional/apps/visualize/_lab_mode.js
index b356d01cdb63b..27c149b9e0e0a 100644
--- a/test/functional/apps/visualize/_lab_mode.js
+++ b/test/functional/apps/visualize/_lab_mode.js
@@ -18,6 +18,7 @@
*/
import expect from '@kbn/expect';
+import { VISUALIZE_ENABLE_LABS_SETTING } from '../../../../src/plugins/visualizations/common/constants';
export default function ({ getService, getPageObjects }) {
const log = getService('log');
@@ -37,7 +38,7 @@ export default function ({ getService, getPageObjects }) {
// Navigate to advanced setting and disable lab mode
await PageObjects.header.clickStackManagement();
await PageObjects.settings.clickKibanaSettings();
- await PageObjects.settings.toggleAdvancedSettingCheckbox('visualize:enableLabs');
+ await PageObjects.settings.toggleAdvancedSettingCheckbox(VISUALIZE_ENABLE_LABS_SETTING);
// Expect the discover still to list that saved visualization in the open list
await PageObjects.header.clickDiscover();
@@ -51,7 +52,7 @@ export default function ({ getService, getPageObjects }) {
await PageObjects.discover.closeLoadSaveSearchPanel();
await PageObjects.header.clickStackManagement();
await PageObjects.settings.clickKibanaSettings();
- await PageObjects.settings.clearAdvancedSettings('visualize:enableLabs');
+ await PageObjects.settings.clearAdvancedSettings(VISUALIZE_ENABLE_LABS_SETTING);
});
});
}
diff --git a/test/functional/apps/visualize/index.ts b/test/functional/apps/visualize/index.ts
index bd427577cd787..42b82486dc13f 100644
--- a/test/functional/apps/visualize/index.ts
+++ b/test/functional/apps/visualize/index.ts
@@ -18,6 +18,7 @@
*/
import { FtrProviderContext } from '../../ftr_provider_context.d';
+import { UI_SETTINGS } from '../../../../src/plugins/data/common';
// eslint-disable-next-line @typescript-eslint/no-namespace, import/no-default-export
export default function ({ getService, getPageObjects, loadTestFile }: FtrProviderContext) {
@@ -37,7 +38,7 @@ export default function ({ getService, getPageObjects, loadTestFile }: FtrProvid
await esArchiver.load('visualize');
await kibanaServer.uiSettings.replace({
defaultIndex: 'logstash-*',
- 'format:bytes:defaultPattern': '0,0.[000]b',
+ [UI_SETTINGS.FORMAT_BYTES_DEFAULT_PATTERN]: '0,0.[000]b',
});
isOss = await PageObjects.common.isOss();
});
diff --git a/test/functional/page_objects/common_page.ts b/test/functional/page_objects/common_page.ts
index 91e9c020a0e7c..fe5694efc35da 100644
--- a/test/functional/page_objects/common_page.ts
+++ b/test/functional/page_objects/common_page.ts
@@ -67,17 +67,17 @@ export function CommonPageProvider({ getService, getPageObjects }: FtrProviderCo
* @param appUrl Kibana URL
*/
private async loginIfPrompted(appUrl: string, insertTimestamp: boolean) {
+ // Disable the welcome screen. This is relevant for environments
+ // which don't allow to use the yml setting, e.g. cloud production.
+ // It is done here so it applies to logins but also to a login re-use.
+ await browser.setLocalStorageItem('home:welcome:show', 'false');
+
let currentUrl = await browser.getCurrentUrl();
log.debug(`currentUrl = ${currentUrl}\n appUrl = ${appUrl}`);
await testSubjects.find('kibanaChrome', 6 * defaultFindTimeout); // 60 sec waiting
const loginPage = currentUrl.includes('/login');
const wantedLoginPage = appUrl.includes('/login') || appUrl.includes('/logout');
- // Disable the welcome screen. This is relevant for environments
- // which don't allow to use the yml setting, e.g. cloud production.
- // It is done here so it applies to logins but also to a login re-use.
- await browser.setLocalStorageItem('home:welcome:show', 'false');
-
if (loginPage && !wantedLoginPage) {
log.debug('Found login page');
if (config.get('security.disableTestUser')) {
diff --git a/test/scripts/jenkins_ci_group.sh b/test/scripts/jenkins_ci_group.sh
index 778142d95e4b4..60d7f0406f4c9 100755
--- a/test/scripts/jenkins_ci_group.sh
+++ b/test/scripts/jenkins_ci_group.sh
@@ -31,4 +31,12 @@ else
mkdir -p ../kibana/target/kibana-coverage/functional
mv target/kibana-coverage/functional/* ../kibana/target/kibana-coverage/functional/
fi
+
+ echo " -> moving junit output, silently fail in case of no report"
+ mkdir -p ../kibana/target/junit
+ mv target/junit/* ../kibana/target/junit/ || echo "copying junit failed"
+
+ echo " -> copying screenshots and html for failures"
+ cp -r test/functional/screenshots/* ../kibana/test/functional/screenshots/ || echo "copying screenshots failed"
+ cp -r test/functional/failure_debug ../kibana/test/functional/ || echo "copying html failed"
fi
diff --git a/test/scripts/jenkins_xpack_ci_group.sh b/test/scripts/jenkins_xpack_ci_group.sh
index a6e600630364e..648605135b359 100755
--- a/test/scripts/jenkins_xpack_ci_group.sh
+++ b/test/scripts/jenkins_xpack_ci_group.sh
@@ -32,4 +32,12 @@ else
mkdir -p ../../kibana/target/kibana-coverage/functional
mv ../target/kibana-coverage/functional/* ../../kibana/target/kibana-coverage/functional/
fi
+
+ echo " -> moving junit output, silently fail in case of no report"
+ mkdir -p ../../kibana/target/junit
+ mv ../target/junit/* ../../kibana/target/junit/ || echo "copying junit failed"
+
+ echo " -> copying screenshots and html for failures"
+ cp -r test/functional/screenshots/* ../../kibana/x-pack/test/functional/screenshots/ || echo "copying screenshots failed"
+ cp -r test/functional/failure_debug ../../kibana/x-pack/test/functional/ || echo "copying html failed"
fi
\ No newline at end of file
diff --git a/test/scripts/jenkins_xpack_page_load_metrics.sh b/test/scripts/jenkins_xpack_page_load_metrics.sh
new file mode 100644
index 0000000000000..679f0b8d2ddc5
--- /dev/null
+++ b/test/scripts/jenkins_xpack_page_load_metrics.sh
@@ -0,0 +1,9 @@
+#!/usr/bin/env bash
+
+source test/scripts/jenkins_test_setup_xpack.sh
+
+checks-reporter-with-killswitch "Capture Kibana page load metrics" \
+ node scripts/functional_tests \
+ --debug --bail \
+ --kibana-install-dir "$installDir" \
+ --config test/page_load_metrics/config.ts;
diff --git a/vars/kibanaCoverage.groovy b/vars/kibanaCoverage.groovy
index 0305f86475a9a..66b16566418b5 100644
--- a/vars/kibanaCoverage.groovy
+++ b/vars/kibanaCoverage.groovy
@@ -98,7 +98,7 @@ def collectVcsInfo(title) {
def generateReports(title) {
kibanaPipeline.bash("""
- source src/dev/ci_setup/setup_env.sh
+ source src/dev/ci_setup/setup_env.sh true
# bootstrap from x-pack folder
cd x-pack
yarn kbn bootstrap --prefer-offline
diff --git a/x-pack/.gitignore b/x-pack/.gitignore
index 92597a101c03d..68262c4bf734b 100644
--- a/x-pack/.gitignore
+++ b/x-pack/.gitignore
@@ -3,8 +3,11 @@
/target
/test/functional/failure_debug
/test/functional/screenshots
+/test/page_load_metrics/screenshots
/test/functional/apps/reporting/reports/session
/test/reporting/configs/failure_debug/
+/legacy/plugins/reporting/.chromium/
+/legacy/plugins/reporting/.phantom/
/plugins/reporting/.chromium/
/plugins/reporting/.phantom/
/.aws-config.json
diff --git a/x-pack/.i18nrc.json b/x-pack/.i18nrc.json
index e453abb3a0f98..85b40d33c4089 100644
--- a/x-pack/.i18nrc.json
+++ b/x-pack/.i18nrc.json
@@ -2,8 +2,7 @@
"prefix": "xpack",
"paths": {
"xpack.actions": "plugins/actions",
- "xpack.advancedUiActions": "plugins/advanced_ui_actions",
- "xpack.uiActionsEnhanced": "examples/ui_actions_enhanced_examples",
+ "xpack.uiActionsEnhanced": ["plugins/ui_actions_enhanced", "examples/ui_actions_enhanced_examples"],
"xpack.alerts": "plugins/alerts",
"xpack.alertingBuiltins": "plugins/alerting_builtins",
"xpack.apm": ["legacy/plugins/apm", "plugins/apm"],
@@ -39,7 +38,7 @@
"xpack.reporting": ["plugins/reporting"],
"xpack.rollupJobs": ["legacy/plugins/rollup", "plugins/rollup"],
"xpack.searchProfiler": "plugins/searchprofiler",
- "xpack.security": ["legacy/plugins/security", "plugins/security"],
+ "xpack.security": "plugins/security",
"xpack.server": "legacy/server",
"xpack.securitySolution": "plugins/security_solution",
"xpack.snapshotRestore": "plugins/snapshot_restore",
@@ -49,7 +48,8 @@
"xpack.triggersActionsUI": "plugins/triggers_actions_ui",
"xpack.upgradeAssistant": "plugins/upgrade_assistant",
"xpack.uptime": ["plugins/uptime"],
- "xpack.watcher": "plugins/watcher"
+ "xpack.watcher": "plugins/watcher",
+ "xpack.observability": "plugins/observability"
},
"translations": [
"plugins/translations/translations/zh-CN.json",
diff --git a/x-pack/README.md b/x-pack/README.md
index 744d97ca02c75..03d2e3287c0f0 100644
--- a/x-pack/README.md
+++ b/x-pack/README.md
@@ -25,8 +25,8 @@ Examples:
- Run the jest test case whose description matches 'filtering should skip values of null':
`cd x-pack && yarn test:jest -t 'filtering should skip values of null' plugins/ml/public/application/explorer/explorer_charts/explorer_charts_container_service.test.js`
- Run the x-pack api integration test case whose description matches the given string:
- `node scripts/functional_tests_server --config x-pack/test/api_integration/config.js`
- `node scripts/functional_test_runner --config x-pack/test/api_integration/config.js --grep='apis Monitoring Beats list with restarted beat instance should load multiple clusters'`
+ `node scripts/functional_tests_server --config x-pack/test/api_integration/config.ts`
+ `node scripts/functional_test_runner --config x-pack/test/api_integration/config.ts --grep='apis Monitoring Beats list with restarted beat instance should load multiple clusters'`
In addition to to providing a regular expression argument, specific tests can also be run by appeding `.only` to an `it` or `describe` function block. E.g. `describe(` to `describe.only(`.
@@ -63,7 +63,7 @@ yarn test:mocha
For more info, see [the Elastic functional test development guide](https://www.elastic.co/guide/en/kibana/current/development-functional-tests.html).
-The functional UI tests, the API integration tests, and the SAML API integration tests are all run against a live browser, Kibana, and Elasticsearch install. Each set of tests is specified with a unique config that describes how to start the Elasticsearch server, the Kibana server, and what tests to run against them. The sets of tests that exist today are *functional UI tests* ([specified by this config](test/functional/config.js)), *API integration tests* ([specified by this config](test/api_integration/config.js)), and *SAML API integration tests* ([specified by this config](test/saml_api_integration/config.js)).
+The functional UI tests, the API integration tests, and the SAML API integration tests are all run against a live browser, Kibana, and Elasticsearch install. Each set of tests is specified with a unique config that describes how to start the Elasticsearch server, the Kibana server, and what tests to run against them. The sets of tests that exist today are *functional UI tests* ([specified by this config](test/functional/config.js)), *API integration tests* ([specified by this config](test/api_integration/config.ts)), and *SAML API integration tests* ([specified by this config](test/saml_api_integration/config.ts)).
The script runs all sets of tests sequentially like so:
* builds Elasticsearch and X-Pack
diff --git a/x-pack/dev-tools/jest/create_jest_config.js b/x-pack/dev-tools/jest/create_jest_config.js
index 01b966ebe359b..74553bbde0cd6 100644
--- a/x-pack/dev-tools/jest/create_jest_config.js
+++ b/x-pack/dev-tools/jest/create_jest_config.js
@@ -43,6 +43,7 @@ export function createJestConfig({ kibanaDirectory, rootDir, xPackKibanaDirector
'!**/scripts/**',
'!**/mocks/**',
'!**/plugins/apm/e2e/**',
+ '!**/plugins/siem/cypress/**',
],
coveragePathIgnorePatterns: ['.*\\.d\\.ts'],
coverageDirectory: `${kibanaDirectory}/target/kibana-coverage/jest`,
diff --git a/x-pack/examples/ui_actions_enhanced_examples/kibana.json b/x-pack/examples/ui_actions_enhanced_examples/kibana.json
index e220cdd5cd297..a1cd895bb3cd6 100644
--- a/x-pack/examples/ui_actions_enhanced_examples/kibana.json
+++ b/x-pack/examples/ui_actions_enhanced_examples/kibana.json
@@ -5,6 +5,6 @@
"configPath": ["ui_actions_enhanced_examples"],
"server": false,
"ui": true,
- "requiredPlugins": ["advancedUiActions", "data"],
+ "requiredPlugins": ["uiActionsEnhanced", "data", "discover"],
"optionalPlugins": []
}
diff --git a/x-pack/examples/ui_actions_enhanced_examples/public/dashboard_hello_world_drilldown/index.tsx b/x-pack/examples/ui_actions_enhanced_examples/public/dashboard_hello_world_drilldown/index.tsx
index 847035403da02..bfe853241ae1d 100644
--- a/x-pack/examples/ui_actions_enhanced_examples/public/dashboard_hello_world_drilldown/index.tsx
+++ b/x-pack/examples/ui_actions_enhanced_examples/public/dashboard_hello_world_drilldown/index.tsx
@@ -7,7 +7,7 @@
import React from 'react';
import { EuiFormRow, EuiFieldText } from '@elastic/eui';
import { reactToUiComponent } from '../../../../../src/plugins/kibana_react/public';
-import { UiActionsEnhancedDrilldownDefinition as Drilldown } from '../../../../plugins/advanced_ui_actions/public';
+import { UiActionsEnhancedDrilldownDefinition as Drilldown } from '../../../../plugins/ui_actions_enhanced/public';
import {
RangeSelectTriggerContext,
ValueClickTriggerContext,
diff --git a/x-pack/examples/ui_actions_enhanced_examples/public/dashboard_to_discover_drilldown/components/discover_drilldown_config/discover_drilldown_config.tsx b/x-pack/examples/ui_actions_enhanced_examples/public/dashboard_to_discover_drilldown/components/discover_drilldown_config/discover_drilldown_config.tsx
index 0237e128c5a2f..da9b0e921fb1c 100644
--- a/x-pack/examples/ui_actions_enhanced_examples/public/dashboard_to_discover_drilldown/components/discover_drilldown_config/discover_drilldown_config.tsx
+++ b/x-pack/examples/ui_actions_enhanced_examples/public/dashboard_to_discover_drilldown/components/discover_drilldown_config/discover_drilldown_config.tsx
@@ -31,9 +31,7 @@ export const DiscoverDrilldownConfig: React.FC = (
onIndexPatternSelect,
customIndexPattern,
onCustomIndexPatternToggle,
- carryFiltersAndQuery,
onCarryFiltersAndQueryToggle,
- carryTimeRange,
onCarryTimeRangeToggle,
}) => {
return (
@@ -82,9 +80,10 @@ export const DiscoverDrilldownConfig: React.FC = (
{!!onCarryFiltersAndQueryToggle && (
@@ -92,9 +91,10 @@ export const DiscoverDrilldownConfig: React.FC = (
{!!onCarryTimeRangeToggle && (
diff --git a/x-pack/examples/ui_actions_enhanced_examples/public/dashboard_to_discover_drilldown/drilldown.tsx b/x-pack/examples/ui_actions_enhanced_examples/public/dashboard_to_discover_drilldown/drilldown.tsx
index fef01c9640f0d..ba88f49861ffe 100644
--- a/x-pack/examples/ui_actions_enhanced_examples/public/dashboard_to_discover_drilldown/drilldown.tsx
+++ b/x-pack/examples/ui_actions_enhanced_examples/public/dashboard_to_discover_drilldown/drilldown.tsx
@@ -11,7 +11,7 @@ import { StartServicesGetter } from '../../../../../src/plugins/kibana_utils/pub
import { ActionContext, Config, CollectConfigProps } from './types';
import { CollectConfigContainer } from './collect_config_container';
import { SAMPLE_DASHBOARD_TO_DISCOVER_DRILLDOWN } from './constants';
-import { UiActionsEnhancedDrilldownDefinition as Drilldown } from '../../../../plugins/advanced_ui_actions/public';
+import { UiActionsEnhancedDrilldownDefinition as Drilldown } from '../../../../plugins/ui_actions_enhanced/public';
import { txtGoToDiscover } from './i18n';
const isOutputWithIndexPatterns = (
@@ -22,7 +22,7 @@ const isOutputWithIndexPatterns = (
};
export interface Params {
- start: StartServicesGetter>;
+ start: StartServicesGetter>;
}
export class DashboardToDiscoverDrilldown implements Drilldown {
@@ -54,6 +54,10 @@ export class DashboardToDiscoverDrilldown implements Drilldown => {
+ const { urlGenerator } = this.params.start().plugins.discover;
+
+ if (!urlGenerator) throw new Error('Discover URL generator not available.');
+
let indexPatternId =
!!config.customIndexPattern && !!config.indexPatternId ? config.indexPatternId : '';
@@ -64,8 +68,9 @@ export class DashboardToDiscoverDrilldown implements Drilldown => {
diff --git a/x-pack/examples/ui_actions_enhanced_examples/public/dashboard_to_url_drilldown/index.tsx b/x-pack/examples/ui_actions_enhanced_examples/public/dashboard_to_url_drilldown/index.tsx
index 20267a8b7292b..4810fb2d6ad8d 100644
--- a/x-pack/examples/ui_actions_enhanced_examples/public/dashboard_to_url_drilldown/index.tsx
+++ b/x-pack/examples/ui_actions_enhanced_examples/public/dashboard_to_url_drilldown/index.tsx
@@ -7,7 +7,7 @@
import React from 'react';
import { EuiFormRow, EuiSwitch, EuiFieldText, EuiCallOut, EuiSpacer } from '@elastic/eui';
import { reactToUiComponent } from '../../../../../src/plugins/kibana_react/public';
-import { UiActionsEnhancedDrilldownDefinition as Drilldown } from '../../../../plugins/advanced_ui_actions/public';
+import { UiActionsEnhancedDrilldownDefinition as Drilldown } from '../../../../plugins/ui_actions_enhanced/public';
import {
RangeSelectTriggerContext,
ValueClickTriggerContext,
diff --git a/x-pack/examples/ui_actions_enhanced_examples/public/plugin.ts b/x-pack/examples/ui_actions_enhanced_examples/public/plugin.ts
index 0d4f274caf57f..8034c378cc64f 100644
--- a/x-pack/examples/ui_actions_enhanced_examples/public/plugin.ts
+++ b/x-pack/examples/ui_actions_enhanced_examples/public/plugin.ts
@@ -9,27 +9,30 @@ import { DataPublicPluginSetup, DataPublicPluginStart } from '../../../../src/pl
import {
AdvancedUiActionsSetup,
AdvancedUiActionsStart,
-} from '../../../../x-pack/plugins/advanced_ui_actions/public';
+} from '../../../../x-pack/plugins/ui_actions_enhanced/public';
import { DashboardHelloWorldDrilldown } from './dashboard_hello_world_drilldown';
import { DashboardToUrlDrilldown } from './dashboard_to_url_drilldown';
import { DashboardToDiscoverDrilldown } from './dashboard_to_discover_drilldown';
import { createStartServicesGetter } from '../../../../src/plugins/kibana_utils/public';
+import { DiscoverSetup, DiscoverStart } from '../../../../src/plugins/discover/public';
export interface SetupDependencies {
data: DataPublicPluginSetup;
- advancedUiActions: AdvancedUiActionsSetup;
+ discover: DiscoverSetup;
+ uiActionsEnhanced: AdvancedUiActionsSetup;
}
export interface StartDependencies {
data: DataPublicPluginStart;
- advancedUiActions: AdvancedUiActionsStart;
+ discover: DiscoverStart;
+ uiActionsEnhanced: AdvancedUiActionsStart;
}
export class UiActionsEnhancedExamplesPlugin
implements Plugin {
public setup(
core: CoreSetup,
- { advancedUiActions: uiActions }: SetupDependencies
+ { uiActionsEnhanced: uiActions }: SetupDependencies
) {
const start = createStartServicesGetter(core.getStartServices);
diff --git a/x-pack/legacy/plugins/beats_management/readme.md b/x-pack/legacy/plugins/beats_management/readme.md
index 301caad683dd5..3414f09deed46 100644
--- a/x-pack/legacy/plugins/beats_management/readme.md
+++ b/x-pack/legacy/plugins/beats_management/readme.md
@@ -15,7 +15,7 @@ In one shell, from **~/kibana/x-pack**:
`node scripts/functional_tests-server.js`
In another shell, from **~kibana/x-pack**:
-`node ../scripts/functional_test_runner.js --config test/api_integration/config.js`.
+`node ../scripts/functional_test_runner.js --config test/api_integration/config.ts`.
### Manual e2e testing
diff --git a/x-pack/legacy/plugins/beats_management/server/lib/adapters/framework/adapter_types.ts b/x-pack/legacy/plugins/beats_management/server/lib/adapters/framework/adapter_types.ts
index bb1f68e1c03b3..80599f38d982a 100644
--- a/x-pack/legacy/plugins/beats_management/server/lib/adapters/framework/adapter_types.ts
+++ b/x-pack/legacy/plugins/beats_management/server/lib/adapters/framework/adapter_types.ts
@@ -8,6 +8,7 @@
import { Lifecycle, ResponseToolkit } from 'hapi';
import * as t from 'io-ts';
+import { SecurityPluginSetup } from '../../../../../../../plugins/security/server';
import { LicenseType } from '../../../../common/constants/security';
export const internalAuthData = Symbol('internalAuthData');
@@ -39,6 +40,11 @@ export interface BackendFrameworkAdapter {
}
export interface KibanaLegacyServer {
+ newPlatform: {
+ setup: {
+ plugins: { security: SecurityPluginSetup };
+ };
+ };
plugins: {
xpack_main: {
status: {
@@ -53,9 +59,6 @@ export interface KibanaLegacyServer {
};
};
};
- security: {
- getUser: (request: KibanaServerRequest) => any;
- };
elasticsearch: {
status: {
on: (status: 'green' | 'yellow' | 'red', callback: () => void) => void;
diff --git a/x-pack/legacy/plugins/beats_management/server/lib/adapters/framework/kibana_framework_adapter.ts b/x-pack/legacy/plugins/beats_management/server/lib/adapters/framework/kibana_framework_adapter.ts
index 589f34ac74601..1bf9bbb22b352 100644
--- a/x-pack/legacy/plugins/beats_management/server/lib/adapters/framework/kibana_framework_adapter.ts
+++ b/x-pack/legacy/plugins/beats_management/server/lib/adapters/framework/kibana_framework_adapter.ts
@@ -8,6 +8,7 @@ import { ResponseToolkit } from 'hapi';
import { PathReporter } from 'io-ts/lib/PathReporter';
import { get } from 'lodash';
import { isLeft } from 'fp-ts/lib/Either';
+import { KibanaRequest, LegacyRequest } from '../../../../../../../../src/core/server';
// @ts-ignore
import { mirrorPluginStatus } from '../../../../../../server/lib/mirror_plugin_status';
import {
@@ -128,13 +129,10 @@ export class KibanaBackendFrameworkAdapter implements BackendFrameworkAdapter {
}
private async getUser(request: KibanaServerRequest): Promise {
- let user;
- try {
- user = await this.server.plugins.security.getUser(request);
- } catch (e) {
- return null;
- }
- if (user === null) {
+ const user = this.server.newPlatform.setup.plugins.security?.authc.getCurrentUser(
+ KibanaRequest.from((request as unknown) as LegacyRequest)
+ );
+ if (!user) {
return null;
}
const assertKibanaUser = RuntimeKibanaUser.decode(user);
diff --git a/x-pack/legacy/plugins/reporting/.chromium/chromium-312d84c-darwin.zip b/x-pack/legacy/plugins/reporting/.chromium/chromium-312d84c-darwin.zip
deleted file mode 100644
index 07cd5365424be..0000000000000
Binary files a/x-pack/legacy/plugins/reporting/.chromium/chromium-312d84c-darwin.zip and /dev/null differ
diff --git a/x-pack/legacy/plugins/reporting/.chromium/chromium-312d84c-linux.zip b/x-pack/legacy/plugins/reporting/.chromium/chromium-312d84c-linux.zip
deleted file mode 100644
index 9d5a18ff3a906..0000000000000
Binary files a/x-pack/legacy/plugins/reporting/.chromium/chromium-312d84c-linux.zip and /dev/null differ
diff --git a/x-pack/legacy/plugins/reporting/.chromium/chromium-312d84c-windows.zip b/x-pack/legacy/plugins/reporting/.chromium/chromium-312d84c-windows.zip
deleted file mode 100644
index 43aa95c8f14b3..0000000000000
Binary files a/x-pack/legacy/plugins/reporting/.chromium/chromium-312d84c-windows.zip and /dev/null differ
diff --git a/x-pack/legacy/plugins/security/index.ts b/x-pack/legacy/plugins/security/index.ts
index 41371fcbc4c65..addeef34f63bf 100644
--- a/x-pack/legacy/plugins/security/index.ts
+++ b/x-pack/legacy/plugins/security/index.ts
@@ -6,64 +6,17 @@
import { Root } from 'joi';
import { resolve } from 'path';
-import { Server } from 'src/legacy/server/kbn_server';
-import { KibanaRequest, LegacyRequest } from '../../../../src/core/server';
-// @ts-ignore
-import { watchStatusAndLicenseToInitialize } from '../../server/lib/watch_status_and_license_to_initialize';
-import { AuthenticatedUser, SecurityPluginSetup } from '../../../plugins/security/server';
-
-/**
- * Public interface of the security plugin.
- */
-export interface SecurityPlugin {
- getUser: (request: LegacyRequest) => Promise;
-}
-
-function getSecurityPluginSetup(server: Server) {
- const securityPlugin = server.newPlatform.setup.plugins.security as SecurityPluginSetup;
- if (!securityPlugin) {
- throw new Error('Kibana Platform Security plugin is not available.');
- }
-
- return securityPlugin;
-}
export const security = (kibana: Record) =>
new kibana.Plugin({
id: 'security',
publicDir: resolve(__dirname, 'public'),
- require: ['kibana', 'xpack_main'],
+ require: ['kibana'],
configPrefix: 'xpack.security',
- uiExports: {
- hacks: ['plugins/security/hacks/legacy'],
- injectDefaultVars: (server: Server) => {
- return { enableSpaceAwarePrivileges: server.config().get('xpack.spaces.enabled') };
- },
- },
-
- config(Joi: Root) {
- return Joi.object({
- enabled: Joi.boolean().default(true),
- })
+ uiExports: { hacks: ['plugins/security/hacks/legacy'] },
+ config: (Joi: Root) =>
+ Joi.object({ enabled: Joi.boolean().default(true) })
.unknown()
- .default();
- },
-
- async postInit(server: Server) {
- watchStatusAndLicenseToInitialize(server.plugins.xpack_main, this, async () => {
- const xpackInfo = server.plugins.xpack_main.info;
- if (xpackInfo.isAvailable() && xpackInfo.feature('security').isEnabled()) {
- await getSecurityPluginSetup(server).__legacyCompat.registerPrivilegesWithCluster();
- }
- });
- },
-
- async init(server: Server) {
- const securityPlugin = getSecurityPluginSetup(server);
-
- server.expose({
- getUser: async (request: LegacyRequest) =>
- securityPlugin.authc.getCurrentUser(KibanaRequest.from(request)),
- });
- },
+ .default(),
+ init() {},
});
diff --git a/x-pack/plugins/actions/server/builtin_action_types/case/types.ts b/x-pack/plugins/actions/server/builtin_action_types/case/types.ts
index 459e9d2b03f92..992b2cb16fb06 100644
--- a/x-pack/plugins/actions/server/builtin_action_types/case/types.ts
+++ b/x-pack/plugins/actions/server/builtin_action_types/case/types.ts
@@ -21,6 +21,7 @@ import {
ExecutorSubActionGetIncidentParamsSchema,
ExecutorSubActionHandshakeParamsSchema,
} from './schema';
+import { LicenseType } from '../../../../../legacy/common/constants';
export interface AnyParams {
[index: string]: string | number | object | undefined | null;
@@ -51,6 +52,7 @@ export type Comment = TypeOf;
export interface ExternalServiceConfiguration {
id: string;
name: string;
+ minimumLicenseRequired: LicenseType;
}
export interface ExternalServiceCredentials {
diff --git a/x-pack/plugins/actions/server/builtin_action_types/case/utils.ts b/x-pack/plugins/actions/server/builtin_action_types/case/utils.ts
index 315d13b5aa773..dd8d971b7df44 100644
--- a/x-pack/plugins/actions/server/builtin_action_types/case/utils.ts
+++ b/x-pack/plugins/actions/server/builtin_action_types/case/utils.ts
@@ -120,9 +120,7 @@ export const createConnector = ({
configurationUtilities,
executor = createConnectorExecutor({ api, createExternalService }),
}: CreateActionTypeArgs): ActionType => ({
- id: config.id,
- name: config.name,
- minimumLicenseRequired: 'platinum',
+ ...config,
validate: {
config: schema.object(validationSchema.config, {
validate: curry(validate.config)(configurationUtilities),
diff --git a/x-pack/plugins/actions/server/builtin_action_types/jira/config.ts b/x-pack/plugins/actions/server/builtin_action_types/jira/config.ts
index 7e415109f1bd9..54f28e447010a 100644
--- a/x-pack/plugins/actions/server/builtin_action_types/jira/config.ts
+++ b/x-pack/plugins/actions/server/builtin_action_types/jira/config.ts
@@ -10,4 +10,5 @@ import * as i18n from './translations';
export const config: ExternalServiceConfiguration = {
id: '.jira',
name: i18n.NAME,
+ minimumLicenseRequired: 'gold',
};
diff --git a/x-pack/plugins/actions/server/builtin_action_types/servicenow/config.ts b/x-pack/plugins/actions/server/builtin_action_types/servicenow/config.ts
index 4ad8108c3b137..70d53ab79f631 100644
--- a/x-pack/plugins/actions/server/builtin_action_types/servicenow/config.ts
+++ b/x-pack/plugins/actions/server/builtin_action_types/servicenow/config.ts
@@ -10,4 +10,5 @@ import * as i18n from './translations';
export const config: ExternalServiceConfiguration = {
id: '.servicenow',
name: i18n.NAME,
+ minimumLicenseRequired: 'platinum',
};
diff --git a/x-pack/plugins/apm/public/application/index.tsx b/x-pack/plugins/apm/public/application/index.tsx
index cb8600ed2c214..56c427e67ad4c 100644
--- a/x-pack/plugins/apm/public/application/index.tsx
+++ b/x-pack/plugins/apm/public/application/index.tsx
@@ -9,6 +9,7 @@ import React from 'react';
import ReactDOM from 'react-dom';
import { Route, Router, Switch } from 'react-router-dom';
import styled from 'styled-components';
+import { EuiThemeProvider } from '../../../observability/public';
import { CoreStart, AppMountParameters } from '../../../../../src/core/public';
import { ApmPluginSetupDeps } from '../plugin';
import { ApmPluginContext } from '../context/ApmPluginContext';
@@ -18,7 +19,10 @@ import { LocationProvider } from '../context/LocationContext';
import { MatchedRouteProvider } from '../context/MatchedRouteContext';
import { UrlParamsProvider } from '../context/UrlParamsContext';
import { AlertsContextProvider } from '../../../triggers_actions_ui/public';
-import { KibanaContextProvider } from '../../../../../src/plugins/kibana_react/public';
+import {
+ KibanaContextProvider,
+ useUiSetting$,
+} from '../../../../../src/plugins/kibana_react/public';
import { px, unit, units } from '../style/variables';
import { UpdateBreadcrumbs } from '../components/app/Main/UpdateBreadcrumbs';
import { APMIndicesPermission } from '../components/app/APMIndicesPermission';
@@ -35,18 +39,22 @@ const MainContainer = styled.div`
`;
const App = () => {
+ const [darkMode] = useUiSetting$('theme:darkMode');
+
return (
-
-
-
-
-
- {routes.map((route, i) => (
-
- ))}
-
-
-
+
+
+
+
+
+
+ {routes.map((route, i) => (
+
+ ))}
+
+
+
+
);
};
diff --git a/x-pack/plugins/apm/public/components/app/Settings/AgentConfigurations/AgentConfigurationCreateEdit/index.tsx b/x-pack/plugins/apm/public/components/app/Settings/AgentConfigurations/AgentConfigurationCreateEdit/index.tsx
index 5bb678d1c08af..50eb85715969a 100644
--- a/x-pack/plugins/apm/public/components/app/Settings/AgentConfigurations/AgentConfigurationCreateEdit/index.tsx
+++ b/x-pack/plugins/apm/public/components/app/Settings/AgentConfigurations/AgentConfigurationCreateEdit/index.tsx
@@ -79,6 +79,7 @@ export function AgentConfigurationCreateEdit({
..._newConfig,
settings: existingConfig?.settings || {},
}));
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
}, [existingConfig]);
// update newConfig when existingConfig has loaded
diff --git a/x-pack/plugins/apm/public/components/app/TransactionDetails/Distribution/index.tsx b/x-pack/plugins/apm/public/components/app/TransactionDetails/Distribution/index.tsx
index d39ad530c1b4c..1244dd01a3b43 100644
--- a/x-pack/plugins/apm/public/components/app/TransactionDetails/Distribution/index.tsx
+++ b/x-pack/plugins/apm/public/components/app/TransactionDetails/Distribution/index.tsx
@@ -109,10 +109,12 @@ export const TransactionDistribution: FunctionComponent = (
bucketIndex,
} = props;
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const formatYShort = useCallback(getFormatYShort(transactionType), [
transactionType,
]);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const formatYLong = useCallback(getFormatYLong(transactionType), [
transactionType,
]);
diff --git a/x-pack/plugins/apm/public/components/shared/TransactionActionMenu/TransactionActionMenu.tsx b/x-pack/plugins/apm/public/components/shared/TransactionActionMenu/TransactionActionMenu.tsx
index 988edb197a230..2507eca9ff663 100644
--- a/x-pack/plugins/apm/public/components/shared/TransactionActionMenu/TransactionActionMenu.tsx
+++ b/x-pack/plugins/apm/public/components/shared/TransactionActionMenu/TransactionActionMenu.tsx
@@ -66,6 +66,7 @@ export const TransactionActionMenu: FunctionComponent = ({
{ key: 'transaction.name', value: transaction?.transaction.name },
{ key: 'transaction.type', value: transaction?.transaction.type },
].filter((filter): filter is Filter => typeof filter.value === 'string'),
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[transaction]
);
diff --git a/x-pack/plugins/apm/public/hooks/useFetcher.test.tsx b/x-pack/plugins/apm/public/hooks/useFetcher.test.tsx
index 28b836cd2c650..2db4659c83603 100644
--- a/x-pack/plugins/apm/public/hooks/useFetcher.test.tsx
+++ b/x-pack/plugins/apm/public/hooks/useFetcher.test.tsx
@@ -106,6 +106,7 @@ describe('useFetcher', () => {
jest.useFakeTimers();
const hook = renderHook(
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
({ callback, args }) => useFetcher(callback, args),
{
initialProps: {
@@ -165,6 +166,7 @@ describe('useFetcher', () => {
it('should return the same object reference when data is unchanged between rerenders', async () => {
const hook = renderHook(
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
({ callback, args }) => useFetcher(callback, args),
{
initialProps: {
diff --git a/x-pack/plugins/apm/public/plugin.ts b/x-pack/plugins/apm/public/plugin.ts
index 76320efe617ea..0939c51b16605 100644
--- a/x-pack/plugins/apm/public/plugin.ts
+++ b/x-pack/plugins/apm/public/plugin.ts
@@ -75,7 +75,7 @@ export class ApmPlugin implements Plugin {
core.application.register({
id: 'apm',
title: 'APM',
- order: 8100,
+ order: 8300,
euiIconType: 'apmApp',
appRoute: '/app/apm',
icon: 'plugins/apm/public/icon.svg',
diff --git a/x-pack/plugins/apm/readme.md b/x-pack/plugins/apm/readme.md
index ceed5e6c39716..cb694712d7c97 100644
--- a/x-pack/plugins/apm/readme.md
+++ b/x-pack/plugins/apm/readme.md
@@ -83,13 +83,13 @@ For debugging access Elasticsearch on http://localhost:9220` (elastic/changeme)
**Start server**
```
-node scripts/functional_tests_server --config x-pack/test/api_integration/config.js
+node scripts/functional_tests_server --config x-pack/test/api_integration/config.ts
```
**Run tests**
```
-node scripts/functional_test_runner --config x-pack/test/api_integration/config.js --grep='APM specs'
+node scripts/functional_test_runner --config x-pack/test/api_integration/config.ts --grep='APM specs'
```
APM tests are located in `x-pack/test/api_integration/apis/apm`.
diff --git a/x-pack/plugins/apm/server/lib/helpers/es_client.ts b/x-pack/plugins/apm/server/lib/helpers/es_client.ts
index c7a17197ca778..892f8f0ddd105 100644
--- a/x-pack/plugins/apm/server/lib/helpers/es_client.ts
+++ b/x-pack/plugins/apm/server/lib/helpers/es_client.ts
@@ -19,6 +19,7 @@ import {
ESSearchRequest,
ESSearchResponse,
} from '../../../typings/elasticsearch';
+import { UI_SETTINGS } from '../../../../../../src/plugins/data/server';
import { OBSERVER_VERSION_MAJOR } from '../../../common/elasticsearch_fieldnames';
import { pickKeys } from '../../../common/utils/pick_keys';
import { APMRequestHandlerContext } from '../../routes/typings';
@@ -95,7 +96,7 @@ async function getParamsForSearchRequest(
savedObjectsClient: context.core.savedObjects.client,
config: context.config,
}),
- uiSettings.client.get('search:includeFrozen'),
+ uiSettings.client.get(UI_SETTINGS.SEARCH_INCLUDE_FROZEN),
]);
// Get indices for legacy data filter (only those which apply)
diff --git a/x-pack/plugins/canvas/canvas_plugin_src/elements/metric/index.ts b/x-pack/plugins/canvas/canvas_plugin_src/elements/metric/index.ts
index 7256657903aab..14409ae166a84 100644
--- a/x-pack/plugins/canvas/canvas_plugin_src/elements/metric/index.ts
+++ b/x-pack/plugins/canvas/canvas_plugin_src/elements/metric/index.ts
@@ -7,6 +7,7 @@
import { openSans } from '../../../common/lib/fonts';
import { ElementFactory } from '../../../types';
import { SetupInitializer } from '../../plugin';
+import { UI_SETTINGS } from '../../../../../../src/plugins/data/public';
export const metricElementInitializer: SetupInitializer = (core, setup) => {
return () => ({
@@ -23,7 +24,7 @@ export const metricElementInitializer: SetupInitializer = (core,
| metric "Countries"
metricFont={font size=48 family="${openSans.value}" color="#000000" align="center" lHeight=48}
labelFont={font size=14 family="${openSans.value}" color="#000000" align="center"}
- metricFormat="${core.uiSettings.get('format:number:defaultPattern')}"
+ metricFormat="${core.uiSettings.get(UI_SETTINGS.FORMAT_NUMBER_DEFAULT_PATTERN)}"
| render`,
});
};
diff --git a/x-pack/plugins/canvas/canvas_plugin_src/renderers/time_filter/index.tsx b/x-pack/plugins/canvas/canvas_plugin_src/renderers/time_filter/index.tsx
index ef5bfb70d4b3d..25278adcf4529 100644
--- a/x-pack/plugins/canvas/canvas_plugin_src/renderers/time_filter/index.tsx
+++ b/x-pack/plugins/canvas/canvas_plugin_src/renderers/time_filter/index.tsx
@@ -7,6 +7,7 @@
import ReactDOM from 'react-dom';
import React from 'react';
import { toExpression } from '@kbn/interpreter/common';
+import { UI_SETTINGS } from '../../../../../../src/plugins/data/public';
import { syncFilterExpression } from '../../../public/lib/sync_filter_expression';
import { RendererStrings } from '../../../i18n';
import { TimeFilter } from './components';
@@ -20,7 +21,7 @@ const { timeFilter: strings } = RendererStrings;
export const timeFilterFactory: StartInitializer> = (core, plugins) => {
const { uiSettings } = core;
- const customQuickRanges = (uiSettings.get('timepicker:quickRanges') || []).map(
+ const customQuickRanges = (uiSettings.get(UI_SETTINGS.TIMEPICKER_QUICK_RANGES) || []).map(
({ from, to, display }: { from: string; to: string; display: string }) => ({
start: from,
end: to,
diff --git a/x-pack/plugins/canvas/canvas_plugin_src/uis/arguments/number_format/index.ts b/x-pack/plugins/canvas/canvas_plugin_src/uis/arguments/number_format/index.ts
index 4025d4deaf997..5a3e3904f4f23 100644
--- a/x-pack/plugins/canvas/canvas_plugin_src/uis/arguments/number_format/index.ts
+++ b/x-pack/plugins/canvas/canvas_plugin_src/uis/arguments/number_format/index.ts
@@ -11,6 +11,7 @@ import { templateFromReactComponent } from '../../../../public/lib/template_from
import { ArgumentFactory } from '../../../../types/arguments';
import { ArgumentStrings } from '../../../../i18n';
import { SetupInitializer } from '../../../plugin';
+import { UI_SETTINGS } from '../../../../../../../src/plugins/data/public';
const { NumberFormat: strings } = ArgumentStrings;
@@ -19,11 +20,11 @@ export const numberFormatInitializer: SetupInitializer {
const formatMap = {
- NUMBER: core.uiSettings.get('format:number:defaultPattern'),
- PERCENT: core.uiSettings.get('format:percent:defaultPattern'),
- CURRENCY: core.uiSettings.get('format:currency:defaultPattern'),
+ NUMBER: core.uiSettings.get(UI_SETTINGS.FORMAT_NUMBER_DEFAULT_PATTERN),
+ PERCENT: core.uiSettings.get(UI_SETTINGS.FORMAT_PERCENT_DEFAULT_PATTERN),
+ CURRENCY: core.uiSettings.get(UI_SETTINGS.FORMAT_CURRENCY_DEFAULT_PATTERN),
DURATION: '00:00:00',
- BYTES: core.uiSettings.get('format:bytes:defaultPattern'),
+ BYTES: core.uiSettings.get(UI_SETTINGS.FORMAT_BYTES_DEFAULT_PATTERN),
};
const numberFormats = [
diff --git a/x-pack/plugins/canvas/canvas_plugin_src/uis/views/metric.ts b/x-pack/plugins/canvas/canvas_plugin_src/uis/views/metric.ts
index 93912b7b0517f..11bee46088576 100644
--- a/x-pack/plugins/canvas/canvas_plugin_src/uis/views/metric.ts
+++ b/x-pack/plugins/canvas/canvas_plugin_src/uis/views/metric.ts
@@ -7,6 +7,7 @@
import { openSans } from '../../../common/lib/fonts';
import { ViewStrings } from '../../../i18n';
import { SetupInitializer } from '../../plugin';
+import { UI_SETTINGS } from '../../../../../../src/plugins/data/public';
const { Metric: strings } = ViewStrings;
@@ -22,7 +23,7 @@ export const metricInitializer: SetupInitializer = (core, plugin) => {
displayName: strings.getMetricFormatDisplayName(),
help: strings.getMetricFormatHelp(),
argType: 'numberFormat',
- default: `"${core.uiSettings.get('format:number:defaultPattern')}"`,
+ default: `"${core.uiSettings.get(UI_SETTINGS.FORMAT_NUMBER_DEFAULT_PATTERN)}"`,
},
{
name: '_',
diff --git a/x-pack/plugins/dashboard_enhanced/kibana.json b/x-pack/plugins/dashboard_enhanced/kibana.json
index f416ca97f7110..37211ea537179 100644
--- a/x-pack/plugins/dashboard_enhanced/kibana.json
+++ b/x-pack/plugins/dashboard_enhanced/kibana.json
@@ -3,6 +3,6 @@
"version": "kibana",
"server": false,
"ui": true,
- "requiredPlugins": ["data", "advancedUiActions", "drilldowns", "embeddable", "dashboard", "share"],
+ "requiredPlugins": ["data", "uiActionsEnhanced", "drilldowns", "embeddable", "dashboard", "share"],
"configPath": ["xpack", "dashboardEnhanced"]
}
diff --git a/x-pack/plugins/dashboard_enhanced/public/plugin.ts b/x-pack/plugins/dashboard_enhanced/public/plugin.ts
index c258a4148f84a..413f5a7afe356 100644
--- a/x-pack/plugins/dashboard_enhanced/public/plugin.ts
+++ b/x-pack/plugins/dashboard_enhanced/public/plugin.ts
@@ -9,19 +9,19 @@ import { SharePluginStart, SharePluginSetup } from '../../../../src/plugins/shar
import { EmbeddableSetup, EmbeddableStart } from '../../../../src/plugins/embeddable/public';
import { DashboardDrilldownsService } from './services';
import { DataPublicPluginStart } from '../../../../src/plugins/data/public';
-import { AdvancedUiActionsSetup, AdvancedUiActionsStart } from '../../advanced_ui_actions/public';
+import { AdvancedUiActionsSetup, AdvancedUiActionsStart } from '../../ui_actions_enhanced/public';
import { DrilldownsSetup, DrilldownsStart } from '../../drilldowns/public';
import { DashboardStart } from '../../../../src/plugins/dashboard/public';
export interface SetupDependencies {
- advancedUiActions: AdvancedUiActionsSetup;
+ uiActionsEnhanced: AdvancedUiActionsSetup;
drilldowns: DrilldownsSetup;
embeddable: EmbeddableSetup;
share: SharePluginSetup;
}
export interface StartDependencies {
- advancedUiActions: AdvancedUiActionsStart;
+ uiActionsEnhanced: AdvancedUiActionsStart;
data: DataPublicPluginStart;
drilldowns: DrilldownsStart;
embeddable: EmbeddableStart;
diff --git a/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/actions/flyout_edit_drilldown/flyout_edit_drilldown.test.tsx b/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/actions/flyout_edit_drilldown/flyout_edit_drilldown.test.tsx
index 555acf1fca5ff..309e6cbf53a3d 100644
--- a/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/actions/flyout_edit_drilldown/flyout_edit_drilldown.test.tsx
+++ b/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/actions/flyout_edit_drilldown/flyout_edit_drilldown.test.tsx
@@ -8,7 +8,7 @@ import { FlyoutEditDrilldownAction, FlyoutEditDrilldownParams } from './flyout_e
import { coreMock } from '../../../../../../../../src/core/public/mocks';
import { drilldownsPluginMock } from '../../../../../../drilldowns/public/mocks';
import { ViewMode } from '../../../../../../../../src/plugins/embeddable/public';
-import { uiActionsEnhancedPluginMock } from '../../../../../../advanced_ui_actions/public/mocks';
+import { uiActionsEnhancedPluginMock } from '../../../../../../ui_actions_enhanced/public/mocks';
import { EnhancedEmbeddable } from '../../../../../../embeddable_enhanced/public';
import { MockEmbeddable, enhanceEmbeddable } from '../test_helpers';
diff --git a/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/actions/flyout_edit_drilldown/menu_item.test.tsx b/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/actions/flyout_edit_drilldown/menu_item.test.tsx
index ec3a78e97eae4..9a4ecb2d4bfb0 100644
--- a/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/actions/flyout_edit_drilldown/menu_item.test.tsx
+++ b/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/actions/flyout_edit_drilldown/menu_item.test.tsx
@@ -8,7 +8,7 @@ import React from 'react';
import { render, cleanup, act } from '@testing-library/react/pure';
import { MenuItem } from './menu_item';
import { createStateContainer } from '../../../../../../../../src/plugins/kibana_utils/public';
-import { UiActionsEnhancedDynamicActionManager as DynamicActionManager } from '../../../../../../advanced_ui_actions/public';
+import { UiActionsEnhancedDynamicActionManager as DynamicActionManager } from '../../../../../../ui_actions_enhanced/public';
import { EnhancedEmbeddable } from '../../../../../../embeddable_enhanced/public';
import '@testing-library/jest-dom';
diff --git a/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/actions/test_helpers.ts b/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/actions/test_helpers.ts
index cccacf701a9ad..e831f87baa11c 100644
--- a/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/actions/test_helpers.ts
+++ b/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/actions/test_helpers.ts
@@ -10,9 +10,9 @@ import {
UiActionsEnhancedMemoryActionStorage as MemoryActionStorage,
UiActionsEnhancedDynamicActionManager as DynamicActionManager,
AdvancedUiActionsStart,
-} from '../../../../../advanced_ui_actions/public';
+} from '../../../../../ui_actions_enhanced/public';
import { TriggerContextMapping } from '../../../../../../../src/plugins/ui_actions/public';
-import { uiActionsEnhancedPluginMock } from '../../../../../advanced_ui_actions/public/mocks';
+import { uiActionsEnhancedPluginMock } from '../../../../../ui_actions_enhanced/public/mocks';
export class MockEmbeddable extends Embeddable {
public rootType = 'dashboard';
diff --git a/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/dashboard_drilldowns_services.ts b/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/dashboard_drilldowns_services.ts
index f5926cd6961c2..4325e3309b898 100644
--- a/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/dashboard_drilldowns_services.ts
+++ b/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/dashboard_drilldowns_services.ts
@@ -41,7 +41,7 @@ export class DashboardDrilldownsService {
setupDrilldowns(
core: CoreSetup,
- { advancedUiActions: uiActions }: SetupDependencies
+ { uiActionsEnhanced: uiActions }: SetupDependencies
) {
const start = createStartServicesGetter(core.getStartServices);
const getDashboardUrlGenerator = () => {
diff --git a/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/dashboard_to_dashboard_drilldown/drilldown.test.tsx b/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/dashboard_to_dashboard_drilldown/drilldown.test.tsx
index c94d19d28e6da..6ce7dccd3a3ec 100644
--- a/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/dashboard_to_dashboard_drilldown/drilldown.test.tsx
+++ b/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/dashboard_to_dashboard_drilldown/drilldown.test.tsx
@@ -101,13 +101,13 @@ describe('.execute() & getHref', () => {
},
},
plugins: {
- advancedUiActions: {},
+ uiActionsEnhanced: {},
data: {
actions: dataPluginActions,
},
},
self: {},
- })) as unknown) as StartServicesGetter>,
+ })) as unknown) as StartServicesGetter>,
getDashboardUrlGenerator: () =>
new UrlGeneratorsService().setup(coreMock.createSetup()).registerUrlGenerator(
createDashboardUrlGenerator(() =>
diff --git a/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/dashboard_to_dashboard_drilldown/drilldown.tsx b/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/dashboard_to_dashboard_drilldown/drilldown.tsx
index 7ff84a75dd52c..26a69132cffb1 100644
--- a/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/dashboard_to_dashboard_drilldown/drilldown.tsx
+++ b/x-pack/plugins/dashboard_enhanced/public/services/drilldowns/dashboard_to_dashboard_drilldown/drilldown.tsx
@@ -10,7 +10,7 @@ import { DashboardUrlGenerator } from '../../../../../../../src/plugins/dashboar
import { ActionContext, Config } from './types';
import { CollectConfigContainer } from './components';
import { DASHBOARD_TO_DASHBOARD_DRILLDOWN } from './constants';
-import { UiActionsEnhancedDrilldownDefinition as Drilldown } from '../../../../../advanced_ui_actions/public';
+import { UiActionsEnhancedDrilldownDefinition as Drilldown } from '../../../../../ui_actions_enhanced/public';
import { txtGoToDashboard } from './i18n';
import { esFilters } from '../../../../../../../src/plugins/data/public';
import { VisualizeEmbeddableContract } from '../../../../../../../src/plugins/visualizations/public';
@@ -22,7 +22,7 @@ import { StartServicesGetter } from '../../../../../../../src/plugins/kibana_uti
import { StartDependencies } from '../../../plugin';
export interface Params {
- start: StartServicesGetter>;
+ start: StartServicesGetter>;
getDashboardUrlGenerator: () => DashboardUrlGenerator;
}
diff --git a/x-pack/plugins/data_enhanced/public/search/es_search_strategy.ts b/x-pack/plugins/data_enhanced/public/search/es_search_strategy.ts
index c493e8ce86781..3a511c7b5a176 100644
--- a/x-pack/plugins/data_enhanced/public/search/es_search_strategy.ts
+++ b/x-pack/plugins/data_enhanced/public/search/es_search_strategy.ts
@@ -11,6 +11,7 @@ import {
ISearchContext,
ISearch,
getEsPreference,
+ UI_SETTINGS,
} from '../../../../../src/plugins/data/public';
import { IEnhancedEsSearchRequest, EnhancedSearchParams } from '../../common';
import { ASYNC_SEARCH_STRATEGY } from './async_search_strategy';
@@ -27,7 +28,7 @@ export const enhancedEsSearchStrategyProvider: TSearchStrategyProvider {
const params: EnhancedSearchParams = {
- ignoreThrottled: !context.core.uiSettings.get('search:includeFrozen'),
+ ignoreThrottled: !context.core.uiSettings.get(UI_SETTINGS.SEARCH_INCLUDE_FROZEN),
preference: getEsPreference(context.core.uiSettings),
...request.params,
};
diff --git a/x-pack/plugins/drilldowns/kibana.json b/x-pack/plugins/drilldowns/kibana.json
index 678c054aa322c..1614f94b488fd 100644
--- a/x-pack/plugins/drilldowns/kibana.json
+++ b/x-pack/plugins/drilldowns/kibana.json
@@ -3,6 +3,6 @@
"version": "kibana",
"server": false,
"ui": true,
- "requiredPlugins": ["uiActions", "embeddable", "advancedUiActions"],
+ "requiredPlugins": ["uiActions", "embeddable", "uiActionsEnhanced"],
"configPath": ["xpack", "drilldowns"]
}
diff --git a/x-pack/plugins/drilldowns/public/components/connected_flyout_manage_drilldowns/connected_flyout_manage_drilldowns.story.tsx b/x-pack/plugins/drilldowns/public/components/connected_flyout_manage_drilldowns/connected_flyout_manage_drilldowns.story.tsx
index a186feec33924..5fde4fc79e433 100644
--- a/x-pack/plugins/drilldowns/public/components/connected_flyout_manage_drilldowns/connected_flyout_manage_drilldowns.story.tsx
+++ b/x-pack/plugins/drilldowns/public/components/connected_flyout_manage_drilldowns/connected_flyout_manage_drilldowns.story.tsx
@@ -12,13 +12,13 @@ import {
dashboardFactory,
urlFactory,
// eslint-disable-next-line @kbn/eslint/no-restricted-paths
-} from '../../../../advanced_ui_actions/public/components/action_wizard/test_data';
+} from '../../../../ui_actions_enhanced/public/components/action_wizard/test_data';
import { Storage } from '../../../../../../src/plugins/kibana_utils/public';
import { StubBrowserStorage } from '../../../../../../src/test_utils/public/stub_browser_storage';
import { mockDynamicActionManager } from './test_data';
const FlyoutManageDrilldowns = createFlyoutManageDrilldowns({
- advancedUiActions: {
+ uiActionsEnhanced: {
getActionFactories() {
return [dashboardFactory, urlFactory];
},
diff --git a/x-pack/plugins/drilldowns/public/components/connected_flyout_manage_drilldowns/connected_flyout_manage_drilldowns.test.tsx b/x-pack/plugins/drilldowns/public/components/connected_flyout_manage_drilldowns/connected_flyout_manage_drilldowns.test.tsx
index 0f7f0cb22760b..32cbec795d092 100644
--- a/x-pack/plugins/drilldowns/public/components/connected_flyout_manage_drilldowns/connected_flyout_manage_drilldowns.test.tsx
+++ b/x-pack/plugins/drilldowns/public/components/connected_flyout_manage_drilldowns/connected_flyout_manage_drilldowns.test.tsx
@@ -11,7 +11,7 @@ import { createFlyoutManageDrilldowns } from './connected_flyout_manage_drilldow
import {
dashboardFactory,
urlFactory,
-} from '../../../../advanced_ui_actions/public/components/action_wizard/test_data';
+} from '../../../../ui_actions_enhanced/public/components/action_wizard/test_data';
import { StubBrowserStorage } from '../../../../../../src/test_utils/public/stub_browser_storage';
import { Storage } from '../../../../../../src/plugins/kibana_utils/public';
import { mockDynamicActionManager } from './test_data';
@@ -24,7 +24,7 @@ import { toastDrilldownsCRUDError } from './i18n';
const storage = new Storage(new StubBrowserStorage());
const notifications = coreMock.createStart().notifications;
const FlyoutManageDrilldowns = createFlyoutManageDrilldowns({
- advancedUiActions: {
+ uiActionsEnhanced: {
getActionFactories() {
return [dashboardFactory, urlFactory];
},
diff --git a/x-pack/plugins/drilldowns/public/components/connected_flyout_manage_drilldowns/connected_flyout_manage_drilldowns.tsx b/x-pack/plugins/drilldowns/public/components/connected_flyout_manage_drilldowns/connected_flyout_manage_drilldowns.tsx
index 3c9d2d2a86fb1..45cf7365ebd91 100644
--- a/x-pack/plugins/drilldowns/public/components/connected_flyout_manage_drilldowns/connected_flyout_manage_drilldowns.tsx
+++ b/x-pack/plugins/drilldowns/public/components/connected_flyout_manage_drilldowns/connected_flyout_manage_drilldowns.tsx
@@ -7,12 +7,12 @@
import React, { useEffect, useState } from 'react';
import useMountedState from 'react-use/lib/useMountedState';
import {
- AdvancedUiActionsActionFactory as ActionFactory,
+ UiActionsEnhancedActionFactory as ActionFactory,
AdvancedUiActionsStart,
UiActionsEnhancedDynamicActionManager as DynamicActionManager,
UiActionsEnhancedSerializedAction,
UiActionsEnhancedSerializedEvent,
-} from '../../../../advanced_ui_actions/public';
+} from '../../../../ui_actions_enhanced/public';
import { NotificationsStart } from '../../../../../../src/core/public';
import { DrilldownWizardConfig, FlyoutDrilldownWizard } from '../flyout_drilldown_wizard';
import { FlyoutListManageDrilldowns } from '../flyout_list_manage_drilldowns';
@@ -48,17 +48,17 @@ enum Routes {
}
export function createFlyoutManageDrilldowns({
- advancedUiActions,
+ uiActionsEnhanced,
storage,
notifications,
}: {
- advancedUiActions: AdvancedUiActionsStart;
+ uiActionsEnhanced: AdvancedUiActionsStart;
storage: IStorageWrapper;
notifications: NotificationsStart;
}) {
// fine to assume this is static,
// because all action factories should be registered in setup phase
- const allActionFactories = advancedUiActions.getActionFactories();
+ const allActionFactories = uiActionsEnhanced.getActionFactories();
const allActionFactoriesById = allActionFactories.reduce((acc, next) => {
acc[next.id] = next;
return acc;
diff --git a/x-pack/plugins/drilldowns/public/components/connected_flyout_manage_drilldowns/test_data.ts b/x-pack/plugins/drilldowns/public/components/connected_flyout_manage_drilldowns/test_data.ts
index c9cb0b0eb1cb3..d585fa0692e8c 100644
--- a/x-pack/plugins/drilldowns/public/components/connected_flyout_manage_drilldowns/test_data.ts
+++ b/x-pack/plugins/drilldowns/public/components/connected_flyout_manage_drilldowns/test_data.ts
@@ -9,7 +9,7 @@ import {
UiActionsEnhancedDynamicActionManager as DynamicActionManager,
UiActionsEnhancedDynamicActionManagerState as DynamicActionManagerState,
UiActionsEnhancedSerializedAction,
-} from '../../../../advanced_ui_actions/public';
+} from '../../../../ui_actions_enhanced/public';
import { TriggerContextMapping } from '../../../../../../src/plugins/ui_actions/public';
import { createStateContainer } from '../../../../../../src/plugins/kibana_utils/common';
diff --git a/x-pack/plugins/drilldowns/public/components/flyout_drilldown_wizard/flyout_drilldown_wizard.story.tsx b/x-pack/plugins/drilldowns/public/components/flyout_drilldown_wizard/flyout_drilldown_wizard.story.tsx
index add8b748afee9..be048bf920602 100644
--- a/x-pack/plugins/drilldowns/public/components/flyout_drilldown_wizard/flyout_drilldown_wizard.story.tsx
+++ b/x-pack/plugins/drilldowns/public/components/flyout_drilldown_wizard/flyout_drilldown_wizard.story.tsx
@@ -14,8 +14,8 @@ import {
dashboardFactory,
urlFactory,
// eslint-disable-next-line @kbn/eslint/no-restricted-paths
-} from '../../../../advanced_ui_actions/public/components/action_wizard/test_data';
-import { AdvancedUiActionsActionFactory as ActionFactory } from '../../../../advanced_ui_actions/public/';
+} from '../../../../ui_actions_enhanced/public/components/action_wizard/test_data';
+import { UiActionsEnhancedActionFactory as ActionFactory } from '../../../../ui_actions_enhanced/public/';
storiesOf('components/FlyoutDrilldownWizard', module)
.add('default', () => {
diff --git a/x-pack/plugins/drilldowns/public/components/flyout_drilldown_wizard/flyout_drilldown_wizard.tsx b/x-pack/plugins/drilldowns/public/components/flyout_drilldown_wizard/flyout_drilldown_wizard.tsx
index 84c1a04a71d15..87f886817517f 100644
--- a/x-pack/plugins/drilldowns/public/components/flyout_drilldown_wizard/flyout_drilldown_wizard.tsx
+++ b/x-pack/plugins/drilldowns/public/components/flyout_drilldown_wizard/flyout_drilldown_wizard.tsx
@@ -16,7 +16,7 @@ import {
txtEditDrilldownTitle,
} from './i18n';
import { DrilldownHelloBar } from '../drilldown_hello_bar';
-import { AdvancedUiActionsActionFactory as ActionFactory } from '../../../../advanced_ui_actions/public';
+import { UiActionsEnhancedActionFactory as ActionFactory } from '../../../../ui_actions_enhanced/public';
export interface DrilldownWizardConfig {
name: string;
diff --git a/x-pack/plugins/drilldowns/public/components/form_drilldown_wizard/form_drilldown_wizard.tsx b/x-pack/plugins/drilldowns/public/components/form_drilldown_wizard/form_drilldown_wizard.tsx
index 38168377b02bd..1813851d728db 100644
--- a/x-pack/plugins/drilldowns/public/components/form_drilldown_wizard/form_drilldown_wizard.tsx
+++ b/x-pack/plugins/drilldowns/public/components/form_drilldown_wizard/form_drilldown_wizard.tsx
@@ -8,9 +8,9 @@ import React from 'react';
import { EuiFieldText, EuiForm, EuiFormRow, EuiSpacer } from '@elastic/eui';
import { txtDrilldownAction, txtNameOfDrilldown, txtUntitledDrilldown } from './i18n';
import {
- AdvancedUiActionsActionFactory as ActionFactory,
+ UiActionsEnhancedActionFactory as ActionFactory,
ActionWizard,
-} from '../../../../advanced_ui_actions/public';
+} from '../../../../ui_actions_enhanced/public';
const noopFn = () => {};
diff --git a/x-pack/plugins/drilldowns/public/plugin.ts b/x-pack/plugins/drilldowns/public/plugin.ts
index 0108e04df9c99..32176241c102f 100644
--- a/x-pack/plugins/drilldowns/public/plugin.ts
+++ b/x-pack/plugins/drilldowns/public/plugin.ts
@@ -6,18 +6,18 @@
import { CoreStart, CoreSetup, Plugin } from 'src/core/public';
import { UiActionsSetup, UiActionsStart } from '../../../../src/plugins/ui_actions/public';
-import { AdvancedUiActionsSetup, AdvancedUiActionsStart } from '../../advanced_ui_actions/public';
+import { AdvancedUiActionsSetup, AdvancedUiActionsStart } from '../../ui_actions_enhanced/public';
import { createFlyoutManageDrilldowns } from './components/connected_flyout_manage_drilldowns';
import { Storage } from '../../../../src/plugins/kibana_utils/public';
export interface SetupDependencies {
uiActions: UiActionsSetup;
- advancedUiActions: AdvancedUiActionsSetup;
+ uiActionsEnhanced: AdvancedUiActionsSetup;
}
export interface StartDependencies {
uiActions: UiActionsStart;
- advancedUiActions: AdvancedUiActionsStart;
+ uiActionsEnhanced: AdvancedUiActionsStart;
}
// eslint-disable-next-line
@@ -36,7 +36,7 @@ export class DrilldownsPlugin
public start(core: CoreStart, plugins: StartDependencies): StartContract {
return {
FlyoutManageDrilldowns: createFlyoutManageDrilldowns({
- advancedUiActions: plugins.advancedUiActions,
+ uiActionsEnhanced: plugins.uiActionsEnhanced,
storage: new Storage(localStorage),
notifications: core.notifications,
}),
diff --git a/x-pack/plugins/embeddable_enhanced/kibana.json b/x-pack/plugins/embeddable_enhanced/kibana.json
index 780a1d5d89870..5663671de7bd9 100644
--- a/x-pack/plugins/embeddable_enhanced/kibana.json
+++ b/x-pack/plugins/embeddable_enhanced/kibana.json
@@ -3,5 +3,5 @@
"version": "kibana",
"server": false,
"ui": true,
- "requiredPlugins": ["embeddable", "advancedUiActions"]
+ "requiredPlugins": ["embeddable", "uiActionsEnhanced"]
}
diff --git a/x-pack/plugins/embeddable_enhanced/public/embeddables/embeddable_action_storage.test.ts b/x-pack/plugins/embeddable_enhanced/public/embeddables/embeddable_action_storage.test.ts
index f8b3a9dfb92d0..5c5d98d75295d 100644
--- a/x-pack/plugins/embeddable_enhanced/public/embeddables/embeddable_action_storage.test.ts
+++ b/x-pack/plugins/embeddable_enhanced/public/embeddables/embeddable_action_storage.test.ts
@@ -9,7 +9,7 @@ import {
EmbeddableActionStorage,
EmbeddableWithDynamicActionsInput,
} from './embeddable_action_storage';
-import { UiActionsEnhancedSerializedEvent } from '../../../advanced_ui_actions/public';
+import { UiActionsEnhancedSerializedEvent } from '../../../ui_actions_enhanced/public';
import { of } from '../../../../../src/plugins/kibana_utils/public';
class TestEmbeddable extends Embeddable {
diff --git a/x-pack/plugins/embeddable_enhanced/public/embeddables/embeddable_action_storage.ts b/x-pack/plugins/embeddable_enhanced/public/embeddables/embeddable_action_storage.ts
index e93674ba650a7..fdc42585a80ce 100644
--- a/x-pack/plugins/embeddable_enhanced/public/embeddables/embeddable_action_storage.ts
+++ b/x-pack/plugins/embeddable_enhanced/public/embeddables/embeddable_action_storage.ts
@@ -7,7 +7,7 @@
import {
UiActionsEnhancedAbstractActionStorage as AbstractActionStorage,
UiActionsEnhancedSerializedEvent as SerializedEvent,
-} from '../../../advanced_ui_actions/public';
+} from '../../../ui_actions_enhanced/public';
import {
EmbeddableInput,
EmbeddableOutput,
diff --git a/x-pack/plugins/embeddable_enhanced/public/plugin.ts b/x-pack/plugins/embeddable_enhanced/public/plugin.ts
index d26acb4459a71..e6413ac03aeae 100644
--- a/x-pack/plugins/embeddable_enhanced/public/plugin.ts
+++ b/x-pack/plugins/embeddable_enhanced/public/plugin.ts
@@ -27,7 +27,7 @@ import {
UiActionsEnhancedDynamicActionManager as DynamicActionManager,
AdvancedUiActionsSetup,
AdvancedUiActionsStart,
-} from '../../advanced_ui_actions/public';
+} from '../../ui_actions_enhanced/public';
import { PanelNotificationsAction, ACTION_PANEL_NOTIFICATIONS } from './actions';
declare module '../../../../src/plugins/ui_actions/public' {
@@ -38,12 +38,12 @@ declare module '../../../../src/plugins/ui_actions/public' {
export interface SetupDependencies {
embeddable: EmbeddableSetup;
- advancedUiActions: AdvancedUiActionsSetup;
+ uiActionsEnhanced: AdvancedUiActionsSetup;
}
export interface StartDependencies {
embeddable: EmbeddableStart;
- advancedUiActions: AdvancedUiActionsStart;
+ uiActionsEnhanced: AdvancedUiActionsStart;
}
// eslint-disable-next-line
@@ -56,20 +56,20 @@ export class EmbeddableEnhancedPlugin
implements Plugin {
constructor(protected readonly context: PluginInitializerContext) {}
- private uiActions?: StartDependencies['advancedUiActions'];
+ private uiActions?: StartDependencies['uiActionsEnhanced'];
public setup(core: CoreSetup, plugins: SetupDependencies): SetupContract {
this.setCustomEmbeddableFactoryProvider(plugins);
const panelNotificationAction = new PanelNotificationsAction();
- plugins.advancedUiActions.registerAction(panelNotificationAction);
- plugins.advancedUiActions.attachAction(PANEL_NOTIFICATION_TRIGGER, panelNotificationAction.id);
+ plugins.uiActionsEnhanced.registerAction(panelNotificationAction);
+ plugins.uiActionsEnhanced.attachAction(PANEL_NOTIFICATION_TRIGGER, panelNotificationAction.id);
return {};
}
public start(core: CoreStart, plugins: StartDependencies): StartContract {
- this.uiActions = plugins.advancedUiActions;
+ this.uiActions = plugins.uiActionsEnhanced;
return {};
}
diff --git a/x-pack/plugins/embeddable_enhanced/public/types.ts b/x-pack/plugins/embeddable_enhanced/public/types.ts
index 924605be332b2..4f5c316f2fc17 100644
--- a/x-pack/plugins/embeddable_enhanced/public/types.ts
+++ b/x-pack/plugins/embeddable_enhanced/public/types.ts
@@ -5,7 +5,7 @@
*/
import { IEmbeddable } from '../../../../src/plugins/embeddable/public';
-import { UiActionsEnhancedDynamicActionManager as DynamicActionManager } from '../../advanced_ui_actions/public';
+import { UiActionsEnhancedDynamicActionManager as DynamicActionManager } from '../../ui_actions_enhanced/public';
export type EnhancedEmbeddable = E & {
enhancements: {
diff --git a/x-pack/plugins/event_log/server/es/cluster_client_adapter.test.ts b/x-pack/plugins/event_log/server/es/cluster_client_adapter.test.ts
index 0144e573fc146..ada86adf84cfd 100644
--- a/x-pack/plugins/event_log/server/es/cluster_client_adapter.test.ts
+++ b/x-pack/plugins/event_log/server/es/cluster_client_adapter.test.ts
@@ -51,7 +51,7 @@ describe('doesIlmPolicyExist', () => {
await clusterClientAdapter.doesIlmPolicyExist('foo');
expect(clusterClient.callAsInternalUser).toHaveBeenCalledWith('transport.request', {
method: 'GET',
- path: '_ilm/policy/foo',
+ path: '/_ilm/policy/foo',
});
});
@@ -78,7 +78,7 @@ describe('createIlmPolicy', () => {
await clusterClientAdapter.createIlmPolicy('foo', { args: true });
expect(clusterClient.callAsInternalUser).toHaveBeenCalledWith('transport.request', {
method: 'PUT',
- path: '_ilm/policy/foo',
+ path: '/_ilm/policy/foo',
body: { args: true },
});
});
diff --git a/x-pack/plugins/event_log/server/es/cluster_client_adapter.ts b/x-pack/plugins/event_log/server/es/cluster_client_adapter.ts
index 7fd239ca49369..a036bfb74e408 100644
--- a/x-pack/plugins/event_log/server/es/cluster_client_adapter.ts
+++ b/x-pack/plugins/event_log/server/es/cluster_client_adapter.ts
@@ -41,7 +41,7 @@ export class ClusterClientAdapter {
public async doesIlmPolicyExist(policyName: string): Promise {
const request = {
method: 'GET',
- path: `_ilm/policy/${policyName}`,
+ path: `/_ilm/policy/${policyName}`,
};
try {
await this.callEs('transport.request', request);
@@ -55,7 +55,7 @@ export class ClusterClientAdapter {
public async createIlmPolicy(policyName: string, policy: unknown): Promise {
const request = {
method: 'PUT',
- path: `_ilm/policy/${policyName}`,
+ path: `/_ilm/policy/${policyName}`,
body: policy,
};
try {
diff --git a/x-pack/plugins/graph/server/routes/search.ts b/x-pack/plugins/graph/server/routes/search.ts
index ffca273d66c71..645e6b520013f 100644
--- a/x-pack/plugins/graph/server/routes/search.ts
+++ b/x-pack/plugins/graph/server/routes/search.ts
@@ -7,6 +7,7 @@
import { IRouter } from 'kibana/server';
import { schema } from '@kbn/config-schema';
import { LicenseState, verifyApiAccess } from '../lib/license_state';
+import { UI_SETTINGS } from '../../../../../src/plugins/data/server';
export function registerSearchRoute({
router,
@@ -41,7 +42,7 @@ export function registerSearchRoute({
response
) => {
verifyApiAccess(licenseState);
- const includeFrozen = await uiSettings.get('search:includeFrozen');
+ const includeFrozen = await uiSettings.get(UI_SETTINGS.SEARCH_INCLUDE_FROZEN);
try {
return response.ok({
body: {
diff --git a/x-pack/plugins/index_lifecycle_management/public/application/sections/edit_policy/components/min_age_input.js b/x-pack/plugins/index_lifecycle_management/public/application/sections/edit_policy/components/min_age_input.js
index bfe1bbb04338c..28bc8671f29e2 100644
--- a/x-pack/plugins/index_lifecycle_management/public/application/sections/edit_policy/components/min_age_input.js
+++ b/x-pack/plugins/index_lifecycle_management/public/application/sections/edit_policy/components/min_age_input.js
@@ -140,6 +140,41 @@ export const MinAgeInput = (props) => {
defaultMessage: 'hours from index creation',
}
);
+
+ minutesOptionLabel = i18n.translate(
+ 'xpack.indexLifecycleMgmt.editPolicy.creationMinutesOptionLabel',
+ {
+ defaultMessage: 'minutes from index creation',
+ }
+ );
+
+ secondsOptionLabel = i18n.translate(
+ 'xpack.indexLifecycleMgmt.editPolicy.creationSecondsOptionLabel',
+ {
+ defaultMessage: 'seconds from index creation',
+ }
+ );
+
+ millisecondsOptionLabel = i18n.translate(
+ 'xpack.indexLifecycleMgmt.editPolicy.creationMilliSecondsOptionLabel',
+ {
+ defaultMessage: 'milliseconds from index creation',
+ }
+ );
+
+ microsecondsOptionLabel = i18n.translate(
+ 'xpack.indexLifecycleMgmt.editPolicy.creationMicroSecondsOptionLabel',
+ {
+ defaultMessage: 'microseconds from index creation',
+ }
+ );
+
+ nanosecondsOptionLabel = i18n.translate(
+ 'xpack.indexLifecycleMgmt.editPolicy.creationNanoSecondsOptionLabel',
+ {
+ defaultMessage: 'nanoseconds from index creation',
+ }
+ );
}
return (
diff --git a/x-pack/plugins/infra/public/alerting/metric_threshold/components/alert_dropdown.tsx b/x-pack/plugins/infra/public/alerting/metric_threshold/components/alert_dropdown.tsx
index 52033a00327c0..d26575f65dfec 100644
--- a/x-pack/plugins/infra/public/alerting/metric_threshold/components/alert_dropdown.tsx
+++ b/x-pack/plugins/infra/public/alerting/metric_threshold/components/alert_dropdown.tsx
@@ -41,6 +41,7 @@ export const MetricsAlertDropdown = () => {
,
];
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
}, [kibana.services]);
return (
diff --git a/x-pack/plugins/infra/public/alerting/metric_threshold/components/expression.tsx b/x-pack/plugins/infra/public/alerting/metric_threshold/components/expression.tsx
index f4c7332a88e1d..7a71bb68bc54f 100644
--- a/x-pack/plugins/infra/public/alerting/metric_threshold/components/expression.tsx
+++ b/x-pack/plugins/infra/public/alerting/metric_threshold/components/expression.tsx
@@ -90,6 +90,7 @@ export const Expressions: React.FC = (props) => {
aggregation: 'avg',
};
}
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
}, [alertsContext.metadata]);
const updateParams = useCallback(
@@ -109,6 +110,7 @@ export const Expressions: React.FC = (props) => {
timeUnit: timeUnit ?? defaultExpression.timeUnit,
});
setAlertParams('criteria', exp);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
}, [setAlertParams, alertParams.criteria, timeSize, timeUnit]);
const removeExpression = useCallback(
@@ -119,6 +121,7 @@ export const Expressions: React.FC = (props) => {
setAlertParams('criteria', exp);
}
},
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[setAlertParams, alertParams.criteria]
);
@@ -133,6 +136,7 @@ export const Expressions: React.FC = (props) => {
[setAlertParams, derivedIndexPattern]
);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const debouncedOnFilterChange = useCallback(debounce(onFilterChange, FILTER_TYPING_DEBOUNCE_MS), [
onFilterChange,
]);
@@ -162,6 +166,7 @@ export const Expressions: React.FC = (props) => {
setTimeSize(ts || undefined);
setAlertParams('criteria', criteria);
},
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[alertParams.criteria, setAlertParams]
);
@@ -175,6 +180,7 @@ export const Expressions: React.FC = (props) => {
setTimeUnit(tu as TimeUnit);
setAlertParams('criteria', criteria);
},
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[alertParams.criteria, setAlertParams]
);
@@ -288,6 +294,7 @@ export const Expressions: React.FC = (props) => {
/>
+
= ({
: (value: number) => `${value}`;
}, [data]);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const yAxisFormater = useCallback(createFormatterForMetric(metric), [expression]);
if (loading || !data) {
diff --git a/x-pack/plugins/infra/public/components/alerting/inventory/alert_dropdown.tsx b/x-pack/plugins/infra/public/components/alerting/inventory/alert_dropdown.tsx
index c48b5b9a2cc58..47a0f037816bc 100644
--- a/x-pack/plugins/infra/public/components/alerting/inventory/alert_dropdown.tsx
+++ b/x-pack/plugins/infra/public/components/alerting/inventory/alert_dropdown.tsx
@@ -41,6 +41,7 @@ export const InventoryAlertDropdown = () => {
,
];
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
}, [kibana.services]);
return (
diff --git a/x-pack/plugins/infra/public/components/alerting/inventory/expression.tsx b/x-pack/plugins/infra/public/components/alerting/inventory/expression.tsx
index f4fab113cdd17..074464fb55414 100644
--- a/x-pack/plugins/infra/public/components/alerting/inventory/expression.tsx
+++ b/x-pack/plugins/infra/public/components/alerting/inventory/expression.tsx
@@ -117,6 +117,7 @@ export const Expressions: React.FC = (props) => {
timeUnit: timeUnit ?? defaultExpression.timeUnit,
});
setAlertParams('criteria', exp);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
}, [setAlertParams, alertParams.criteria, timeSize, timeUnit]);
const removeExpression = useCallback(
@@ -141,6 +142,7 @@ export const Expressions: React.FC = (props) => {
[derivedIndexPattern, setAlertParams]
);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const debouncedOnFilterChange = useCallback(debounce(onFilterChange, FILTER_TYPING_DEBOUNCE_MS), [
onFilterChange,
]);
diff --git a/x-pack/plugins/infra/public/components/alerting/logs/expression_editor/editor.tsx b/x-pack/plugins/infra/public/components/alerting/logs/expression_editor/editor.tsx
index d81d11e01d4a5..609f99805fe9c 100644
--- a/x-pack/plugins/infra/public/components/alerting/logs/expression_editor/editor.tsx
+++ b/x-pack/plugins/infra/public/components/alerting/logs/expression_editor/editor.tsx
@@ -137,6 +137,7 @@ export const Editor: React.FC = (props) => {
} else {
return [];
}
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
}, [sourceStatus]);
const updateCount = useCallback(
@@ -176,6 +177,7 @@ export const Editor: React.FC = (props) => {
? [...alertParams.criteria, DEFAULT_CRITERIA]
: [DEFAULT_CRITERIA];
setAlertParams('criteria', nextCriteria);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
}, [alertParams, setAlertParams]);
const removeCriterion = useCallback(
@@ -185,6 +187,7 @@ export const Editor: React.FC = (props) => {
});
setAlertParams('criteria', nextCriteria);
},
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[alertParams, setAlertParams]
);
diff --git a/x-pack/plugins/infra/public/components/header/header.tsx b/x-pack/plugins/infra/public/components/header/header.tsx
index fa71426f83645..47ee1857da591 100644
--- a/x-pack/plugins/infra/public/components/header/header.tsx
+++ b/x-pack/plugins/infra/public/components/header/header.tsx
@@ -31,10 +31,12 @@ export const Header = ({ breadcrumbs = [], readOnlyBadge = false }: HeaderProps)
const setBreadcrumbs = useCallback(() => {
return chrome?.setBreadcrumbs(breadcrumbs || []);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
}, [breadcrumbs, chrome]);
const setBadge = useCallback(() => {
return chrome?.setBadge(badge);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
}, [badge, chrome]);
useEffect(() => {
diff --git a/x-pack/plugins/infra/public/containers/logs/log_entries/index.ts b/x-pack/plugins/infra/public/containers/logs/log_entries/index.ts
index 5fe9a45a7ceed..d5b2a0aaa61c0 100644
--- a/x-pack/plugins/infra/public/containers/logs/log_entries/index.ts
+++ b/x-pack/plugins/infra/public/containers/logs/log_entries/index.ts
@@ -269,6 +269,7 @@ const useFetchEntriesEffect = (
}
};
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const fetchNewerEntries = useCallback(
throttle(() => runFetchMoreEntriesRequest(ShouldFetchMoreEntries.After), 500),
[props, state.bottomCursor]
@@ -330,10 +331,12 @@ const useFetchEntriesEffect = (
props.timestampsLastUpdate,
];
+ /* eslint-disable react-hooks/exhaustive-deps */
useEffect(fetchNewEntriesEffect, fetchNewEntriesEffectDependencies);
useEffect(fetchMoreEntriesEffect, fetchMoreEntriesEffectDependencies);
useEffect(streamEntriesEffect, streamEntriesEffectDependencies);
useEffect(expandRangeEffect, expandRangeEffectDependencies);
+ /* eslint-enable react-hooks/exhaustive-deps */
return { fetchNewerEntries, checkForNewEntries: runFetchNewEntriesRequest };
};
diff --git a/x-pack/plugins/infra/public/containers/logs/log_filter/log_filter_state.ts b/x-pack/plugins/infra/public/containers/logs/log_filter/log_filter_state.ts
index 7c903f59002dc..d5a43c0d6cffa 100644
--- a/x-pack/plugins/infra/public/containers/logs/log_filter/log_filter_state.ts
+++ b/x-pack/plugins/infra/public/containers/logs/log_filter/log_filter_state.ts
@@ -82,6 +82,7 @@ export const useLogFilterState: (props: {
}
return true;
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
}, [filterQueryDraft]);
const serializedFilterQuery = useMemo(() => (filterQuery ? filterQuery.serializedQuery : null), [
diff --git a/x-pack/plugins/infra/public/containers/logs/log_source/log_source.ts b/x-pack/plugins/infra/public/containers/logs/log_source/log_source.ts
index 670988d680147..80aab6237518f 100644
--- a/x-pack/plugins/infra/public/containers/logs/log_source/log_source.ts
+++ b/x-pack/plugins/infra/public/containers/logs/log_source/log_source.ts
@@ -78,6 +78,7 @@ export const useLogSource = ({
[sourceId, fetch]
);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const logIndicesExist = useMemo(() => (sourceStatus?.logIndexNames?.length ?? 0) > 0, [
sourceStatus,
]);
@@ -87,6 +88,7 @@ export const useLogSource = ({
fields: sourceStatus?.logIndexFields ?? [],
title: sourceConfiguration?.configuration.name ?? 'unknown',
}),
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[sourceConfiguration, sourceStatus]
);
diff --git a/x-pack/plugins/infra/public/containers/source/use_source_via_http.ts b/x-pack/plugins/infra/public/containers/source/use_source_via_http.ts
index 94e2537a67a2a..54d565d9ee223 100644
--- a/x-pack/plugins/infra/public/containers/source/use_source_via_http.ts
+++ b/x-pack/plugins/infra/public/containers/source/use_source_via_http.ts
@@ -76,6 +76,7 @@ export const useSourceViaHttp = ({
title: pickIndexPattern(response?.source, indexType),
};
},
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[response, type]
);
diff --git a/x-pack/plugins/infra/public/hooks/use_bulk_get_saved_object.tsx b/x-pack/plugins/infra/public/hooks/use_bulk_get_saved_object.tsx
index 2a70edc9b9a57..cfa9a711f7743 100644
--- a/x-pack/plugins/infra/public/hooks/use_bulk_get_saved_object.tsx
+++ b/x-pack/plugins/infra/public/hooks/use_bulk_get_saved_object.tsx
@@ -35,6 +35,7 @@ export const useBulkGetSavedObject = (type: string) => {
};
fetchData();
},
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[type, kibana.services.savedObjects]
);
diff --git a/x-pack/plugins/infra/public/hooks/use_create_saved_object.tsx b/x-pack/plugins/infra/public/hooks/use_create_saved_object.tsx
index 8313d496a0651..0efb862ad2eb4 100644
--- a/x-pack/plugins/infra/public/hooks/use_create_saved_object.tsx
+++ b/x-pack/plugins/infra/public/hooks/use_create_saved_object.tsx
@@ -40,6 +40,7 @@ export const useCreateSavedObject = (type: string) => {
};
save();
},
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[type, kibana.services.savedObjects]
);
diff --git a/x-pack/plugins/infra/public/hooks/use_delete_saved_object.tsx b/x-pack/plugins/infra/public/hooks/use_delete_saved_object.tsx
index 3f2d15b3b86aa..e353a79b19073 100644
--- a/x-pack/plugins/infra/public/hooks/use_delete_saved_object.tsx
+++ b/x-pack/plugins/infra/public/hooks/use_delete_saved_object.tsx
@@ -29,6 +29,7 @@ export const useDeleteSavedObject = (type: string) => {
};
dobj();
},
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[type, kibana.services.savedObjects]
);
diff --git a/x-pack/plugins/infra/public/hooks/use_find_saved_object.tsx b/x-pack/plugins/infra/public/hooks/use_find_saved_object.tsx
index 8b0ab45f6e6d1..8eb6db6103ed8 100644
--- a/x-pack/plugins/infra/public/hooks/use_find_saved_object.tsx
+++ b/x-pack/plugins/infra/public/hooks/use_find_saved_object.tsx
@@ -37,6 +37,7 @@ export const useFindSavedObject = {
title: loadDataErrorTitle,
});
},
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[services.notifications]
);
diff --git a/x-pack/plugins/infra/public/pages/logs/log_entry_rate/page_results_content.tsx b/x-pack/plugins/infra/public/pages/logs/log_entry_rate/page_results_content.tsx
index 156c9a919440e..3c8db3f8246c0 100644
--- a/x-pack/plugins/infra/public/pages/logs/log_entry_rate/page_results_content.tsx
+++ b/x-pack/plugins/infra/public/pages/logs/log_entry_rate/page_results_content.tsx
@@ -127,6 +127,7 @@ export const LogEntryRateResultsContent: React.FunctionComponent = () => {
[setAutoRefresh]
);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const hasResults = useMemo(() => (logEntryRate?.histogramBuckets?.length ?? 0) > 0, [
logEntryRate,
]);
diff --git a/x-pack/plugins/infra/public/pages/logs/log_entry_rate/sections/anomalies/expanded_row.tsx b/x-pack/plugins/infra/public/pages/logs/log_entry_rate/sections/anomalies/expanded_row.tsx
index 11ea137c95a1f..a1d3d56beee2c 100644
--- a/x-pack/plugins/infra/public/pages/logs/log_entry_rate/sections/anomalies/expanded_row.tsx
+++ b/x-pack/plugins/infra/public/pages/logs/log_entry_rate/sections/anomalies/expanded_row.tsx
@@ -29,6 +29,7 @@ export const AnomaliesTableExpandedRow: React.FunctionComponent<{
const logEntryRateSeries = useMemo(
() =>
results?.histogramBuckets ? getLogEntryRateSeriesForPartition(results, partitionId) : [],
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[results, partitionId]
);
const anomalyAnnotations = useMemo(
@@ -41,6 +42,7 @@ export const AnomaliesTableExpandedRow: React.FunctionComponent<{
major: [],
critical: [],
},
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[results, partitionId]
);
const totalNumberOfLogEntries = useMemo(
@@ -48,6 +50,7 @@ export const AnomaliesTableExpandedRow: React.FunctionComponent<{
results?.histogramBuckets
? getTotalNumberOfLogEntriesForPartition(results, partitionId)
: undefined,
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[results, partitionId]
);
return (
diff --git a/x-pack/plugins/infra/public/pages/logs/settings/source_configuration_settings.tsx b/x-pack/plugins/infra/public/pages/logs/settings/source_configuration_settings.tsx
index 34c4202ab8b65..f41158e114c7d 100644
--- a/x-pack/plugins/infra/public/pages/logs/settings/source_configuration_settings.tsx
+++ b/x-pack/plugins/infra/public/pages/logs/settings/source_configuration_settings.tsx
@@ -42,6 +42,7 @@ export const LogsSettingsPage = () => {
const availableFields = useMemo(
() => sourceStatus?.logIndexFields.map((field) => field.name) ?? [],
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[sourceStatus]
);
diff --git a/x-pack/plugins/infra/public/pages/logs/stream/page_view_log_in_context.tsx b/x-pack/plugins/infra/public/pages/logs/stream/page_view_log_in_context.tsx
index b6e6710a0b3b4..cf3eae263ed59 100644
--- a/x-pack/plugins/infra/public/pages/logs/stream/page_view_log_in_context.tsx
+++ b/x-pack/plugins/infra/public/pages/logs/stream/page_view_log_in_context.tsx
@@ -28,6 +28,7 @@ const MODAL_MARGIN = 25;
export const PageViewLogInContext: React.FC = () => {
const { sourceConfiguration } = useLogSourceContext();
const { textScale, textWrap } = useContext(LogViewConfiguration.Context);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const columnConfigurations = useMemo(() => sourceConfiguration?.configuration.logColumns ?? [], [
sourceConfiguration,
]);
diff --git a/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/layout.tsx b/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/layout.tsx
index 8b5b191ccfdd9..1452772e49ca1 100644
--- a/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/layout.tsx
+++ b/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/layout.tsx
@@ -76,6 +76,7 @@ export const Layout = () => {
const intervalAsString = convertIntervalToString(interval);
const dataBounds = calculateBoundsFromNodes(nodes);
const bounds = autoBounds ? dataBounds : boundsOverride;
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const formatter = useCallback(createInventoryMetricFormatter(options.metric), [options.metric]);
return (
diff --git a/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/waffle/legend_controls.tsx b/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/waffle/legend_controls.tsx
index 7929cf8292cb6..538cd5f7d9525 100644
--- a/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/waffle/legend_controls.tsx
+++ b/x-pack/plugins/infra/public/pages/metrics/inventory_view/components/waffle/legend_controls.tsx
@@ -141,14 +141,16 @@ export const LegendControls = ({
const handleStepsChange = useCallback(
(e) => {
- setLegendOptions((previous) => ({ ...previous, steps: parseInt(e.target.value, 10) }));
+ const steps = parseInt(e.target.value, 10);
+ setLegendOptions((previous) => ({ ...previous, steps }));
},
[setLegendOptions]
);
const handlePaletteChange = useCallback(
(e) => {
- setLegendOptions((previous) => ({ ...previous, palette: e.target.value }));
+ const palette = e.target.value;
+ setLegendOptions((previous) => ({ ...previous, palette }));
},
[setLegendOptions]
);
diff --git a/x-pack/plugins/infra/public/pages/metrics/metric_detail/components/chart_section_vis.tsx b/x-pack/plugins/infra/public/pages/metrics/metric_detail/components/chart_section_vis.tsx
index 6a4d6521855a9..dee2e0c9f457f 100644
--- a/x-pack/plugins/infra/public/pages/metrics/metric_detail/components/chart_section_vis.tsx
+++ b/x-pack/plugins/infra/public/pages/metrics/metric_detail/components/chart_section_vis.tsx
@@ -45,6 +45,7 @@ export const ChartSectionVis = ({
}: VisSectionProps) => {
const isDarkMode = useUiSetting('theme:darkMode');
const [dateFormat] = useKibanaUiSetting('dateFormat');
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const valueFormatter = useCallback(getFormatter(formatter, formatterTemplate), [
formatter,
formatterTemplate,
diff --git a/x-pack/plugins/infra/public/pages/metrics/metric_detail/components/sub_section.tsx b/x-pack/plugins/infra/public/pages/metrics/metric_detail/components/sub_section.tsx
index 4c75003616117..88e7c0c08e441 100644
--- a/x-pack/plugins/infra/public/pages/metrics/metric_detail/components/sub_section.tsx
+++ b/x-pack/plugins/infra/public/pages/metrics/metric_detail/components/sub_section.tsx
@@ -23,6 +23,7 @@ export const SubSection: FunctionComponent = ({
isLiveStreaming,
stopLiveStreaming,
}) => {
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const metric = useMemo(() => metrics?.find((m) => m.id === id), [id, metrics]);
if (!children || !metric) {
diff --git a/x-pack/plugins/infra/public/pages/metrics/metric_detail/components/time_controls.tsx b/x-pack/plugins/infra/public/pages/metrics/metric_detail/components/time_controls.tsx
index ef6486eac0fdb..afee0c0498187 100644
--- a/x-pack/plugins/infra/public/pages/metrics/metric_detail/components/time_controls.tsx
+++ b/x-pack/plugins/infra/public/pages/metrics/metric_detail/components/time_controls.tsx
@@ -6,6 +6,7 @@
import { EuiSuperDatePicker, OnRefreshChangeProps, OnTimeChangeProps } from '@elastic/eui';
import React, { useCallback } from 'react';
+import { UI_SETTINGS } from '../../../../../../../../src/plugins/data/public';
import { euiStyled } from '../../../../../../observability/public';
import { MetricsTimeInput } from '../hooks/use_metrics_time';
import { useKibanaUiSetting } from '../../../../utils/use_kibana_ui_setting';
@@ -22,7 +23,7 @@ interface MetricsTimeControlsProps {
}
export const MetricsTimeControls = (props: MetricsTimeControlsProps) => {
- const [timepickerQuickRanges] = useKibanaUiSetting('timepicker:quickRanges');
+ const [timepickerQuickRanges] = useKibanaUiSetting(UI_SETTINGS.TIMEPICKER_QUICK_RANGES);
const {
onChangeTimeRange,
onRefresh,
diff --git a/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/components/chart.tsx b/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/components/chart.tsx
index d079b7bb93d73..2a218c1c78aa3 100644
--- a/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/components/chart.tsx
+++ b/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/components/chart.tsx
@@ -87,6 +87,7 @@ export const MetricsExplorerChart = ({
[dateFormat]
),
};
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const yAxisFormater = useCallback(createFormatterForMetric(first(metrics)), [options]);
const dataDomain = calculateDomain(series, metrics, chartOptions.stack);
const domain =
diff --git a/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/components/toolbar.tsx b/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/components/toolbar.tsx
index 7ad1d943a9896..1471efbd21e18 100644
--- a/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/components/toolbar.tsx
+++ b/x-pack/plugins/infra/public/pages/metrics/metrics_explorer/components/toolbar.tsx
@@ -7,7 +7,7 @@
import { EuiFlexGroup, EuiFlexItem, EuiSuperDatePicker, EuiText } from '@elastic/eui';
import { FormattedMessage } from '@kbn/i18n/react';
import React from 'react';
-import { IIndexPattern } from 'src/plugins/data/public';
+import { IIndexPattern, UI_SETTINGS } from '../../../../../../../../src/plugins/data/public';
import {
MetricsExplorerMetric,
MetricsExplorerAggregation,
@@ -61,7 +61,7 @@ export const MetricsExplorerToolbar = ({
onViewStateChange,
}: Props) => {
const isDefaultOptions = options.aggregation === 'avg' && options.metrics.length === 0;
- const [timepickerQuickRanges] = useKibanaUiSetting('timepicker:quickRanges');
+ const [timepickerQuickRanges] = useKibanaUiSetting(UI_SETTINGS.TIMEPICKER_QUICK_RANGES);
const commonlyUsedRanges = mapKibanaQuickRangesToDatePickerRanges(timepickerQuickRanges);
return (
diff --git a/x-pack/plugins/infra/public/plugin.ts b/x-pack/plugins/infra/public/plugin.ts
index ead5644d19fa2..deae78e22c6a1 100644
--- a/x-pack/plugins/infra/public/plugin.ts
+++ b/x-pack/plugins/infra/public/plugin.ts
@@ -64,7 +64,7 @@ export class Plugin
defaultMessage: 'Logs',
}),
euiIconType: 'logsApp',
- order: 8000,
+ order: 8100,
appRoute: '/app/logs',
category: DEFAULT_APP_CATEGORIES.observability,
mount: async (params: AppMountParameters) => {
@@ -89,7 +89,7 @@ export class Plugin
defaultMessage: 'Metrics',
}),
euiIconType: 'metricsApp',
- order: 8001,
+ order: 8200,
appRoute: '/app/metrics',
category: DEFAULT_APP_CATEGORIES.observability,
mount: async (params: AppMountParameters) => {
diff --git a/x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts b/x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts
index 7c0c535795638..79c276a1e58f7 100644
--- a/x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts
+++ b/x-pack/plugins/infra/server/lib/adapters/framework/kibana_framework_adapter.ts
@@ -32,7 +32,7 @@ import {
} from '../../../../../../../src/core/server';
import { RequestHandler } from '../../../../../../../src/core/server';
import { InfraConfig } from '../../../plugin';
-import { IndexPatternsFetcher } from '../../../../../../../src/plugins/data/server';
+import { IndexPatternsFetcher, UI_SETTINGS } from '../../../../../../../src/plugins/data/server';
export class KibanaFramework {
public router: IRouter;
@@ -197,10 +197,10 @@ export class KibanaFramework {
) {
const { elasticsearch, uiSettings } = requestContext.core;
- const includeFrozen = await uiSettings.client.get('search:includeFrozen');
+ const includeFrozen = await uiSettings.client.get(UI_SETTINGS.SEARCH_INCLUDE_FROZEN);
if (endpoint === 'msearch') {
const maxConcurrentShardRequests = await uiSettings.client.get(
- 'courier:maxConcurrentShardRequests'
+ UI_SETTINGS.COURIER_MAX_CONCURRENT_SHARD_REQUESTS
);
if (maxConcurrentShardRequests > 0) {
params = { ...params, max_concurrent_shard_requests: maxConcurrentShardRequests };
diff --git a/x-pack/plugins/ingest_manager/README.md b/x-pack/plugins/ingest_manager/README.md
index f0c2466b25b04..50c42544b8bdc 100644
--- a/x-pack/plugins/ingest_manager/README.md
+++ b/x-pack/plugins/ingest_manager/README.md
@@ -52,12 +52,12 @@ This plugin follows the `common`, `server`, `public` structure from the [Archite
1. In one terminal, change to the `x-pack` directory and start the test server with
```
- node scripts/functional_tests_server.js --config test/api_integration/config.js
+ node scripts/functional_tests_server.js --config test/api_integration/config.ts
```
1. in a second terminal, run the tests from the Kibana root directory with
```
- node scripts/functional_test_runner.js --config x-pack/test/api_integration/config.js
+ node scripts/functional_test_runner.js --config x-pack/test/api_integration/config.ts
```
#### EPM
diff --git a/x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/agent_config/details_page/index.tsx b/x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/agent_config/details_page/index.tsx
index 1dd7e660deaa9..6fab78951038f 100644
--- a/x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/agent_config/details_page/index.tsx
+++ b/x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/agent_config/details_page/index.tsx
@@ -169,6 +169,7 @@ export const AgentConfigDetailsPage: React.FunctionComponent = () => {
))}
),
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[agentConfig, configId, agentStatus]
);
diff --git a/x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/data_stream/list_page/components/data_stream_row_actions.tsx b/x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/data_stream/list_page/components/data_stream_row_actions.tsx
index cdc4f1c63a11d..057970aa1ee92 100644
--- a/x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/data_stream/list_page/components/data_stream_row_actions.tsx
+++ b/x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/data_stream/list_page/components/data_stream_row_actions.tsx
@@ -48,6 +48,7 @@ export const DataStreamRowActions = memo<{ datastream: DataStream }>(({ datastre
items: [
{
icon: 'dashboardApp',
+ /* eslint-disable-next-line react-hooks/rules-of-hooks */
href: useKibanaLink(`/dashboard/${dashboards[0].id || ''}`),
name: actionNameSingular,
},
@@ -70,6 +71,7 @@ export const DataStreamRowActions = memo<{ datastream: DataStream }>(({ datastre
items: dashboards.map((dashboard) => {
return {
icon: 'dashboardApp',
+ /* eslint-disable-next-line react-hooks/rules-of-hooks */
href: useKibanaLink(`/dashboard/${dashboard.id || ''}`),
name: dashboard.title,
};
diff --git a/x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/fleet/agent_details_page/index.tsx b/x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/fleet/agent_details_page/index.tsx
index 1a7681584ff15..5bb0464801f70 100644
--- a/x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/fleet/agent_details_page/index.tsx
+++ b/x-pack/plugins/ingest_manager/public/applications/ingest_manager/sections/fleet/agent_details_page/index.tsx
@@ -90,6 +90,7 @@ export const AgentDetailsPage: React.FunctionComponent = () => {
),
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[agentData, agentId, getHref]
);
@@ -141,6 +142,7 @@ export const AgentDetailsPage: React.FunctionComponent = () => {
))}
) : undefined,
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
[agentConfigData, agentData, getHref, isAgentConfigLoading]
);
diff --git a/x-pack/plugins/lens/public/app_plugin/app.test.tsx b/x-pack/plugins/lens/public/app_plugin/app.test.tsx
index f1a2edd2d554f..33f4f46681a28 100644
--- a/x-pack/plugins/lens/public/app_plugin/app.test.tsx
+++ b/x-pack/plugins/lens/public/app_plugin/app.test.tsx
@@ -19,6 +19,7 @@ import {
FilterManager,
IFieldType,
IIndexPattern,
+ UI_SETTINGS,
} from '../../../../../src/plugins/data/public';
import { dataPluginMock } from '../../../../../src/plugins/data/public/mocks';
const dataStartMock = dataPluginMock.createStartContract();
@@ -183,7 +184,7 @@ describe('Lens App', () => {
jest.fn((type) => {
if (type === 'timepicker:timeDefaults') {
return { from: 'now-7d', to: 'now' };
- } else if (type === 'search:queryLanguage') {
+ } else if (type === UI_SETTINGS.SEARCH_QUERY_LANGUAGE) {
return 'kuery';
} else {
return [];
diff --git a/x-pack/plugins/lens/public/app_plugin/app.tsx b/x-pack/plugins/lens/public/app_plugin/app.tsx
index ffa59a6fb6bc9..1349d33983fcd 100644
--- a/x-pack/plugins/lens/public/app_plugin/app.tsx
+++ b/x-pack/plugins/lens/public/app_plugin/app.tsx
@@ -27,6 +27,7 @@ import {
IndexPattern as IndexPatternInstance,
IndexPatternsContract,
SavedQuery,
+ UI_SETTINGS,
} from '../../../../../src/plugins/data/public';
interface State {
@@ -76,7 +77,8 @@ export function App({
onAppLeave: AppMountParameters['onAppLeave'];
}) {
const language =
- storage.get('kibana.userQueryLanguage') || core.uiSettings.get('search:queryLanguage');
+ storage.get('kibana.userQueryLanguage') ||
+ core.uiSettings.get(UI_SETTINGS.SEARCH_QUERY_LANGUAGE);
const [state, setState] = useState(() => {
const currentRange = data.query.timefilter.timefilter.getTime();
@@ -413,7 +415,7 @@ export function App({
query: '',
language:
storage.get('kibana.userQueryLanguage') ||
- core.uiSettings.get('search:queryLanguage'),
+ core.uiSettings.get(UI_SETTINGS.SEARCH_QUERY_LANGUAGE),
},
}));
}}
diff --git a/x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/date_histogram.test.tsx b/x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/date_histogram.test.tsx
index e665e8b8dd326..defc142d4976e 100644
--- a/x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/date_histogram.test.tsx
+++ b/x-pack/plugins/lens/public/indexpattern_datasource/operations/definitions/date_histogram.test.tsx
@@ -12,6 +12,7 @@ import { EuiSwitch, EuiSwitchEvent } from '@elastic/eui';
import { IUiSettingsClient, SavedObjectsClientContract, HttpSetup } from 'kibana/public';
import { coreMock } from 'src/core/public/mocks';
import { IStorageWrapper } from 'src/plugins/kibana_utils/public';
+import { UI_SETTINGS } from '../../../../../../../src/plugins/data/public';
import {
dataPluginMock,
getCalculateAutoTimeExpression,
@@ -23,7 +24,7 @@ const dataStart = dataPluginMock.createStartContract();
dataStart.search.aggs.calculateAutoTimeExpression = getCalculateAutoTimeExpression({
...coreMock.createStart().uiSettings,
get: (path: string) => {
- if (path === 'histogram:maxBars') {
+ if (path === UI_SETTINGS.HISTOGRAM_MAX_BARS) {
return 10;
}
},
diff --git a/x-pack/plugins/lens/public/xy_visualization/index.ts b/x-pack/plugins/lens/public/xy_visualization/index.ts
index 23cf9e7ff818f..cd25cb5729511 100644
--- a/x-pack/plugins/lens/public/xy_visualization/index.ts
+++ b/x-pack/plugins/lens/public/xy_visualization/index.ts
@@ -8,6 +8,7 @@ import { EUI_CHARTS_THEME_DARK, EUI_CHARTS_THEME_LIGHT } from '@elastic/eui/dist
import { CoreSetup, IUiSettingsClient } from 'kibana/public';
import moment from 'moment-timezone';
import { ExpressionsSetup } from '../../../../../src/plugins/expressions/public';
+import { UI_SETTINGS } from '../../../../../src/plugins/data/public';
import { xyVisualization } from './xy_visualization';
import { xyChart, getXyChartRenderer } from './xy_expression';
import { legendConfig, xConfig, layerConfig } from './types';
@@ -47,7 +48,7 @@ export class XyVisualization {
? EUI_CHARTS_THEME_DARK.theme
: EUI_CHARTS_THEME_LIGHT.theme,
timeZone: getTimeZone(core.uiSettings),
- histogramBarTarget: core.uiSettings.get('histogram:barTarget'),
+ histogramBarTarget: core.uiSettings.get(UI_SETTINGS.HISTOGRAM_BAR_TARGET),
})
);
diff --git a/x-pack/plugins/lens/readme.md b/x-pack/plugins/lens/readme.md
index 60b4266edadb3..70d7f16b0f7fc 100644
--- a/x-pack/plugins/lens/readme.md
+++ b/x-pack/plugins/lens/readme.md
@@ -11,4 +11,4 @@ Run all tests from the `x-pack` root directory
- You may want to comment out all imports except for Lens in the config file.
- API Functional tests:
- Run `node scripts/functional_tests_server`
- - Run `node ../scripts/functional_test_runner.js --config ./test/api_integration/config.js --grep=Lens`
+ - Run `node ../scripts/functional_test_runner.js --config ./test/api_integration/config.ts --grep=Lens`
diff --git a/x-pack/plugins/maps/public/angular/get_initial_query.js b/x-pack/plugins/maps/public/angular/get_initial_query.js
index 4f61142413671..84f431cf2b3b6 100644
--- a/x-pack/plugins/maps/public/angular/get_initial_query.js
+++ b/x-pack/plugins/maps/public/angular/get_initial_query.js
@@ -5,6 +5,7 @@
*/
import { getUiSettings } from '../kibana_services';
+import { UI_SETTINGS } from '../../../../../src/plugins/data/public';
export function getInitialQuery({ mapStateJSON, appState = {}, userQueryLanguage }) {
const settings = getUiSettings();
@@ -22,6 +23,6 @@ export function getInitialQuery({ mapStateJSON, appState = {}, userQueryLanguage
return {
query: '',
- language: userQueryLanguage || settings.get('search:queryLanguage'),
+ language: userQueryLanguage || settings.get(UI_SETTINGS.SEARCH_QUERY_LANGUAGE),
};
}
diff --git a/x-pack/plugins/maps/public/angular/get_initial_refresh_config.js b/x-pack/plugins/maps/public/angular/get_initial_refresh_config.js
index f13e435cd1d5c..17a50c6c5f685 100644
--- a/x-pack/plugins/maps/public/angular/get_initial_refresh_config.js
+++ b/x-pack/plugins/maps/public/angular/get_initial_refresh_config.js
@@ -5,6 +5,7 @@
*/
import { getUiSettings } from '../kibana_services';
+import { UI_SETTINGS } from '../../../../../src/plugins/data/public';
export function getInitialRefreshConfig({ mapStateJSON, globalState = {} }) {
const uiSettings = getUiSettings();
@@ -16,7 +17,7 @@ export function getInitialRefreshConfig({ mapStateJSON, globalState = {} }) {
}
}
- const defaultRefreshConfig = uiSettings.get('timepicker:refreshIntervalDefaults');
+ const defaultRefreshConfig = uiSettings.get(UI_SETTINGS.TIMEPICKER_REFRESH_INTERVAL_DEFAULTS);
const refreshInterval = { ...defaultRefreshConfig, ...globalState.refreshInterval };
return {
isPaused: refreshInterval.pause,
diff --git a/x-pack/plugins/maps/public/classes/styles/vector/properties/__tests__/test_util.ts b/x-pack/plugins/maps/public/classes/styles/vector/properties/__tests__/test_util.ts
index a8fba834d65ab..f4ef9bdbe5b6d 100644
--- a/x-pack/plugins/maps/public/classes/styles/vector/properties/__tests__/test_util.ts
+++ b/x-pack/plugins/maps/public/classes/styles/vector/properties/__tests__/test_util.ts
@@ -25,6 +25,21 @@ class MockField extends AbstractField {
}
}
+export class MockMbMap {
+ _paintPropertyCalls: unknown[];
+
+ constructor() {
+ this._paintPropertyCalls = [];
+ }
+ setPaintProperty(...args: unknown[]) {
+ this._paintPropertyCalls.push([...args]);
+ }
+
+ getPaintPropertyCalls(): unknown[] {
+ return this._paintPropertyCalls;
+ }
+}
+
export const mockField: IField = new MockField({
fieldName: 'foobar',
origin: FIELD_ORIGIN.SOURCE,
diff --git a/x-pack/plugins/maps/public/classes/styles/vector/properties/dynamic_size_property.js b/x-pack/plugins/maps/public/classes/styles/vector/properties/dynamic_size_property.js
index 898da439c44aa..a0af2fbb939d8 100644
--- a/x-pack/plugins/maps/public/classes/styles/vector/properties/dynamic_size_property.js
+++ b/x-pack/plugins/maps/public/classes/styles/vector/properties/dynamic_size_property.js
@@ -110,6 +110,9 @@ export class DynamicSizeProperty extends DynamicStyleProperty {
_getMbDataDrivenSize({ targetName, minSize, maxSize, minValue, maxValue }) {
const lookup = this.supportsMbFeatureState() ? 'feature-state' : 'get';
+
+ const stops =
+ minValue === maxValue ? [maxValue, maxSize] : [minValue, minSize, maxValue, maxSize];
return [
'interpolate',
['linear'],
@@ -120,10 +123,7 @@ export class DynamicSizeProperty extends DynamicStyleProperty {
fieldName: targetName,
fallback: 0,
}),
- minValue,
- minSize,
- maxValue,
- maxSize,
+ ...stops,
];
}
diff --git a/x-pack/plugins/maps/public/classes/styles/vector/properties/dynamic_size_property.test.tsx b/x-pack/plugins/maps/public/classes/styles/vector/properties/dynamic_size_property.test.tsx
index 34f3e796f409f..c60547f3606c5 100644
--- a/x-pack/plugins/maps/public/classes/styles/vector/properties/dynamic_size_property.test.tsx
+++ b/x-pack/plugins/maps/public/classes/styles/vector/properties/dynamic_size_property.test.tsx
@@ -4,8 +4,6 @@
* you may not use this file except in compliance with the Elastic License.
*/
-import { IVectorStyle } from '../vector_style';
-
jest.mock('ui/new_platform');
jest.mock('../components/vector_style_editor', () => ({
VectorStyleEditor: () => {
@@ -18,68 +16,22 @@ import { shallow } from 'enzyme';
// @ts-ignore
import { DynamicSizeProperty } from './dynamic_size_property';
-import { StyleMeta } from '../style_meta';
-import { FIELD_ORIGIN, VECTOR_STYLES } from '../../../../../common/constants';
-import { DataRequest } from '../../../util/data_request';
-import { IVectorLayer } from '../../../layers/vector_layer/vector_layer';
+import { VECTOR_STYLES } from '../../../../../common/constants';
import { IField } from '../../../fields/field';
+import { MockMbMap } from './__tests__/test_util';
-// @ts-ignore
-const mockField: IField = {
- async getLabel() {
- return 'foobar_label';
- },
- getName() {
- return 'foobar';
- },
- getRootName() {
- return 'foobar';
- },
- getOrigin() {
- return FIELD_ORIGIN.SOURCE;
- },
- supportsFieldMeta() {
- return true;
- },
- canValueBeFormatted() {
- return true;
- },
- async getDataType() {
- return 'number';
- },
-};
+import { mockField, MockLayer, MockStyle } from './__tests__/test_util';
-// @ts-ignore
-const mockLayer: IVectorLayer = {
- getDataRequest(): DataRequest | undefined {
- return undefined;
- },
- getStyle(): IVectorStyle {
- // @ts-ignore
- return {
- getStyleMeta(): StyleMeta {
- return new StyleMeta({
- geometryTypes: {
- isPointsOnly: true,
- isLinesOnly: false,
- isPolygonsOnly: false,
- },
- fieldMeta: {
- foobar: {
- range: { min: 0, max: 100, delta: 100 },
- categories: { categories: [] },
- },
- },
- });
- },
- };
- },
-};
-
-const makeProperty: DynamicSizeProperty = (options: object) => {
- return new DynamicSizeProperty(options, VECTOR_STYLES.ICON_SIZE, mockField, mockLayer, () => {
- return (x: string) => x + '_format';
- });
+const makeProperty = (options: object, mockStyle: MockStyle, field: IField = mockField) => {
+ return new DynamicSizeProperty(
+ options,
+ VECTOR_STYLES.ICON_SIZE,
+ field,
+ new MockLayer(mockStyle),
+ () => {
+ return (x: string) => x + '_format';
+ }
+ );
};
const defaultLegendParams = {
@@ -89,7 +41,7 @@ const defaultLegendParams = {
describe('renderLegendDetailRow', () => {
test('Should render as range', async () => {
- const sizeProp = makeProperty();
+ const sizeProp = makeProperty({}, new MockStyle({ min: 0, max: 100 }));
const legendRow = sizeProp.renderLegendDetailRow(defaultLegendParams);
const component = shallow(legendRow);
@@ -100,3 +52,70 @@ describe('renderLegendDetailRow', () => {
expect(component).toMatchSnapshot();
});
});
+
+describe('syncSize', () => {
+ test('Should sync with circle-radius prop', async () => {
+ const sizeProp = makeProperty({ minSize: 8, maxSize: 32 }, new MockStyle({ min: 0, max: 100 }));
+ const mockMbMap = new MockMbMap();
+
+ sizeProp.syncCircleRadiusWithMb('foobar', mockMbMap);
+
+ expect(mockMbMap.getPaintPropertyCalls()).toEqual([
+ [
+ 'foobar',
+ 'circle-radius',
+ [
+ 'interpolate',
+ ['linear'],
+ [
+ 'coalesce',
+ [
+ 'case',
+ ['==', ['feature-state', 'foobar'], null],
+ -1,
+ ['max', ['min', ['to-number', ['feature-state', 'foobar']], 100], 0],
+ ],
+ 0,
+ ],
+ 0,
+ 8,
+ 100,
+ 32,
+ ],
+ ],
+ ]);
+ });
+
+ test('Should truncate interpolate expression to max when no delta', async () => {
+ const sizeProp = makeProperty(
+ { minSize: 8, maxSize: 32 },
+ new MockStyle({ min: 100, max: 100 })
+ );
+ const mockMbMap = new MockMbMap();
+
+ sizeProp.syncCircleRadiusWithMb('foobar', mockMbMap);
+
+ expect(mockMbMap.getPaintPropertyCalls()).toEqual([
+ [
+ 'foobar',
+ 'circle-radius',
+ [
+ 'interpolate',
+ ['linear'],
+ [
+ 'coalesce',
+ [
+ 'case',
+ ['==', ['feature-state', 'foobar'], null],
+ 99,
+ ['max', ['min', ['to-number', ['feature-state', 'foobar']], 100], 100],
+ ],
+ 0,
+ ],
+ 100,
+ 32,
+ ],
+ ],
+ ]);
+ });
+});
diff --git a/x-pack/plugins/maps/public/connected_components/layer_panel/filter_editor/filter_editor.js b/x-pack/plugins/maps/public/connected_components/layer_panel/filter_editor/filter_editor.js
index 75b6b5d66f1de..45c7507160e98 100644
--- a/x-pack/plugins/maps/public/connected_components/layer_panel/filter_editor/filter_editor.js
+++ b/x-pack/plugins/maps/public/connected_components/layer_panel/filter_editor/filter_editor.js
@@ -20,6 +20,7 @@ import {
import { FormattedMessage } from '@kbn/i18n/react';
import { i18n } from '@kbn/i18n';
+import { UI_SETTINGS } from '../../../../../../../src/plugins/data/public';
import { getIndexPatternService, getUiSettings, getData } from '../../../kibana_services';
import { GlobalFilterCheckbox } from '../../../components/global_filter_checkbox';
@@ -101,7 +102,7 @@ export class FilterEditor extends Component {
query={
layerQuery
? layerQuery
- : { language: uiSettings.get('search:queryLanguage'), query: '' }
+ : { language: uiSettings.get(UI_SETTINGS.SEARCH_QUERY_LANGUAGE), query: '' }
}
onQuerySubmit={this._onQueryChange}
indexPatterns={this.state.indexPatterns}
diff --git a/x-pack/plugins/maps/public/connected_components/layer_panel/join_editor/resources/where_expression.js b/x-pack/plugins/maps/public/connected_components/layer_panel/join_editor/resources/where_expression.js
index d87761d3dabe8..8fdb71de2dfed 100644
--- a/x-pack/plugins/maps/public/connected_components/layer_panel/join_editor/resources/where_expression.js
+++ b/x-pack/plugins/maps/public/connected_components/layer_panel/join_editor/resources/where_expression.js
@@ -8,6 +8,7 @@ import React, { Component } from 'react';
import { i18n } from '@kbn/i18n';
import { EuiButton, EuiPopover, EuiExpression, EuiFormHelpText } from '@elastic/eui';
import { FormattedMessage } from '@kbn/i18n/react';
+import { UI_SETTINGS } from '../../../../../../../../src/plugins/data/public';
import { getUiSettings, getData } from '../../../../kibana_services';
export class WhereExpression extends Component {
@@ -79,7 +80,7 @@ export class WhereExpression extends Component {
query={
whereQuery
? whereQuery
- : { language: getUiSettings().get('search:queryLanguage'), query: '' }
+ : { language: getUiSettings().get(UI_SETTINGS.SEARCH_QUERY_LANGUAGE), query: '' }
}
onQuerySubmit={this._onQueryChange}
indexPatterns={[indexPattern]}
diff --git a/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/outlier_exploration.tsx b/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/outlier_exploration.tsx
index 0154f92576c4a..58f8528236bb9 100644
--- a/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/outlier_exploration.tsx
+++ b/x-pack/plugins/ml/public/application/data_frame_analytics/pages/analytics_exploration/components/outlier_exploration/outlier_exploration.tsx
@@ -73,6 +73,7 @@ export const OutlierExploration: FC = React.memo(({ jobId }) =
);
}
+ /* eslint-disable-next-line react-hooks/rules-of-hooks */
const colorRange = useColorRange(
COLOR_RANGE.BLUE,
COLOR_RANGE_SCALE.INFLUENCER,
diff --git a/x-pack/plugins/ml/public/application/datavisualizer/index_based/page.tsx b/x-pack/plugins/ml/public/application/datavisualizer/index_based/page.tsx
index d68c0342ac857..97b4043c9fd64 100644
--- a/x-pack/plugins/ml/public/application/datavisualizer/index_based/page.tsx
+++ b/x-pack/plugins/ml/public/application/datavisualizer/index_based/page.tsx
@@ -27,6 +27,7 @@ import {
Query,
esQuery,
esKuery,
+ UI_SETTINGS,
} from '../../../../../../../src/plugins/data/public';
import { SavedSearchSavedObject } from '../../../../common/types/kibana';
import { NavigationMenu } from '../../components/navigation_menu';
@@ -254,7 +255,7 @@ export const Page: FC = () => {
qry = esKuery.toElasticsearchQuery(ast, currentIndexPattern);
} else {
qry = esQuery.luceneStringToDsl(qryString);
- esQuery.decorateQuery(qry, kibanaConfig.get('query:queryString:options'));
+ esQuery.decorateQuery(qry, kibanaConfig.get(UI_SETTINGS.QUERY_STRING_OPTIONS));
}
return {
diff --git a/x-pack/plugins/ml/public/application/services/explorer_service.ts b/x-pack/plugins/ml/public/application/services/explorer_service.ts
index efcec8cf2b954..717ed3ba64c37 100644
--- a/x-pack/plugins/ml/public/application/services/explorer_service.ts
+++ b/x-pack/plugins/ml/public/application/services/explorer_service.ts
@@ -6,7 +6,11 @@
import { IUiSettingsClient } from 'kibana/public';
import { i18n } from '@kbn/i18n';
-import { TimefilterContract, TimeRange } from '../../../../../../src/plugins/data/public';
+import {
+ TimefilterContract,
+ TimeRange,
+ UI_SETTINGS,
+} from '../../../../../../src/plugins/data/public';
import { getBoundsRoundedToInterval, TimeBuckets, TimeRangeBounds } from '../util/time_buckets';
import { ExplorerJob, OverallSwimlaneData, SwimlaneData } from '../explorer/explorer_utils';
import { VIEW_BY_JOB_LABEL } from '../explorer/explorer_constants';
@@ -25,8 +29,8 @@ export class ExplorerService {
private mlResultsService: MlResultsService
) {
this.timeBuckets = new TimeBuckets({
- 'histogram:maxBars': uiSettings.get('histogram:maxBars'),
- 'histogram:barTarget': uiSettings.get('histogram:barTarget'),
+ 'histogram:maxBars': uiSettings.get(UI_SETTINGS.HISTOGRAM_MAX_BARS),
+ 'histogram:barTarget': uiSettings.get(UI_SETTINGS.HISTOGRAM_BAR_TARGET),
dateFormat: uiSettings.get('dateFormat'),
'dateFormat:scaled': uiSettings.get('dateFormat:scaled'),
});
diff --git a/x-pack/plugins/ml/public/application/util/time_buckets.d.ts b/x-pack/plugins/ml/public/application/util/time_buckets.d.ts
index 9c5d663a6e4ab..91661ea3fd3fa 100644
--- a/x-pack/plugins/ml/public/application/util/time_buckets.d.ts
+++ b/x-pack/plugins/ml/public/application/util/time_buckets.d.ts
@@ -5,6 +5,7 @@
*/
import { Moment } from 'moment';
+import { UI_SETTINGS } from '../../../../../../src/plugins/data/public';
export interface TimeRangeBounds {
min?: Moment;
diff --git a/x-pack/plugins/ml/public/application/util/time_buckets.js b/x-pack/plugins/ml/public/application/util/time_buckets.js
index 2b23eca1ab5c0..1915a4ce6516b 100644
--- a/x-pack/plugins/ml/public/application/util/time_buckets.js
+++ b/x-pack/plugins/ml/public/application/util/time_buckets.js
@@ -11,7 +11,7 @@ import dateMath from '@elastic/datemath';
import { timeBucketsCalcAutoIntervalProvider } from './calc_auto_interval';
import { parseInterval } from '../../../common/util/parse_interval';
import { getFieldFormats, getUiSettings } from './dependency_cache';
-import { FIELD_FORMAT_IDS } from '../../../../../../src/plugins/data/public';
+import { FIELD_FORMAT_IDS, UI_SETTINGS } from '../../../../../../src/plugins/data/public';
const unitsDesc = dateMath.unitsDesc;
const largeMax = unitsDesc.indexOf('w'); // Multiple units of week or longer converted to days for ES intervals.
@@ -21,8 +21,8 @@ const calcAuto = timeBucketsCalcAutoIntervalProvider();
export function getTimeBucketsFromCache() {
const uiSettings = getUiSettings();
return new TimeBuckets({
- 'histogram:maxBars': uiSettings.get('histogram:maxBars'),
- 'histogram:barTarget': uiSettings.get('histogram:barTarget'),
+ [UI_SETTINGS.HISTOGRAM_MAX_BARS]: uiSettings.get(UI_SETTINGS.HISTOGRAM_MAX_BARS),
+ [UI_SETTINGS.HISTOGRAM_BAR_TARGET]: uiSettings.get(UI_SETTINGS.HISTOGRAM_BAR_TARGET),
dateFormat: uiSettings.get('dateFormat'),
'dateFormat:scaled': uiSettings.get('dateFormat:scaled'),
});
@@ -35,8 +35,8 @@ export function getTimeBucketsFromCache() {
*/
export function TimeBuckets(timeBucketsConfig) {
this._timeBucketsConfig = timeBucketsConfig;
- this.barTarget = this._timeBucketsConfig['histogram:barTarget'];
- this.maxBars = this._timeBucketsConfig['histogram:maxBars'];
+ this.barTarget = this._timeBucketsConfig[UI_SETTINGS.HISTOGRAM_BAR_TARGET];
+ this.maxBars = this._timeBucketsConfig[UI_SETTINGS.HISTOGRAM_MAX_BARS];
}
/**
diff --git a/x-pack/plugins/ml/public/application/util/time_buckets.test.js b/x-pack/plugins/ml/public/application/util/time_buckets.test.js
index baecf7df90641..250c7255f5b99 100644
--- a/x-pack/plugins/ml/public/application/util/time_buckets.test.js
+++ b/x-pack/plugins/ml/public/application/util/time_buckets.test.js
@@ -5,6 +5,7 @@
*/
import moment from 'moment';
+import { UI_SETTINGS } from '../../../../../../src/plugins/data/public';
import { TimeBuckets, getBoundsRoundedToInterval, calcEsInterval } from './time_buckets';
describe('ML - time buckets', () => {
@@ -13,8 +14,8 @@ describe('ML - time buckets', () => {
beforeEach(() => {
const timeBucketsConfig = {
- 'histogram:maxBars': 100,
- 'histogram:barTarget': 50,
+ [UI_SETTINGS.HISTOGRAM_MAX_BARS]: 100,
+ [UI_SETTINGS.HISTOGRAM_BAR_TARGET]: 50,
};
autoBuckets = new TimeBuckets(timeBucketsConfig);
diff --git a/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/swimlane_input_resolver.ts b/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/swimlane_input_resolver.ts
index e48ce9f9a1d92..74a7b432de267 100644
--- a/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/swimlane_input_resolver.ts
+++ b/x-pack/plugins/ml/public/embeddables/anomaly_swimlane/swimlane_input_resolver.ts
@@ -27,7 +27,7 @@ import { MlStartDependencies } from '../../plugin';
import { SWIMLANE_TYPE } from '../../application/explorer/explorer_constants';
import { Filter } from '../../../../../../src/plugins/data/common/es_query/filters';
import { Query } from '../../../../../../src/plugins/data/common/query';
-import { esKuery } from '../../../../../../src/plugins/data/public';
+import { esKuery, UI_SETTINGS } from '../../../../../../src/plugins/data/public';
import { ExplorerJob, OverallSwimlaneData } from '../../application/explorer/explorer_utils';
import { parseInterval } from '../../../common/util/parse_interval';
import { AnomalyDetectorService } from '../../application/services/anomaly_detector_service';
@@ -62,8 +62,8 @@ export function useSwimlaneInputResolver(
const timeBuckets = useMemo(() => {
return new TimeBuckets({
- 'histogram:maxBars': uiSettings.get('histogram:maxBars'),
- 'histogram:barTarget': uiSettings.get('histogram:barTarget'),
+ 'histogram:maxBars': uiSettings.get(UI_SETTINGS.HISTOGRAM_MAX_BARS),
+ 'histogram:barTarget': uiSettings.get(UI_SETTINGS.HISTOGRAM_BAR_TARGET),
dateFormat: uiSettings.get('dateFormat'),
'dateFormat:scaled': uiSettings.get('dateFormat:scaled'),
});
diff --git a/x-pack/plugins/monitoring/public/plugin.ts b/x-pack/plugins/monitoring/public/plugin.ts
index 73133da5a006c..24383028e558c 100644
--- a/x-pack/plugins/monitoring/public/plugin.ts
+++ b/x-pack/plugins/monitoring/public/plugin.ts
@@ -17,6 +17,7 @@ import {
FeatureCatalogueCategory,
HomePublicPluginSetup,
} from '../../../../src/plugins/home/public';
+import { UI_SETTINGS } from '../../../../src/plugins/data/public';
import { DEFAULT_APP_CATEGORIES } from '../../../../src/core/public';
import { MonitoringPluginDependencies, MonitoringConfig } from './types';
import {
@@ -110,7 +111,7 @@ export class MonitoringPlugin
timefilter.setRefreshInterval(refreshInterval);
timefilter.setTime(time);
uiSettings.overrideLocalDefault(
- 'timepicker:refreshIntervalDefaults',
+ UI_SETTINGS.TIMEPICKER_REFRESH_INTERVAL_DEFAULTS,
JSON.stringify(refreshInterval)
);
uiSettings.overrideLocalDefault('timepicker:timeDefaults', JSON.stringify(time));
diff --git a/x-pack/plugins/monitoring/public/views/access_denied/index.html b/x-pack/plugins/monitoring/public/views/access_denied/index.html
index 63cd4440ecf8a..24863559212f7 100644
--- a/x-pack/plugins/monitoring/public/views/access_denied/index.html
+++ b/x-pack/plugins/monitoring/public/views/access_denied/index.html
@@ -30,12 +30,13 @@
diff --git a/x-pack/plugins/monitoring/public/views/access_denied/index.js b/x-pack/plugins/monitoring/public/views/access_denied/index.js
index 856e59702963a..f7a4d03a26452 100644
--- a/x-pack/plugins/monitoring/public/views/access_denied/index.js
+++ b/x-pack/plugins/monitoring/public/views/access_denied/index.js
@@ -4,16 +4,15 @@
* you may not use this file except in compliance with the Elastic License.
*/
-import { noop } from 'lodash';
+import { kbnBaseUrl } from '../../../../../../src/plugins/kibana_legacy/common/kbn_base_url';
import { uiRoutes } from '../../angular/helpers/routes';
-import { Legacy } from '../../legacy_shims';
import template from './index.html';
const tryPrivilege = ($http, kbnUrl) => {
return $http
.get('../api/monitoring/v1/check_access')
.then(() => kbnUrl.redirect('/home'))
- .catch(noop);
+ .catch(() => true);
};
uiRoutes.when('/access-denied', {
@@ -31,17 +30,13 @@ uiRoutes.when('/access-denied', {
},
},
controllerAs: 'accessDenied',
- controller($scope, $injector) {
- const $window = $injector.get('$window');
- const kbnBaseUrl = $injector.get('kbnBaseUrl');
+ controller: function ($scope, $injector) {
const $http = $injector.get('$http');
const kbnUrl = $injector.get('kbnUrl');
const $interval = $injector.get('$interval');
// The template's "Back to Kibana" button click handler
- this.goToKibana = () => {
- $window.location.href = Legacy.shims.getBasePath() + kbnBaseUrl;
- };
+ this.goToKibanaURL = kbnBaseUrl;
// keep trying to load data in the background
const accessPoller = $interval(() => tryPrivilege($http, kbnUrl), 5 * 1000); // every 5 seconds
diff --git a/x-pack/plugins/observability/public/application/index.tsx b/x-pack/plugins/observability/public/application/index.tsx
new file mode 100644
index 0000000000000..21a9fabf445f1
--- /dev/null
+++ b/x-pack/plugins/observability/public/application/index.tsx
@@ -0,0 +1,29 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License;
+ * you may not use this file except in compliance with the Elastic License.
+ */
+import React from 'react';
+import ReactDOM from 'react-dom';
+import { EuiThemeProvider } from '../../../../legacy/common/eui_styled_components';
+import { AppMountParameters, CoreStart } from '../../../../../src/core/public';
+import { Home } from '../pages/home';
+import { PluginContext } from '../context/plugin_context';
+
+export const renderApp = (core: CoreStart, { element }: AppMountParameters) => {
+ const i18nCore = core.i18n;
+ const isDarkMode = core.uiSettings.get('theme:darkMode');
+ ReactDOM.render(
+
+
+
+
+
+
+ ,
+ element
+ );
+ return () => {
+ ReactDOM.unmountComponentAtNode(element);
+ };
+};
diff --git a/x-pack/plugins/observability/public/assets/observability_overview.png b/x-pack/plugins/observability/public/assets/observability_overview.png
new file mode 100644
index 0000000000000..70be08af9745a
Binary files /dev/null and b/x-pack/plugins/observability/public/assets/observability_overview.png differ
diff --git a/x-pack/plugins/observability/public/context/plugin_context.tsx b/x-pack/plugins/observability/public/context/plugin_context.tsx
new file mode 100644
index 0000000000000..7d705e7a6cc05
--- /dev/null
+++ b/x-pack/plugins/observability/public/context/plugin_context.tsx
@@ -0,0 +1,14 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License;
+ * you may not use this file except in compliance with the Elastic License.
+ */
+
+import { createContext } from 'react';
+import { AppMountContext } from 'kibana/public';
+
+export interface PluginContextValue {
+ core: AppMountContext['core'];
+}
+
+export const PluginContext = createContext({} as PluginContextValue);
diff --git a/x-pack/plugins/observability/public/hooks/use_plugin_context.tsx b/x-pack/plugins/observability/public/hooks/use_plugin_context.tsx
new file mode 100644
index 0000000000000..eeec115f0d286
--- /dev/null
+++ b/x-pack/plugins/observability/public/hooks/use_plugin_context.tsx
@@ -0,0 +1,12 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License;
+ * you may not use this file except in compliance with the Elastic License.
+ */
+
+import { useContext } from 'react';
+import { PluginContext } from '../context/plugin_context';
+
+export function usePluginContext() {
+ return useContext(PluginContext);
+}
diff --git a/x-pack/plugins/observability/public/pages/home/index.tsx b/x-pack/plugins/observability/public/pages/home/index.tsx
new file mode 100644
index 0000000000000..b9b567bef4ab4
--- /dev/null
+++ b/x-pack/plugins/observability/public/pages/home/index.tsx
@@ -0,0 +1,205 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License;
+ * you may not use this file except in compliance with the Elastic License.
+ */
+
+import {
+ EuiButton,
+ EuiCard,
+ EuiFlexGrid,
+ EuiFlexGroup,
+ EuiFlexItem,
+ EuiHorizontalRule,
+ EuiIcon,
+ EuiImage,
+ EuiSpacer,
+ EuiText,
+ EuiTitle,
+} from '@elastic/eui';
+import { i18n } from '@kbn/i18n';
+import React, { useEffect } from 'react';
+import styled from 'styled-components';
+import { usePluginContext } from '../../hooks/use_plugin_context';
+import { appsSection, tryItOutItemsSection } from './section';
+
+const Container = styled.div`
+ min-height: calc(100vh - 48px);
+ background: ${(props) => props.theme.eui.euiColorEmptyShade};
+`;
+
+const Title = styled.div`
+ background-color: ${(props) => props.theme.eui.euiPageBackgroundColor};
+ border-bottom: ${(props) => props.theme.eui.euiBorderThin};
+`;
+
+const Page = styled.div`
+ width: 100%;
+ max-width: 1200px;
+ margin: 0 auto;
+ overflow: hidden;
+}
+`;
+
+const EuiCardWithoutPadding = styled(EuiCard)`
+ padding: 0;
+`;
+
+export const Home = () => {
+ const { core } = usePluginContext();
+
+ useEffect(() => {
+ core.chrome.setBreadcrumbs([
+ {
+ text: i18n.translate('xpack.observability.home.breadcrumb.observability', {
+ defaultMessage: 'Observability',
+ }),
+ },
+ {
+ text: i18n.translate('xpack.observability.home.breadcrumb.gettingStarted', {
+ defaultMessage: 'Getting started',
+ }),
+ },
+ ]);
+ }, [core]);
+
+ return (
+
+
+
+
+
+
+
+
+
+
+
+ {i18n.translate('xpack.observability.home.title', {
+ defaultMessage: 'Observability',
+ })}
+
+
+
+
+
+
+
+
+
+
+ {/* title and description */}
+
+
+
+ {i18n.translate('xpack.observability.home.sectionTitle', {
+ defaultMessage: 'Observability built on the Elastic Stack',
+ })}
+
+
+
+
+ {i18n.translate('xpack.observability.home.sectionsubtitle', {
+ defaultMessage:
+ 'Bring your logs, metrics, and APM traces together at scale in a single stack so you can monitor and react to events happening anywhere in your environment.',
+ })}
+
+
+
+ {/* Apps sections */}
+
+
+
+
+
+ {appsSection.map((app) => (
+
+ }
+ title={
+
+ {app.title}
+
+ }
+ description={app.description}
+ />
+
+ ))}
+
+
+
+
+
+
+
+
+ {/* Get started button */}
+
+
+
+
+ {i18n.translate('xpack.observability.home.getStatedButton', {
+ defaultMessage: 'Get started',
+ })}
+
+
+
+
+
+
+
+ {/* Try it out */}
+
+
+
+
+
+ {i18n.translate('xpack.observability.home.tryItOut', {
+ defaultMessage: 'Try it out',
+ })}
+
+
+
+
+
+
+ {/* Try it out sections */}
+
+
+ {tryItOutItemsSection.map((item) => (
+
+ }
+ title={
+
+ {item.title}
+
+ }
+ description={item.description}
+ target={item.target}
+ href={item.href}
+ />
+
+ ))}
+
+
+
+
+
+
+ );
+};
diff --git a/x-pack/plugins/observability/public/pages/home/section.ts b/x-pack/plugins/observability/public/pages/home/section.ts
new file mode 100644
index 0000000000000..f8bbfbfa30548
--- /dev/null
+++ b/x-pack/plugins/observability/public/pages/home/section.ts
@@ -0,0 +1,84 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License;
+ * you may not use this file except in compliance with the Elastic License.
+ */
+import { i18n } from '@kbn/i18n';
+
+interface ISection {
+ id: string;
+ title: string;
+ icon: string;
+ description: string;
+ href?: string;
+ target?: '_blank';
+}
+
+export const appsSection: ISection[] = [
+ {
+ id: 'logs',
+ title: i18n.translate('xpack.observability.section.apps.logs.title', {
+ defaultMessage: 'Logs',
+ }),
+ icon: 'logoLogging',
+ description: i18n.translate('xpack.observability.section.apps.logs.description', {
+ defaultMessage:
+ 'The Elastic Stack (sometimes known as the ELK Stack) is the most popular open source logging platform.',
+ }),
+ },
+ {
+ id: 'apm',
+ title: i18n.translate('xpack.observability.section.apps.apm.title', {
+ defaultMessage: 'APM',
+ }),
+ icon: 'logoAPM',
+ description: i18n.translate('xpack.observability.section.apps.apm.description', {
+ defaultMessage:
+ 'See exactly where your application is spending time so you can quickly fix issues and feel good about the code you push.',
+ }),
+ },
+ {
+ id: 'metrics',
+ title: i18n.translate('xpack.observability.section.apps.metrics.title', {
+ defaultMessage: 'Metrics',
+ }),
+ icon: 'logoMetrics',
+ description: i18n.translate('xpack.observability.section.apps.metrics.description', {
+ defaultMessage:
+ 'Already using the Elastic Stack for logs? Add metrics in just a few steps and correlate metrics and logs in one place.',
+ }),
+ },
+ {
+ id: 'uptime',
+ title: i18n.translate('xpack.observability.section.apps.uptime.title', {
+ defaultMessage: 'Uptime',
+ }),
+ icon: 'logoUptime',
+ description: i18n.translate('xpack.observability.section.apps.uptime.description', {
+ defaultMessage:
+ 'React to availability issues across your apps and services before they affect users.',
+ }),
+ },
+];
+
+export const tryItOutItemsSection: ISection[] = [
+ {
+ id: 'demo',
+ title: i18n.translate('xpack.observability.section.tryItOut.demo.title', {
+ defaultMessage: 'Demo Playground',
+ }),
+ icon: 'play',
+ description: '',
+ href: 'https://demo.elastic.co/',
+ target: '_blank',
+ },
+ {
+ id: 'sampleData',
+ title: i18n.translate('xpack.observability.section.tryItOut.sampleData.title', {
+ defaultMessage: 'Add sample data',
+ }),
+ icon: 'documents',
+ description: '',
+ href: '/app/home#/tutorial_directory/sampleData',
+ },
+];
diff --git a/x-pack/plugins/observability/public/plugin.ts b/x-pack/plugins/observability/public/plugin.ts
index a7eb1c50a0392..f2c88a7b1c056 100644
--- a/x-pack/plugins/observability/public/plugin.ts
+++ b/x-pack/plugins/observability/public/plugin.ts
@@ -3,13 +3,37 @@
* or more contributor license agreements. Licensed under the Elastic License;
* you may not use this file except in compliance with the Elastic License.
*/
-import { Plugin as PluginClass, PluginInitializerContext } from 'kibana/public';
+import {
+ AppMountParameters,
+ CoreSetup,
+ DEFAULT_APP_CATEGORIES,
+ Plugin as PluginClass,
+ PluginInitializerContext,
+} from '../../../../src/core/public';
export type ClientSetup = void;
export type ClientStart = void;
-export class Plugin implements PluginClass {
+export class Plugin implements PluginClass {
constructor(context: PluginInitializerContext) {}
- start() {}
- setup() {}
+
+ public setup(core: CoreSetup) {
+ core.application.register({
+ id: 'observability-overview',
+ title: 'Overview',
+ order: 8000,
+ appRoute: '/app/observability',
+ category: DEFAULT_APP_CATEGORIES.observability,
+
+ async mount(params: AppMountParameters) {
+ // Load application bundle
+ const { renderApp } = await import('./application');
+ // Get start services
+ const [coreStart] = await core.getStartServices();
+
+ return renderApp(coreStart, params);
+ },
+ });
+ }
+ public start() {}
}
diff --git a/x-pack/plugins/painless_lab/public/application/hooks/use_submit_code.ts b/x-pack/plugins/painless_lab/public/application/hooks/use_submit_code.ts
index 36cd4f280ac4c..d0426a5e67e46 100644
--- a/x-pack/plugins/painless_lab/public/application/hooks/use_submit_code.ts
+++ b/x-pack/plugins/painless_lab/public/application/hooks/use_submit_code.ts
@@ -19,6 +19,7 @@ export const useSubmitCode = (http: HttpSetup) => {
const [response, setResponse] = useState(undefined);
const [inProgress, setInProgress] = useState(false);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const submit = useCallback(
debounce(
async (config: Payload) => {
diff --git a/x-pack/plugins/reporting/server/export_types/csv/server/execute_job.test.ts b/x-pack/plugins/reporting/server/export_types/csv/server/execute_job.test.ts
index 6f227d00974ca..ddcf94079ade4 100644
--- a/x-pack/plugins/reporting/server/export_types/csv/server/execute_job.test.ts
+++ b/x-pack/plugins/reporting/server/export_types/csv/server/execute_job.test.ts
@@ -8,7 +8,7 @@ import nodeCrypto from '@elastic/node-crypto';
// @ts-ignore
import Puid from 'puid';
import sinon from 'sinon';
-import { fieldFormats } from '../../../../../../../src/plugins/data/server';
+import { fieldFormats, UI_SETTINGS } from '../../../../../../../src/plugins/data/server';
import { CancellationToken } from '../../../../common';
import { CSV_BOM_CHARS } from '../../../../common/constants';
import { LevelLogger } from '../../../lib';
@@ -16,6 +16,10 @@ import { setFieldFormats } from '../../../services';
import { createMockReportingCore } from '../../../test_helpers';
import { JobDocPayloadDiscoverCsv } from '../types';
import { executeJobFactory } from './execute_job';
+import {
+ CSV_SEPARATOR_SETTING,
+ CSV_QUOTE_VALUES_SETTING,
+} from '../../../../../../../src/plugins/share/server';
const delay = (ms: number) => new Promise((resolve) => setTimeout(() => resolve(), ms));
@@ -94,13 +98,13 @@ describe('CSV Execute Job', function () {
.stub(clusterStub, 'callAsCurrentUser')
.resolves(defaultElasticsearchResponse);
- mockUiSettingsClient.get.withArgs('csv:separator').returns(',');
- mockUiSettingsClient.get.withArgs('csv:quoteValues').returns(true);
+ mockUiSettingsClient.get.withArgs(CSV_SEPARATOR_SETTING).returns(',');
+ mockUiSettingsClient.get.withArgs(CSV_QUOTE_VALUES_SETTING).returns(true);
setFieldFormats({
fieldFormatServiceFactory() {
const uiConfigMock = {};
- (uiConfigMock as any)['format:defaultTypeMap'] = {
+ (uiConfigMock as any)[UI_SETTINGS.FORMAT_DEFAULT_TYPE_MAP] = {
_default_: { id: 'string', params: {} },
};
@@ -748,7 +752,7 @@ describe('CSV Execute Job', function () {
});
it('should use custom uiSettings csv:separator for header', async function () {
- mockUiSettingsClient.get.withArgs('csv:separator').returns(';');
+ mockUiSettingsClient.get.withArgs(CSV_SEPARATOR_SETTING).returns(';');
const executeJob = await executeJobFactory(mockReportingCore, mockLogger);
const jobParams = getJobDocPayload({
headers: encryptedHeaders,
@@ -760,7 +764,7 @@ describe('CSV Execute Job', function () {
});
it('should escape column headers if uiSettings csv:quoteValues is true', async function () {
- mockUiSettingsClient.get.withArgs('csv:quoteValues').returns(true);
+ mockUiSettingsClient.get.withArgs(CSV_QUOTE_VALUES_SETTING).returns(true);
const executeJob = await executeJobFactory(mockReportingCore, mockLogger);
const jobParams = getJobDocPayload({
headers: encryptedHeaders,
@@ -772,7 +776,7 @@ describe('CSV Execute Job', function () {
});
it(`shouldn't escape column headers if uiSettings csv:quoteValues is false`, async function () {
- mockUiSettingsClient.get.withArgs('csv:quoteValues').returns(false);
+ mockUiSettingsClient.get.withArgs(CSV_QUOTE_VALUES_SETTING).returns(false);
const executeJob = await executeJobFactory(mockReportingCore, mockLogger);
const jobParams = getJobDocPayload({
headers: encryptedHeaders,
diff --git a/x-pack/plugins/reporting/server/export_types/csv/server/execute_job.ts b/x-pack/plugins/reporting/server/export_types/csv/server/execute_job.ts
index de5ddb2503b2f..4b17cc669efe1 100644
--- a/x-pack/plugins/reporting/server/export_types/csv/server/execute_job.ts
+++ b/x-pack/plugins/reporting/server/export_types/csv/server/execute_job.ts
@@ -7,6 +7,10 @@
import { i18n } from '@kbn/i18n';
import Hapi from 'hapi';
import { IUiSettingsClient, KibanaRequest } from '../../../../../../../src/core/server';
+import {
+ CSV_SEPARATOR_SETTING,
+ CSV_QUOTE_VALUES_SETTING,
+} from '../../../../../../../src/plugins/share/server';
import { ReportingCore } from '../../..';
import { CSV_BOM_CHARS, CSV_JOB_TYPE } from '../../../../common/constants';
import { getFieldFormats } from '../../../../server/services';
@@ -94,8 +98,8 @@ export const executeJobFactory: ExecuteJobFactory {
const [separator, quoteValues, timezone] = await Promise.all([
- client.get('csv:separator'),
- client.get('csv:quoteValues'),
+ client.get(CSV_SEPARATOR_SETTING),
+ client.get(CSV_QUOTE_VALUES_SETTING),
client.get('dateFormat:tz'),
]);
diff --git a/x-pack/plugins/reporting/server/export_types/csv/server/lib/field_format_map.test.ts b/x-pack/plugins/reporting/server/export_types/csv/server/lib/field_format_map.test.ts
index 0434da3d11fe1..83aa23de67663 100644
--- a/x-pack/plugins/reporting/server/export_types/csv/server/lib/field_format_map.test.ts
+++ b/x-pack/plugins/reporting/server/export_types/csv/server/lib/field_format_map.test.ts
@@ -9,6 +9,7 @@ import expect from '@kbn/expect';
import {
fieldFormats,
FieldFormatsGetConfigFn,
+ UI_SETTINGS,
} from '../../../../../../../../src/plugins/data/server';
import { fieldFormatMapFactory } from './field_format_map';
@@ -28,10 +29,10 @@ describe('field format map', function () {
},
};
const configMock: Record = {};
- configMock['format:defaultTypeMap'] = {
+ configMock[UI_SETTINGS.FORMAT_DEFAULT_TYPE_MAP] = {
number: { id: 'number', params: {} },
};
- configMock['format:number:defaultPattern'] = '0,0.[000]';
+ configMock[UI_SETTINGS.FORMAT_NUMBER_DEFAULT_PATTERN] = '0,0.[000]';
const getConfig = ((key: string) => configMock[key]) as FieldFormatsGetConfigFn;
const testValue = '4000';
diff --git a/x-pack/plugins/reporting/server/export_types/csv_from_savedobject/server/lib/generate_csv_search.ts b/x-pack/plugins/reporting/server/export_types/csv_from_savedobject/server/lib/generate_csv_search.ts
index a9e4366f4eda6..3f997a703bef1 100644
--- a/x-pack/plugins/reporting/server/export_types/csv_from_savedobject/server/lib/generate_csv_search.ts
+++ b/x-pack/plugins/reporting/server/export_types/csv_from_savedobject/server/lib/generate_csv_search.ts
@@ -16,7 +16,12 @@ import {
Filter,
IIndexPattern,
Query,
+ UI_SETTINGS,
} from '../../../../../../../../src/plugins/data/server';
+import {
+ CSV_SEPARATOR_SETTING,
+ CSV_QUOTE_VALUES_SETTING,
+} from '../../../../../../../../src/plugins/share/server';
import { CancellationToken } from '../../../../../common';
import { LevelLogger } from '../../../../lib';
import { createGenerateCsv } from '../../../csv/server/lib/generate_csv';
@@ -32,9 +37,9 @@ import { getFilters } from './get_filters';
const getEsQueryConfig = async (config: IUiSettingsClient) => {
const configs = await Promise.all([
- config.get('query:allowLeadingWildcards'),
- config.get('query:queryString:options'),
- config.get('courier:ignoreFilterIfFieldNotInIndex'),
+ config.get(UI_SETTINGS.QUERY_ALLOW_LEADING_WILDCARDS),
+ config.get(UI_SETTINGS.QUERY_STRING_OPTIONS),
+ config.get(UI_SETTINGS.COURIER_IGNORE_FILTER_IF_FIELD_NOT_IN_INDEX),
]);
const [allowLeadingWildcards, queryStringOptions, ignoreFilterIfFieldNotInIndex] = configs;
return {
@@ -45,7 +50,10 @@ const getEsQueryConfig = async (config: IUiSettingsClient) => {
};
const getUiSettings = async (config: IUiSettingsClient) => {
- const configs = await Promise.all([config.get('csv:separator'), config.get('csv:quoteValues')]);
+ const configs = await Promise.all([
+ config.get(CSV_SEPARATOR_SETTING),
+ config.get(CSV_QUOTE_VALUES_SETTING),
+ ]);
const [separator, quoteValues] = configs;
return { separator, quoteValues };
};
diff --git a/x-pack/plugins/security/public/account_management/account_management_app.ts b/x-pack/plugins/security/public/account_management/account_management_app.ts
index 41567a04fe030..0bb7785259c0e 100644
--- a/x-pack/plugins/security/public/account_management/account_management_app.ts
+++ b/x-pack/plugins/security/public/account_management/account_management_app.ts
@@ -5,7 +5,12 @@
*/
import { i18n } from '@kbn/i18n';
-import { StartServicesAccessor, ApplicationSetup, AppMountParameters } from 'src/core/public';
+import {
+ ApplicationSetup,
+ AppMountParameters,
+ AppNavLinkStatus,
+ StartServicesAccessor,
+} from '../../../../../src/core/public';
import { AuthenticationServiceSetup } from '../authentication';
interface CreateDeps {
@@ -23,8 +28,7 @@ export const accountManagementApp = Object.freeze({
application.register({
id: this.id,
title,
- // TODO: switch to proper enum once https://github.com/elastic/kibana/issues/58327 is resolved.
- navLinkStatus: 3,
+ navLinkStatus: AppNavLinkStatus.hidden,
appRoute: '/security/account',
async mount({ element }: AppMountParameters) {
const [
diff --git a/x-pack/plugins/security/public/authentication/login/components/login_form/login_form.scss b/x-pack/plugins/security/public/authentication/login/components/login_form/login_form.scss
index 6784052ef4337..344cde9c7825c 100644
--- a/x-pack/plugins/security/public/authentication/login/components/login_form/login_form.scss
+++ b/x-pack/plugins/security/public/authentication/login/components/login_form/login_form.scss
@@ -23,9 +23,10 @@
}
&:focus {
+ @include euiFocusRing;
+
border-color: transparent;
border-radius: $euiBorderRadius;
- @include euiFocusRing;
.secLoginCard__title {
text-decoration: underline;
diff --git a/x-pack/plugins/security/public/management/roles/__fixtures__/kibana_privileges.ts b/x-pack/plugins/security/public/management/roles/__fixtures__/kibana_privileges.ts
index 98110a83103aa..6821c163d817d 100644
--- a/x-pack/plugins/security/public/management/roles/__fixtures__/kibana_privileges.ts
+++ b/x-pack/plugins/security/public/management/roles/__fixtures__/kibana_privileges.ts
@@ -11,13 +11,15 @@ import { Feature } from '../../../../../features/public';
import { KibanaPrivileges } from '../model';
import { SecurityLicenseFeatures } from '../../..';
+// eslint-disable-next-line @kbn/eslint/no-restricted-paths
+import { featuresPluginMock } from '../../../../../features/server/mocks';
+
export const createRawKibanaPrivileges = (
features: Feature[],
{ allowSubFeaturePrivileges = true } = {}
) => {
- const featuresService = {
- getFeatures: () => features,
- };
+ const featuresService = featuresPluginMock.createSetup();
+ featuresService.getFeatures.mockReturnValue(features);
const licensingService = {
getFeatures: () => ({ allowSubFeaturePrivileges } as SecurityLicenseFeatures),
diff --git a/x-pack/plugins/security/public/management/roles/edit_role/edit_role_page.test.tsx b/x-pack/plugins/security/public/management/roles/edit_role/edit_role_page.test.tsx
index afb8b6ec5dbe0..43387d913e6fc 100644
--- a/x-pack/plugins/security/public/management/roles/edit_role/edit_role_page.test.tsx
+++ b/x-pack/plugins/security/public/management/roles/edit_role/edit_role_page.test.tsx
@@ -163,7 +163,12 @@ function getProps({
const { http, docLinks, notifications } = coreMock.createStart();
http.get.mockImplementation(async (path: any) => {
if (path === '/api/spaces/space') {
- return buildSpaces();
+ if (spacesEnabled) {
+ return buildSpaces();
+ }
+
+ const notFoundError = { response: { status: 404 } };
+ throw notFoundError;
}
});
@@ -181,7 +186,6 @@ function getProps({
notifications,
docLinks: new DocumentationLinksService(docLinks),
fatalErrors,
- spacesEnabled,
uiCapabilities: buildUICapabilities(canManageSpaces),
history: (scopedHistoryMock.create() as unknown) as ScopedHistory,
};
diff --git a/x-pack/plugins/security/public/management/roles/edit_role/edit_role_page.tsx b/x-pack/plugins/security/public/management/roles/edit_role/edit_role_page.tsx
index 77f4455d813c6..15888733ec424 100644
--- a/x-pack/plugins/security/public/management/roles/edit_role/edit_role_page.tsx
+++ b/x-pack/plugins/security/public/management/roles/edit_role/edit_role_page.tsx
@@ -80,7 +80,6 @@ interface Props {
docLinks: DocumentationLinksService;
http: HttpStart;
license: SecurityLicense;
- spacesEnabled: boolean;
uiCapabilities: Capabilities;
notifications: NotificationsStart;
fatalErrors: FatalErrorsSetup;
@@ -225,14 +224,21 @@ function useRole(
return [role, setRole] as [Role | null, typeof setRole];
}
-function useSpaces(http: HttpStart, fatalErrors: FatalErrorsSetup, spacesEnabled: boolean) {
- const [spaces, setSpaces] = useState(null);
+function useSpaces(http: HttpStart, fatalErrors: FatalErrorsSetup) {
+ const [spaces, setSpaces] = useState<{ enabled: boolean; list: Space[] } | null>(null);
useEffect(() => {
- (spacesEnabled ? http.get('/api/spaces/space') : Promise.resolve([])).then(
- (fetchedSpaces) => setSpaces(fetchedSpaces),
- (err) => fatalErrors.add(err)
+ http.get('/api/spaces/space').then(
+ (fetchedSpaces) => setSpaces({ enabled: true, list: fetchedSpaces }),
+ (err: IHttpFetchError) => {
+ // Spaces plugin can be disabled and hence this endpoint can be unavailable.
+ if (err.response?.status === 404) {
+ setSpaces({ enabled: false, list: [] });
+ } else {
+ fatalErrors.add(err);
+ }
+ }
);
- }, [http, fatalErrors, spacesEnabled]);
+ }, [http, fatalErrors]);
return spaces;
}
@@ -278,7 +284,6 @@ export const EditRolePage: FunctionComponent = ({
roleName,
action,
fatalErrors,
- spacesEnabled,
license,
docLinks,
uiCapabilities,
@@ -295,7 +300,7 @@ export const EditRolePage: FunctionComponent = ({
const runAsUsers = useRunAsUsers(userAPIClient, fatalErrors);
const indexPatternsTitles = useIndexPatternsTitles(indexPatterns, fatalErrors, notifications);
const privileges = usePrivileges(privilegesAPIClient, fatalErrors);
- const spaces = useSpaces(http, fatalErrors, spacesEnabled);
+ const spaces = useSpaces(http, fatalErrors);
const features = useFeatures(getFeatures, fatalErrors);
const [role, setRole] = useRole(
rolesAPIClient,
@@ -434,8 +439,8 @@ export const EditRolePage: FunctionComponent = ({
= ({
setFormError(null);
try {
- await rolesAPIClient.saveRole({ role, spacesEnabled });
+ await rolesAPIClient.saveRole({ role, spacesEnabled: spaces.enabled });
} catch (error) {
notifications.toasts.addDanger(get(error, 'data.message'));
return;
@@ -554,7 +559,7 @@ export const EditRolePage: FunctionComponent = ({
backToRoleList();
};
- const description = spacesEnabled ? (
+ const description = spaces.enabled ? (
{
diff --git a/x-pack/plugins/security/server/authorization/app_authorization.ts b/x-pack/plugins/security/server/authorization/app_authorization.ts
index aead8cb07897c..1036997ca821d 100644
--- a/x-pack/plugins/security/server/authorization/app_authorization.ts
+++ b/x-pack/plugins/security/server/authorization/app_authorization.ts
@@ -4,13 +4,13 @@
* you may not use this file except in compliance with the Elastic License.
*/
-import { CoreSetup, Logger } from '../../../../../src/core/server';
-import { FeaturesService } from '../plugin';
-import { Authorization } from '.';
+import { HttpServiceSetup, Logger } from '../../../../../src/core/server';
+import { PluginSetupContract as FeaturesPluginSetup } from '../../../features/server';
+import { AuthorizationServiceSetup } from '.';
class ProtectedApplications {
private applications: Set | null = null;
- constructor(private readonly featuresService: FeaturesService) {}
+ constructor(private readonly featuresService: FeaturesPluginSetup) {}
public shouldProtect(appId: string) {
// Currently, once we get the list of features we essentially "lock" additional
@@ -30,14 +30,14 @@ class ProtectedApplications {
}
export function initAppAuthorization(
- http: CoreSetup['http'],
+ http: HttpServiceSetup,
{
actions,
checkPrivilegesDynamicallyWithRequest,
mode,
- }: Pick,
+ }: Pick,
logger: Logger,
- featuresService: FeaturesService
+ featuresService: FeaturesPluginSetup
) {
const protectedApplications = new ProtectedApplications(featuresService);
diff --git a/x-pack/plugins/security/server/authorization/authorization_service.test.ts b/x-pack/plugins/security/server/authorization/authorization_service.test.ts
new file mode 100644
index 0000000000000..978c985cfe820
--- /dev/null
+++ b/x-pack/plugins/security/server/authorization/authorization_service.test.ts
@@ -0,0 +1,263 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License;
+ * you may not use this file except in compliance with the Elastic License.
+ */
+
+import {
+ mockAuthorizationModeFactory,
+ mockCheckPrivilegesDynamicallyWithRequestFactory,
+ mockCheckPrivilegesWithRequestFactory,
+ mockCheckSavedObjectsPrivilegesWithRequestFactory,
+ mockPrivilegesFactory,
+ mockRegisterPrivilegesWithCluster,
+} from './service.test.mocks';
+
+import { BehaviorSubject } from 'rxjs';
+import { CoreStatus, ServiceStatusLevels } from '../../../../../src/core/server';
+import { checkPrivilegesWithRequestFactory } from './check_privileges';
+import { checkPrivilegesDynamicallyWithRequestFactory } from './check_privileges_dynamically';
+import { checkSavedObjectsPrivilegesWithRequestFactory } from './check_saved_objects_privileges';
+import { authorizationModeFactory } from './mode';
+import { privilegesFactory } from './privileges';
+import { AuthorizationService } from '.';
+
+import {
+ coreMock,
+ elasticsearchServiceMock,
+ loggingServiceMock,
+} from '../../../../../src/core/server/mocks';
+import { featuresPluginMock } from '../../../features/server/mocks';
+import { licenseMock } from '../../common/licensing/index.mock';
+import { SecurityLicense, SecurityLicenseFeatures } from '../../common/licensing';
+import { nextTick } from 'test_utils/enzyme_helpers';
+
+const kibanaIndexName = '.a-kibana-index';
+const application = `kibana-${kibanaIndexName}`;
+const mockCheckPrivilegesWithRequest = Symbol();
+const mockCheckPrivilegesDynamicallyWithRequest = Symbol();
+const mockCheckSavedObjectsPrivilegesWithRequest = Symbol();
+const mockPrivilegesService = Symbol();
+const mockAuthorizationMode = Symbol();
+beforeEach(() => {
+ mockCheckPrivilegesWithRequestFactory.mockReturnValue(mockCheckPrivilegesWithRequest);
+ mockCheckPrivilegesDynamicallyWithRequestFactory.mockReturnValue(
+ mockCheckPrivilegesDynamicallyWithRequest
+ );
+ mockCheckSavedObjectsPrivilegesWithRequestFactory.mockReturnValue(
+ mockCheckSavedObjectsPrivilegesWithRequest
+ );
+ mockPrivilegesFactory.mockReturnValue(mockPrivilegesService);
+ mockAuthorizationModeFactory.mockReturnValue(mockAuthorizationMode);
+});
+
+afterEach(() => {
+ mockRegisterPrivilegesWithCluster.mockClear();
+});
+
+it(`#setup returns exposed services`, () => {
+ const mockClusterClient = elasticsearchServiceMock.createClusterClient();
+ const mockGetSpacesService = jest
+ .fn()
+ .mockReturnValue({ getSpaceId: jest.fn(), namespaceToSpaceId: jest.fn() });
+ const mockFeaturesSetup = featuresPluginMock.createSetup();
+ const mockLicense = licenseMock.create();
+ const mockCoreSetup = coreMock.createSetup();
+
+ const authorizationService = new AuthorizationService();
+ const authz = authorizationService.setup({
+ http: mockCoreSetup.http,
+ capabilities: mockCoreSetup.capabilities,
+ status: mockCoreSetup.status,
+ clusterClient: mockClusterClient,
+ license: mockLicense,
+ loggers: loggingServiceMock.create(),
+ kibanaIndexName,
+ packageVersion: 'some-version',
+ features: mockFeaturesSetup,
+ getSpacesService: mockGetSpacesService,
+ });
+
+ expect(authz.actions.version).toBe('version:some-version');
+ expect(authz.applicationName).toBe(application);
+
+ expect(authz.checkPrivilegesWithRequest).toBe(mockCheckPrivilegesWithRequest);
+ expect(checkPrivilegesWithRequestFactory).toHaveBeenCalledWith(
+ authz.actions,
+ mockClusterClient,
+ authz.applicationName
+ );
+
+ expect(authz.checkPrivilegesDynamicallyWithRequest).toBe(
+ mockCheckPrivilegesDynamicallyWithRequest
+ );
+ expect(checkPrivilegesDynamicallyWithRequestFactory).toHaveBeenCalledWith(
+ mockCheckPrivilegesWithRequest,
+ mockGetSpacesService
+ );
+
+ expect(authz.checkSavedObjectsPrivilegesWithRequest).toBe(
+ mockCheckSavedObjectsPrivilegesWithRequest
+ );
+ expect(checkSavedObjectsPrivilegesWithRequestFactory).toHaveBeenCalledWith(
+ mockCheckPrivilegesWithRequest,
+ mockGetSpacesService
+ );
+
+ expect(authz.privileges).toBe(mockPrivilegesService);
+ expect(privilegesFactory).toHaveBeenCalledWith(authz.actions, mockFeaturesSetup, mockLicense);
+
+ expect(authz.mode).toBe(mockAuthorizationMode);
+ expect(authorizationModeFactory).toHaveBeenCalledWith(mockLicense);
+
+ expect(mockCoreSetup.capabilities.registerSwitcher).toHaveBeenCalledTimes(1);
+ expect(mockCoreSetup.capabilities.registerSwitcher).toHaveBeenCalledWith(expect.any(Function));
+});
+
+describe('#start', () => {
+ let statusSubject: BehaviorSubject;
+ let licenseSubject: BehaviorSubject;
+ let mockLicense: jest.Mocked;
+ beforeEach(() => {
+ const mockClusterClient = elasticsearchServiceMock.createClusterClient();
+
+ licenseSubject = new BehaviorSubject(({} as unknown) as SecurityLicenseFeatures);
+ mockLicense = licenseMock.create();
+ mockLicense.isEnabled.mockReturnValue(false);
+ mockLicense.features$ = licenseSubject;
+
+ statusSubject = new BehaviorSubject({
+ elasticsearch: { level: ServiceStatusLevels.unavailable, summary: 'Service is NOT working' },
+ savedObjects: { level: ServiceStatusLevels.unavailable, summary: 'Service is NOT working' },
+ });
+ const mockCoreSetup = coreMock.createSetup();
+ mockCoreSetup.status.core$ = statusSubject;
+
+ const authorizationService = new AuthorizationService();
+ authorizationService.setup({
+ http: mockCoreSetup.http,
+ capabilities: mockCoreSetup.capabilities,
+ status: mockCoreSetup.status,
+ clusterClient: mockClusterClient,
+ license: mockLicense,
+ loggers: loggingServiceMock.create(),
+ kibanaIndexName,
+ packageVersion: 'some-version',
+ features: featuresPluginMock.createSetup(),
+ getSpacesService: jest
+ .fn()
+ .mockReturnValue({ getSpaceId: jest.fn(), namespaceToSpaceId: jest.fn() }),
+ });
+
+ const featuresStart = featuresPluginMock.createStart();
+ featuresStart.getFeatures.mockReturnValue([]);
+
+ authorizationService.start({ clusterClient: mockClusterClient, features: featuresStart });
+
+ // ES and license aren't available yet.
+ expect(mockRegisterPrivilegesWithCluster).not.toHaveBeenCalled();
+ });
+
+ it('registers cluster privileges', async () => {
+ // ES is available now, but not license.
+ statusSubject.next({
+ elasticsearch: { level: ServiceStatusLevels.available, summary: 'Service is working' },
+ savedObjects: { level: ServiceStatusLevels.unavailable, summary: 'Service is NOT working' },
+ });
+ expect(mockRegisterPrivilegesWithCluster).not.toHaveBeenCalled();
+
+ // Both ES and license are available now.
+ mockLicense.isEnabled.mockReturnValue(true);
+ licenseSubject.next(({} as unknown) as SecurityLicenseFeatures);
+ expect(mockRegisterPrivilegesWithCluster).toHaveBeenCalledTimes(1);
+
+ await nextTick();
+
+ // New changes still trigger privileges re-registration.
+ licenseSubject.next(({} as unknown) as SecurityLicenseFeatures);
+ expect(mockRegisterPrivilegesWithCluster).toHaveBeenCalledTimes(2);
+ });
+
+ it('schedules retries if fails to register cluster privileges', async () => {
+ jest.useFakeTimers();
+
+ mockRegisterPrivilegesWithCluster.mockRejectedValue(new Error('Some error'));
+
+ // Both ES and license are available.
+ mockLicense.isEnabled.mockReturnValue(true);
+ statusSubject.next({
+ elasticsearch: { level: ServiceStatusLevels.available, summary: 'Service is working' },
+ savedObjects: { level: ServiceStatusLevels.unavailable, summary: 'Service is NOT working' },
+ });
+ expect(mockRegisterPrivilegesWithCluster).toHaveBeenCalledTimes(1);
+
+ // Next retry isn't performed immediately, retry happens only after a timeout.
+ await nextTick();
+ expect(mockRegisterPrivilegesWithCluster).toHaveBeenCalledTimes(1);
+ jest.advanceTimersByTime(100);
+ expect(mockRegisterPrivilegesWithCluster).toHaveBeenCalledTimes(2);
+
+ // Delay between consequent retries is increasing.
+ await nextTick();
+ jest.advanceTimersByTime(100);
+ expect(mockRegisterPrivilegesWithCluster).toHaveBeenCalledTimes(2);
+ await nextTick();
+ jest.advanceTimersByTime(100);
+ expect(mockRegisterPrivilegesWithCluster).toHaveBeenCalledTimes(3);
+
+ // When call finally succeeds retries aren't scheduled anymore.
+ mockRegisterPrivilegesWithCluster.mockResolvedValue(undefined);
+ await nextTick();
+ jest.runAllTimers();
+ expect(mockRegisterPrivilegesWithCluster).toHaveBeenCalledTimes(4);
+ await nextTick();
+ jest.runAllTimers();
+ expect(mockRegisterPrivilegesWithCluster).toHaveBeenCalledTimes(4);
+
+ // New changes still trigger privileges re-registration.
+ licenseSubject.next(({} as unknown) as SecurityLicenseFeatures);
+ expect(mockRegisterPrivilegesWithCluster).toHaveBeenCalledTimes(5);
+ });
+});
+
+it('#stop unsubscribes from license and ES updates.', () => {
+ const mockClusterClient = elasticsearchServiceMock.createClusterClient();
+
+ const licenseSubject = new BehaviorSubject(({} as unknown) as SecurityLicenseFeatures);
+ const mockLicense = licenseMock.create();
+ mockLicense.isEnabled.mockReturnValue(false);
+ mockLicense.features$ = licenseSubject;
+
+ const mockCoreSetup = coreMock.createSetup();
+ mockCoreSetup.status.core$ = new BehaviorSubject({
+ elasticsearch: { level: ServiceStatusLevels.available, summary: 'Service is working' },
+ savedObjects: { level: ServiceStatusLevels.available, summary: 'Service is working' },
+ });
+
+ const authorizationService = new AuthorizationService();
+ authorizationService.setup({
+ http: mockCoreSetup.http,
+ capabilities: mockCoreSetup.capabilities,
+ status: mockCoreSetup.status,
+ clusterClient: mockClusterClient,
+ license: mockLicense,
+ loggers: loggingServiceMock.create(),
+ kibanaIndexName,
+ packageVersion: 'some-version',
+ features: featuresPluginMock.createSetup(),
+ getSpacesService: jest
+ .fn()
+ .mockReturnValue({ getSpaceId: jest.fn(), namespaceToSpaceId: jest.fn() }),
+ });
+
+ const featuresStart = featuresPluginMock.createStart();
+ featuresStart.getFeatures.mockReturnValue([]);
+ authorizationService.start({ clusterClient: mockClusterClient, features: featuresStart });
+
+ authorizationService.stop();
+
+ // After stop we don't register privileges even if all requirements are met.
+ mockLicense.isEnabled.mockReturnValue(true);
+ licenseSubject.next(({} as unknown) as SecurityLicenseFeatures);
+ expect(mockRegisterPrivilegesWithCluster).not.toHaveBeenCalled();
+});
diff --git a/x-pack/plugins/security/server/authorization/authorization_service.ts b/x-pack/plugins/security/server/authorization/authorization_service.ts
new file mode 100644
index 0000000000000..989784a1436d2
--- /dev/null
+++ b/x-pack/plugins/security/server/authorization/authorization_service.ts
@@ -0,0 +1,221 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License;
+ * you may not use this file except in compliance with the Elastic License.
+ */
+
+import { combineLatest, BehaviorSubject, Subscription } from 'rxjs';
+import { distinctUntilChanged, filter } from 'rxjs/operators';
+import { UICapabilities } from 'ui/capabilities';
+import {
+ LoggerFactory,
+ KibanaRequest,
+ IClusterClient,
+ ServiceStatusLevels,
+ Logger,
+ StatusServiceSetup,
+ HttpServiceSetup,
+ CapabilitiesSetup,
+} from '../../../../../src/core/server';
+
+import {
+ PluginSetupContract as FeaturesPluginSetup,
+ PluginStartContract as FeaturesPluginStart,
+} from '../../../features/server';
+
+import { SpacesService } from '../plugin';
+import { Actions } from './actions';
+import { CheckPrivilegesWithRequest, checkPrivilegesWithRequestFactory } from './check_privileges';
+import {
+ CheckPrivilegesDynamicallyWithRequest,
+ checkPrivilegesDynamicallyWithRequestFactory,
+} from './check_privileges_dynamically';
+import {
+ CheckSavedObjectsPrivilegesWithRequest,
+ checkSavedObjectsPrivilegesWithRequestFactory,
+} from './check_saved_objects_privileges';
+import { AuthorizationMode, authorizationModeFactory } from './mode';
+import { privilegesFactory, PrivilegesService } from './privileges';
+import { initAppAuthorization } from './app_authorization';
+import { initAPIAuthorization } from './api_authorization';
+import { disableUICapabilitiesFactory } from './disable_ui_capabilities';
+import { validateFeaturePrivileges } from './validate_feature_privileges';
+import { validateReservedPrivileges } from './validate_reserved_privileges';
+import { registerPrivilegesWithCluster } from './register_privileges_with_cluster';
+import { APPLICATION_PREFIX } from '../../common/constants';
+import { SecurityLicense } from '../../common/licensing';
+
+export { Actions } from './actions';
+export { CheckSavedObjectsPrivileges } from './check_saved_objects_privileges';
+export { featurePrivilegeIterator } from './privileges';
+
+interface AuthorizationServiceSetupParams {
+ packageVersion: string;
+ http: HttpServiceSetup;
+ status: StatusServiceSetup;
+ capabilities: CapabilitiesSetup;
+ clusterClient: IClusterClient;
+ license: SecurityLicense;
+ loggers: LoggerFactory;
+ features: FeaturesPluginSetup;
+ kibanaIndexName: string;
+ getSpacesService(): SpacesService | undefined;
+}
+
+interface AuthorizationServiceStartParams {
+ features: FeaturesPluginStart;
+ clusterClient: IClusterClient;
+}
+
+export interface AuthorizationServiceSetup {
+ actions: Actions;
+ checkPrivilegesWithRequest: CheckPrivilegesWithRequest;
+ checkPrivilegesDynamicallyWithRequest: CheckPrivilegesDynamicallyWithRequest;
+ checkSavedObjectsPrivilegesWithRequest: CheckSavedObjectsPrivilegesWithRequest;
+ applicationName: string;
+ mode: AuthorizationMode;
+ privileges: PrivilegesService;
+}
+
+export class AuthorizationService {
+ private logger!: Logger;
+ private license!: SecurityLicense;
+ private status!: StatusServiceSetup;
+ private applicationName!: string;
+ private privileges!: PrivilegesService;
+
+ private statusSubscription?: Subscription;
+
+ setup({
+ http,
+ capabilities,
+ status,
+ packageVersion,
+ clusterClient,
+ license,
+ loggers,
+ features,
+ kibanaIndexName,
+ getSpacesService,
+ }: AuthorizationServiceSetupParams): AuthorizationServiceSetup {
+ this.logger = loggers.get('authorization');
+ this.license = license;
+ this.status = status;
+ this.applicationName = `${APPLICATION_PREFIX}${kibanaIndexName}`;
+
+ const mode = authorizationModeFactory(license);
+ const actions = new Actions(packageVersion);
+ this.privileges = privilegesFactory(actions, features, license);
+
+ const checkPrivilegesWithRequest = checkPrivilegesWithRequestFactory(
+ actions,
+ clusterClient,
+ this.applicationName
+ );
+
+ const authz = {
+ actions,
+ applicationName: this.applicationName,
+ mode,
+ privileges: this.privileges,
+ checkPrivilegesWithRequest,
+ checkPrivilegesDynamicallyWithRequest: checkPrivilegesDynamicallyWithRequestFactory(
+ checkPrivilegesWithRequest,
+ getSpacesService
+ ),
+ checkSavedObjectsPrivilegesWithRequest: checkSavedObjectsPrivilegesWithRequestFactory(
+ checkPrivilegesWithRequest,
+ getSpacesService
+ ),
+ };
+
+ capabilities.registerSwitcher(
+ async (request: KibanaRequest, uiCapabilities: UICapabilities) => {
+ // If we have a license which doesn't enable security, or we're a legacy user we shouldn't
+ // disable any ui capabilities
+ if (!mode.useRbacForRequest(request)) {
+ return uiCapabilities;
+ }
+
+ const disableUICapabilities = disableUICapabilitiesFactory(
+ request,
+ features.getFeatures(),
+ this.logger,
+ authz
+ );
+
+ if (!request.auth.isAuthenticated) {
+ return disableUICapabilities.all(uiCapabilities);
+ }
+
+ return await disableUICapabilities.usingPrivileges(uiCapabilities);
+ }
+ );
+
+ initAPIAuthorization(http, authz, loggers.get('api-authorization'));
+ initAppAuthorization(http, authz, loggers.get('app-authorization'), features);
+
+ return authz;
+ }
+
+ start({ clusterClient, features }: AuthorizationServiceStartParams) {
+ const allFeatures = features.getFeatures();
+ validateFeaturePrivileges(allFeatures);
+ validateReservedPrivileges(allFeatures);
+
+ this.registerPrivileges(clusterClient);
+ }
+
+ stop() {
+ if (this.statusSubscription !== undefined) {
+ this.statusSubscription.unsubscribe();
+ this.statusSubscription = undefined;
+ }
+ }
+
+ private registerPrivileges(clusterClient: IClusterClient) {
+ const RETRY_SCALE_DURATION = 100;
+ const RETRY_TIMEOUT_MAX = 10000;
+ const retries$ = new BehaviorSubject(0);
+ let retryTimeout: NodeJS.Timeout;
+
+ // Register cluster privileges once Elasticsearch is available and Security plugin is enabled.
+ this.statusSubscription = combineLatest([
+ this.status.core$,
+ this.license.features$,
+ retries$.asObservable().pipe(
+ // We shouldn't emit new value if retry counter is reset. This comparator isn't called for
+ // the initial value.
+ distinctUntilChanged((prev, curr) => prev === curr || curr === 0)
+ ),
+ ])
+ .pipe(
+ filter(
+ ([status]) =>
+ this.license.isEnabled() && status.elasticsearch.level === ServiceStatusLevels.available
+ )
+ )
+ .subscribe(async () => {
+ // If status or license change occurred before retry timeout we should cancel it.
+ if (retryTimeout) {
+ clearTimeout(retryTimeout);
+ }
+
+ try {
+ await registerPrivilegesWithCluster(
+ this.logger,
+ this.privileges,
+ this.applicationName,
+ clusterClient
+ );
+ retries$.next(0);
+ } catch (err) {
+ const retriesElapsed = retries$.getValue() + 1;
+ retryTimeout = setTimeout(
+ () => retries$.next(retriesElapsed),
+ Math.min(retriesElapsed * RETRY_SCALE_DURATION, RETRY_TIMEOUT_MAX)
+ );
+ }
+ });
+ }
+}
diff --git a/x-pack/plugins/security/server/authorization/disable_ui_capabilities.ts b/x-pack/plugins/security/server/authorization/disable_ui_capabilities.ts
index 72937c15756ac..183ad9169a123 100644
--- a/x-pack/plugins/security/server/authorization/disable_ui_capabilities.ts
+++ b/x-pack/plugins/security/server/authorization/disable_ui_capabilities.ts
@@ -10,13 +10,13 @@ import { KibanaRequest, Logger } from '../../../../../src/core/server';
import { Feature } from '../../../features/server';
import { CheckPrivilegesResponse } from './check_privileges';
-import { Authorization } from './index';
+import { AuthorizationServiceSetup } from '.';
export function disableUICapabilitiesFactory(
request: KibanaRequest,
features: Feature[],
logger: Logger,
- authz: Authorization
+ authz: AuthorizationServiceSetup
) {
const featureNavLinkIds = features
.map((feature) => feature.navLinkId)
diff --git a/x-pack/plugins/security/server/authorization/index.test.ts b/x-pack/plugins/security/server/authorization/index.test.ts
deleted file mode 100644
index 3252053454764..0000000000000
--- a/x-pack/plugins/security/server/authorization/index.test.ts
+++ /dev/null
@@ -1,100 +0,0 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License;
- * you may not use this file except in compliance with the Elastic License.
- */
-
-import {
- mockAuthorizationModeFactory,
- mockCheckPrivilegesDynamicallyWithRequestFactory,
- mockCheckPrivilegesWithRequestFactory,
- mockCheckSavedObjectsPrivilegesWithRequestFactory,
- mockPrivilegesFactory,
-} from './service.test.mocks';
-
-import { checkPrivilegesWithRequestFactory } from './check_privileges';
-import { checkPrivilegesDynamicallyWithRequestFactory } from './check_privileges_dynamically';
-import { checkSavedObjectsPrivilegesWithRequestFactory } from './check_saved_objects_privileges';
-import { authorizationModeFactory } from './mode';
-import { privilegesFactory } from './privileges';
-import { setupAuthorization } from '.';
-
-import {
- coreMock,
- elasticsearchServiceMock,
- loggingServiceMock,
-} from '../../../../../src/core/server/mocks';
-import { licenseMock } from '../../common/licensing/index.mock';
-
-test(`returns exposed services`, () => {
- const kibanaIndexName = '.a-kibana-index';
- const application = `kibana-${kibanaIndexName}`;
-
- const mockCheckPrivilegesWithRequest = Symbol();
- mockCheckPrivilegesWithRequestFactory.mockReturnValue(mockCheckPrivilegesWithRequest);
-
- const mockCheckPrivilegesDynamicallyWithRequest = Symbol();
- mockCheckPrivilegesDynamicallyWithRequestFactory.mockReturnValue(
- mockCheckPrivilegesDynamicallyWithRequest
- );
-
- const mockCheckSavedObjectsPrivilegesWithRequest = Symbol();
- mockCheckSavedObjectsPrivilegesWithRequestFactory.mockReturnValue(
- mockCheckSavedObjectsPrivilegesWithRequest
- );
-
- const mockPrivilegesService = Symbol();
- mockPrivilegesFactory.mockReturnValue(mockPrivilegesService);
- const mockAuthorizationMode = Symbol();
- mockAuthorizationModeFactory.mockReturnValue(mockAuthorizationMode);
-
- const mockClusterClient = elasticsearchServiceMock.createClusterClient();
- const mockGetSpacesService = jest
- .fn()
- .mockReturnValue({ getSpaceId: jest.fn(), namespaceToSpaceId: jest.fn() });
- const mockFeaturesService = { getFeatures: () => [] };
- const mockLicense = licenseMock.create();
-
- const authz = setupAuthorization({
- http: coreMock.createSetup().http,
- clusterClient: mockClusterClient,
- license: mockLicense,
- loggers: loggingServiceMock.create(),
- kibanaIndexName,
- packageVersion: 'some-version',
- featuresService: mockFeaturesService,
- getSpacesService: mockGetSpacesService,
- });
-
- expect(authz.actions.version).toBe('version:some-version');
- expect(authz.applicationName).toBe(application);
-
- expect(authz.checkPrivilegesWithRequest).toBe(mockCheckPrivilegesWithRequest);
- expect(checkPrivilegesWithRequestFactory).toHaveBeenCalledWith(
- authz.actions,
- mockClusterClient,
- authz.applicationName
- );
-
- expect(authz.checkPrivilegesDynamicallyWithRequest).toBe(
- mockCheckPrivilegesDynamicallyWithRequest
- );
- expect(checkPrivilegesDynamicallyWithRequestFactory).toHaveBeenCalledWith(
- mockCheckPrivilegesWithRequest,
- mockGetSpacesService
- );
-
- expect(authz.checkSavedObjectsPrivilegesWithRequest).toBe(
- mockCheckSavedObjectsPrivilegesWithRequest
- );
- expect(checkSavedObjectsPrivilegesWithRequestFactory).toHaveBeenCalledWith(
- mockCheckPrivilegesWithRequest,
- mockGetSpacesService
- );
-
- expect(authz.privileges).toBe(mockPrivilegesService);
- expect(privilegesFactory).toHaveBeenCalledWith(authz.actions, mockFeaturesService, mockLicense);
-
- expect(authz.mode).toBe(mockAuthorizationMode);
- expect(authorizationModeFactory).toHaveBeenCalledWith(mockLicense);
-});
diff --git a/x-pack/plugins/security/server/authorization/index.ts b/x-pack/plugins/security/server/authorization/index.ts
index cf970a561b93f..d5c1323354f86 100644
--- a/x-pack/plugins/security/server/authorization/index.ts
+++ b/x-pack/plugins/security/server/authorization/index.ts
@@ -4,134 +4,7 @@
* you may not use this file except in compliance with the Elastic License.
*/
-import { UICapabilities } from 'ui/capabilities';
-import {
- CoreSetup,
- LoggerFactory,
- KibanaRequest,
- IClusterClient,
-} from '../../../../../src/core/server';
-
-import { FeaturesService, SpacesService } from '../plugin';
-import { Actions } from './actions';
-import { CheckPrivilegesWithRequest, checkPrivilegesWithRequestFactory } from './check_privileges';
-import {
- CheckPrivilegesDynamicallyWithRequest,
- checkPrivilegesDynamicallyWithRequestFactory,
-} from './check_privileges_dynamically';
-import {
- CheckSavedObjectsPrivilegesWithRequest,
- checkSavedObjectsPrivilegesWithRequestFactory,
-} from './check_saved_objects_privileges';
-import { AuthorizationMode, authorizationModeFactory } from './mode';
-import { privilegesFactory, PrivilegesService } from './privileges';
-import { initAppAuthorization } from './app_authorization';
-import { initAPIAuthorization } from './api_authorization';
-import { disableUICapabilitiesFactory } from './disable_ui_capabilities';
-import { validateFeaturePrivileges } from './validate_feature_privileges';
-import { validateReservedPrivileges } from './validate_reserved_privileges';
-import { registerPrivilegesWithCluster } from './register_privileges_with_cluster';
-import { APPLICATION_PREFIX } from '../../common/constants';
-import { SecurityLicense } from '../../common/licensing';
-
export { Actions } from './actions';
+export { AuthorizationService, AuthorizationServiceSetup } from './authorization_service';
export { CheckSavedObjectsPrivileges } from './check_saved_objects_privileges';
export { featurePrivilegeIterator } from './privileges';
-
-interface SetupAuthorizationParams {
- packageVersion: string;
- http: CoreSetup['http'];
- clusterClient: IClusterClient;
- license: SecurityLicense;
- loggers: LoggerFactory;
- featuresService: FeaturesService;
- kibanaIndexName: string;
- getSpacesService(): SpacesService | undefined;
-}
-
-export interface Authorization {
- actions: Actions;
- checkPrivilegesWithRequest: CheckPrivilegesWithRequest;
- checkPrivilegesDynamicallyWithRequest: CheckPrivilegesDynamicallyWithRequest;
- checkSavedObjectsPrivilegesWithRequest: CheckSavedObjectsPrivilegesWithRequest;
- applicationName: string;
- mode: AuthorizationMode;
- privileges: PrivilegesService;
- disableUnauthorizedCapabilities: (
- request: KibanaRequest,
- capabilities: UICapabilities
- ) => Promise;
- registerPrivilegesWithCluster: () => Promise;
-}
-
-export function setupAuthorization({
- http,
- packageVersion,
- clusterClient,
- license,
- loggers,
- featuresService,
- kibanaIndexName,
- getSpacesService,
-}: SetupAuthorizationParams): Authorization {
- const actions = new Actions(packageVersion);
- const mode = authorizationModeFactory(license);
- const applicationName = `${APPLICATION_PREFIX}${kibanaIndexName}`;
- const checkPrivilegesWithRequest = checkPrivilegesWithRequestFactory(
- actions,
- clusterClient,
- applicationName
- );
- const privileges = privilegesFactory(actions, featuresService, license);
- const logger = loggers.get('authorization');
-
- const authz = {
- actions,
- applicationName,
- checkPrivilegesWithRequest,
- checkPrivilegesDynamicallyWithRequest: checkPrivilegesDynamicallyWithRequestFactory(
- checkPrivilegesWithRequest,
- getSpacesService
- ),
- checkSavedObjectsPrivilegesWithRequest: checkSavedObjectsPrivilegesWithRequestFactory(
- checkPrivilegesWithRequest,
- getSpacesService
- ),
- mode,
- privileges,
-
- async disableUnauthorizedCapabilities(request: KibanaRequest, capabilities: UICapabilities) {
- // If we have a license which doesn't enable security, or we're a legacy user we shouldn't
- // disable any ui capabilities
- if (!mode.useRbacForRequest(request)) {
- return capabilities;
- }
-
- const disableUICapabilities = disableUICapabilitiesFactory(
- request,
- featuresService.getFeatures(),
- logger,
- authz
- );
-
- if (!request.auth.isAuthenticated) {
- return disableUICapabilities.all(capabilities);
- }
-
- return await disableUICapabilities.usingPrivileges(capabilities);
- },
-
- registerPrivilegesWithCluster: async () => {
- const features = featuresService.getFeatures();
- validateFeaturePrivileges(features);
- validateReservedPrivileges(features);
-
- await registerPrivilegesWithCluster(logger, privileges, applicationName, clusterClient);
- },
- };
-
- initAPIAuthorization(http, authz, loggers.get('api-authorization'));
- initAppAuthorization(http, authz, loggers.get('app-authorization'), featuresService);
-
- return authz;
-}
diff --git a/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts b/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts
index b023c12d35b79..06f064a379fe6 100644
--- a/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts
+++ b/x-pack/plugins/security/server/authorization/privileges/privileges.test.ts
@@ -8,6 +8,8 @@ import { Feature } from '../../../../features/server';
import { Actions } from '../actions';
import { privilegesFactory } from './privileges';
+import { featuresPluginMock } from '../../../../features/server/mocks';
+
const actions = new Actions('1.0.0-zeta1');
describe('features', () => {
@@ -42,7 +44,9 @@ describe('features', () => {
}),
];
- const mockFeaturesService = { getFeatures: jest.fn().mockReturnValue(features) };
+ const mockFeaturesService = featuresPluginMock.createSetup();
+ mockFeaturesService.getFeatures.mockReturnValue(features);
+
const mockLicenseService = {
getFeatures: jest.fn().mockReturnValue({ allowSubFeaturePrivileges: true }),
};
diff --git a/x-pack/plugins/security/server/authorization/privileges/privileges.ts b/x-pack/plugins/security/server/authorization/privileges/privileges.ts
index f3b2881e79ece..5a15290a7f1a2 100644
--- a/x-pack/plugins/security/server/authorization/privileges/privileges.ts
+++ b/x-pack/plugins/security/server/authorization/privileges/privileges.ts
@@ -6,11 +6,10 @@
import { uniq } from 'lodash';
import { SecurityLicense } from '../../../common/licensing';
-import { Feature } from '../../../../features/server';
+import { Feature, PluginSetupContract as FeaturesPluginSetup } from '../../../../features/server';
import { RawKibanaPrivileges } from '../../../common/model';
import { Actions } from '../actions';
import { featurePrivilegeBuilderFactory } from './feature_privilege_builder';
-import { FeaturesService } from '../../plugin';
import {
featurePrivilegeIterator,
subFeaturePrivilegeIterator,
@@ -22,7 +21,7 @@ export interface PrivilegesService {
export function privilegesFactory(
actions: Actions,
- featuresService: FeaturesService,
+ featuresService: FeaturesPluginSetup,
licenseService: Pick
) {
const featurePrivilegeBuilder = featurePrivilegeBuilderFactory(actions);
diff --git a/x-pack/plugins/security/server/authorization/register_privileges_with_cluster.test.ts b/x-pack/plugins/security/server/authorization/register_privileges_with_cluster.test.ts
index fff4345c72409..e21203e60b887 100644
--- a/x-pack/plugins/security/server/authorization/register_privileges_with_cluster.test.ts
+++ b/x-pack/plugins/security/server/authorization/register_privileges_with_cluster.test.ts
@@ -49,7 +49,7 @@ const registerPrivilegesWithClusterTest = (
});
for (const deletedPrivilege of deletedPrivileges) {
expect(mockLogger.debug).toHaveBeenCalledWith(
- `Deleting Kibana Privilege ${deletedPrivilege} from Elasticearch for ${application}`
+ `Deleting Kibana Privilege ${deletedPrivilege} from Elasticsearch for ${application}`
);
expect(mockClusterClient.callAsInternalUser).toHaveBeenCalledWith(
'shield.deletePrivilege',
@@ -82,7 +82,7 @@ const registerPrivilegesWithClusterTest = (
`Registering Kibana Privileges with Elasticsearch for ${application}`
);
expect(mockLogger.debug).toHaveBeenCalledWith(
- `Kibana Privileges already registered with Elasticearch for ${application}`
+ `Kibana Privileges already registered with Elasticsearch for ${application}`
);
};
};
diff --git a/x-pack/plugins/security/server/authorization/register_privileges_with_cluster.ts b/x-pack/plugins/security/server/authorization/register_privileges_with_cluster.ts
index 22e7830d20e28..8e54794494a90 100644
--- a/x-pack/plugins/security/server/authorization/register_privileges_with_cluster.ts
+++ b/x-pack/plugins/security/server/authorization/register_privileges_with_cluster.ts
@@ -61,14 +61,14 @@ export async function registerPrivilegesWithCluster(
privilege: application,
});
if (arePrivilegesEqual(existingPrivileges, expectedPrivileges)) {
- logger.debug(`Kibana Privileges already registered with Elasticearch for ${application}`);
+ logger.debug(`Kibana Privileges already registered with Elasticsearch for ${application}`);
return;
}
const privilegesToDelete = getPrivilegesToDelete(existingPrivileges, expectedPrivileges);
for (const privilegeToDelete of privilegesToDelete) {
logger.debug(
- `Deleting Kibana Privilege ${privilegeToDelete} from Elasticearch for ${application}`
+ `Deleting Kibana Privilege ${privilegeToDelete} from Elasticsearch for ${application}`
);
try {
await clusterClient.callAsInternalUser('shield.deletePrivilege', {
diff --git a/x-pack/plugins/security/server/authorization/service.test.mocks.ts b/x-pack/plugins/security/server/authorization/service.test.mocks.ts
index 5cd2eac20094d..d73adde66a490 100644
--- a/x-pack/plugins/security/server/authorization/service.test.mocks.ts
+++ b/x-pack/plugins/security/server/authorization/service.test.mocks.ts
@@ -28,3 +28,8 @@ export const mockAuthorizationModeFactory = jest.fn();
jest.mock('./mode', () => ({
authorizationModeFactory: mockAuthorizationModeFactory,
}));
+
+export const mockRegisterPrivilegesWithCluster = jest.fn();
+jest.mock('./register_privileges_with_cluster', () => ({
+ registerPrivilegesWithCluster: mockRegisterPrivilegesWithCluster,
+}));
diff --git a/x-pack/plugins/security/server/mocks.ts b/x-pack/plugins/security/server/mocks.ts
index 72a946d6c5155..c2d99433b0346 100644
--- a/x-pack/plugins/security/server/mocks.ts
+++ b/x-pack/plugins/security/server/mocks.ts
@@ -4,8 +4,6 @@
* you may not use this file except in compliance with the Elastic License.
*/
-import { SecurityPluginSetup } from './plugin';
-
import { authenticationMock } from './authentication/index.mock';
import { authorizationMock } from './authorization/index.mock';
import { licenseMock } from '../common/licensing/index.mock';
@@ -23,7 +21,6 @@ function createSetupMock() {
},
registerSpacesService: jest.fn(),
license: licenseMock.create(),
- __legacyCompat: {} as SecurityPluginSetup['__legacyCompat'],
};
}
diff --git a/x-pack/plugins/security/server/plugin.test.ts b/x-pack/plugins/security/server/plugin.test.ts
index b7fd2aeae7edc..e01c608e5f306 100644
--- a/x-pack/plugins/security/server/plugin.test.ts
+++ b/x-pack/plugins/security/server/plugin.test.ts
@@ -50,9 +50,6 @@ describe('Security Plugin', () => {
it('exposes proper contract', async () => {
await expect(plugin.setup(mockCoreSetup, mockDependencies)).resolves.toMatchInlineSnapshot(`
Object {
- "__legacyCompat": Object {
- "registerPrivilegesWithCluster": [Function],
- },
"audit": Object {
"getLogger": [Function],
},
diff --git a/x-pack/plugins/security/server/plugin.ts b/x-pack/plugins/security/server/plugin.ts
index b961b4e2f9066..c8f47aaae7b5d 100644
--- a/x-pack/plugins/security/server/plugin.ts
+++ b/x-pack/plugins/security/server/plugin.ts
@@ -8,22 +8,22 @@ import { combineLatest } from 'rxjs';
import { first, map } from 'rxjs/operators';
import { TypeOf } from '@kbn/config-schema';
import {
+ deepFreeze,
ICustomClusterClient,
CoreSetup,
+ CoreStart,
Logger,
PluginInitializerContext,
- CoreStart,
} from '../../../../src/core/server';
-import { deepFreeze } from '../../../../src/core/server';
import { SpacesPluginSetup } from '../../spaces/server';
import {
- PluginSetupContract as FeaturesSetupContract,
- PluginStartContract as FeaturesStartContract,
+ PluginSetupContract as FeaturesPluginSetup,
+ PluginStartContract as FeaturesPluginStart,
} from '../../features/server';
import { LicensingPluginSetup, LicensingPluginStart } from '../../licensing/server';
import { Authentication, setupAuthentication } from './authentication';
-import { Authorization, setupAuthorization } from './authorization';
+import { AuthorizationService, AuthorizationServiceSetup } from './authorization';
import { ConfigSchema, createConfig } from './config';
import { defineRoutes } from './routes';
import { SecurityLicenseService, SecurityLicense } from '../common/licensing';
@@ -37,8 +37,6 @@ export type SpacesService = Pick<
'getSpaceId' | 'namespaceToSpaceId'
>;
-export type FeaturesService = Pick;
-
/**
* Describes public Security plugin contract returned at the `setup` stage.
*/
@@ -53,7 +51,7 @@ export interface SecurityPluginSetup {
| 'grantAPIKeyAsInternalUser'
| 'invalidateAPIKeyAsInternalUser'
>;
- authz: Pick;
+ authz: Pick;
license: SecurityLicense;
audit: Pick;
@@ -66,19 +64,15 @@ export interface SecurityPluginSetup {
* @param service Spaces service exposed by the Spaces plugin.
*/
registerSpacesService: (service: SpacesService) => void;
-
- __legacyCompat: {
- registerPrivilegesWithCluster: () => void;
- };
}
export interface PluginSetupDependencies {
- features: FeaturesService;
+ features: FeaturesPluginSetup;
licensing: LicensingPluginSetup;
}
export interface PluginStartDependencies {
- features: FeaturesStartContract;
+ features: FeaturesPluginStart;
licensing: LicensingPluginStart;
}
@@ -101,6 +95,7 @@ export class Plugin {
};
private readonly auditService = new AuditService(this.initializerContext.logger.get('audit'));
+ private readonly authorizationService = new AuthorizationService();
private readonly getSpacesService = () => {
// Changing property value from Symbol to undefined denotes the fact that property was accessed.
@@ -156,15 +151,17 @@ export class Plugin {
loggers: this.initializerContext.logger,
});
- const authz = await setupAuthorization({
+ const authz = this.authorizationService.setup({
http: core.http,
+ capabilities: core.capabilities,
+ status: core.status,
clusterClient: this.clusterClient,
license,
loggers: this.initializerContext.logger,
kibanaIndexName: legacyConfig.kibana.index,
packageVersion: this.initializerContext.env.packageInfo.version,
getSpacesService: this.getSpacesService,
- featuresService: features,
+ features,
});
setupSavedObjects({
@@ -174,8 +171,6 @@ export class Plugin {
getSpacesService: this.getSpacesService,
});
- core.capabilities.registerSwitcher(authz.disableUnauthorizedCapabilities);
-
defineRoutes({
router: core.http.createRouter(),
basePath: core.http.basePath,
@@ -223,18 +218,15 @@ export class Plugin {
this.spacesService = service;
},
-
- __legacyCompat: {
- registerPrivilegesWithCluster: async () => await authz.registerPrivilegesWithCluster(),
- },
});
}
- public start(core: CoreStart, { licensing }: PluginStartDependencies) {
+ public start(core: CoreStart, { features, licensing }: PluginStartDependencies) {
this.logger.debug('Starting plugin');
this.featureUsageServiceStart = this.featureUsageService.start({
featureUsage: licensing.featureUsage,
});
+ this.authorizationService.start({ features, clusterClient: this.clusterClient! });
}
public stop() {
@@ -254,6 +246,7 @@ export class Plugin {
this.featureUsageServiceStart = undefined;
}
this.auditService.stop();
+ this.authorizationService.stop();
}
private wasSpacesServiceAccessed() {
diff --git a/x-pack/plugins/security/server/routes/index.ts b/x-pack/plugins/security/server/routes/index.ts
index 7ef7638fc027e..5721a2699d15c 100644
--- a/x-pack/plugins/security/server/routes/index.ts
+++ b/x-pack/plugins/security/server/routes/index.ts
@@ -14,7 +14,7 @@ import {
} from '../../../../../src/core/server';
import { SecurityLicense } from '../../common/licensing';
import { Authentication } from '../authentication';
-import { Authorization } from '../authorization';
+import { AuthorizationServiceSetup } from '../authorization';
import { ConfigType } from '../config';
import { defineAuthenticationRoutes } from './authentication';
@@ -37,7 +37,7 @@ export interface RouteDefinitionParams {
clusterClient: IClusterClient;
config: ConfigType;
authc: Authentication;
- authz: Authorization;
+ authz: AuthorizationServiceSetup;
license: SecurityLicense;
getFeatures: () => Promise;
getFeatureUsageService: () => SecurityFeatureUsageServiceStart;
diff --git a/x-pack/plugins/security/server/saved_objects/index.ts b/x-pack/plugins/security/server/saved_objects/index.ts
index 29fbe3af21b95..6acfd06a0309b 100644
--- a/x-pack/plugins/security/server/saved_objects/index.ts
+++ b/x-pack/plugins/security/server/saved_objects/index.ts
@@ -11,13 +11,16 @@ import {
SavedObjectsClient,
} from '../../../../../src/core/server';
import { SecureSavedObjectsClientWrapper } from './secure_saved_objects_client_wrapper';
-import { Authorization } from '../authorization';
+import { AuthorizationServiceSetup } from '../authorization';
import { SecurityAuditLogger } from '../audit';
import { SpacesService } from '../plugin';
interface SetupSavedObjectsParams {
auditLogger: SecurityAuditLogger;
- authz: Pick;
+ authz: Pick<
+ AuthorizationServiceSetup,
+ 'mode' | 'actions' | 'checkSavedObjectsPrivilegesWithRequest'
+ >;
savedObjects: CoreSetup['savedObjects'];
getSpacesService(): SpacesService | undefined;
}
diff --git a/x-pack/plugins/security_solution/common/constants.ts b/x-pack/plugins/security_solution/common/constants.ts
index 482794804685d..d04d1f2c91b97 100644
--- a/x-pack/plugins/security_solution/common/constants.ts
+++ b/x-pack/plugins/security_solution/common/constants.ts
@@ -31,6 +31,7 @@ export const DEFAULT_INTERVAL_PAUSE = true;
export const DEFAULT_INTERVAL_TYPE = 'manual';
export const DEFAULT_INTERVAL_VALUE = 300000; // ms
export const DEFAULT_TIMEPICKER_QUICK_RANGES = 'timepicker:quickRanges';
+export const NO_ALERT_INDEX = 'no-alert-index-049FC71A-4C2C-446F-9901-37XMC5024C51';
/** The comma-delimited list of Elasticsearch indices from which the SIEM app collects events */
export const DEFAULT_INDEX_PATTERN = [
diff --git a/x-pack/plugins/security_solution/common/endpoint/generate_data.ts b/x-pack/plugins/security_solution/common/endpoint/generate_data.ts
index bf3c27beb7eab..b17a5aa28ac6a 100644
--- a/x-pack/plugins/security_solution/common/endpoint/generate_data.ts
+++ b/x-pack/plugins/security_solution/common/endpoint/generate_data.ts
@@ -929,7 +929,7 @@ export class EndpointDocGenerator {
status: HostPolicyResponseActionStatus.success,
},
{
- name: 'load_malware_mode',
+ name: 'load_malware_model',
message: 'Error deserializing EXE model; no valid malware model installed',
status: HostPolicyResponseActionStatus.success,
},
diff --git a/x-pack/plugins/security_solution/public/alerts/components/rules/description_step/helpers.test.tsx b/x-pack/plugins/security_solution/public/alerts/components/rules/description_step/helpers.test.tsx
index e39ee38d71da7..b82d1c0a36ab2 100644
--- a/x-pack/plugins/security_solution/public/alerts/components/rules/description_step/helpers.test.tsx
+++ b/x-pack/plugins/security_solution/public/alerts/components/rules/description_step/helpers.test.tsx
@@ -9,7 +9,11 @@ import { shallow } from 'enzyme';
import { EuiLoadingSpinner } from '@elastic/eui';
import { coreMock } from '../../../../../../../../src/core/public/mocks';
-import { esFilters, FilterManager } from '../../../../../../../../src/plugins/data/public';
+import {
+ esFilters,
+ FilterManager,
+ UI_SETTINGS,
+} from '../../../../../../../../src/plugins/data/public';
import { SeverityBadge } from '../severity_badge';
import * as i18n from './translations';
@@ -29,7 +33,7 @@ import { ListItems } from './types';
const setupMock = coreMock.createSetup();
const uiSettingsMock = (pinnedByDefault: boolean) => (key: string) => {
switch (key) {
- case 'filters:pinnedByDefault':
+ case UI_SETTINGS.FILTERS_PINNED_BY_DEFAULT:
return pinnedByDefault;
default:
throw new Error(`Unexpected uiSettings key in FilterManager mock: ${key}`);
diff --git a/x-pack/plugins/security_solution/public/alerts/components/rules/description_step/index.test.tsx b/x-pack/plugins/security_solution/public/alerts/components/rules/description_step/index.test.tsx
index 1f474630fd6e3..b8f81f6d7e5f7 100644
--- a/x-pack/plugins/security_solution/public/alerts/components/rules/description_step/index.test.tsx
+++ b/x-pack/plugins/security_solution/public/alerts/components/rules/description_step/index.test.tsx
@@ -13,7 +13,12 @@ import {
getDescriptionItem,
} from '.';
-import { esFilters, Filter, FilterManager } from '../../../../../../../../src/plugins/data/public';
+import {
+ esFilters,
+ Filter,
+ FilterManager,
+ UI_SETTINGS,
+} from '../../../../../../../../src/plugins/data/public';
import {
mockAboutStepRule,
mockDefineStepRule,
@@ -33,7 +38,7 @@ describe('description_step', () => {
const setupMock = coreMock.createSetup();
const uiSettingsMock = (pinnedByDefault: boolean) => (key: string) => {
switch (key) {
- case 'filters:pinnedByDefault':
+ case UI_SETTINGS.FILTERS_PINNED_BY_DEFAULT:
return pinnedByDefault;
default:
throw new Error(`Unexpected uiSettings key in FilterManager mock: ${key}`);
diff --git a/x-pack/plugins/security_solution/public/cases/components/case_view/index.tsx b/x-pack/plugins/security_solution/public/cases/components/case_view/index.tsx
index 669fc89ffe804..bb63cf633747b 100644
--- a/x-pack/plugins/security_solution/public/cases/components/case_view/index.tsx
+++ b/x-pack/plugins/security_solution/public/cases/components/case_view/index.tsx
@@ -70,7 +70,7 @@ export interface CaseProps extends Props {
export const CaseComponent = React.memo(
({ caseId, caseData, fetchCase, updateCase, userCanCrud }) => {
const basePath = window.location.origin + useBasePath();
- const caseLink = `${basePath}/app/siem#/case/${caseId}`;
+ const caseLink = `${basePath}/app/security#/case/${caseId}`;
const search = useGetUrlSearch(navTabs.case);
const [initLoadingData, setInitLoadingData] = useState(true);
const {
diff --git a/x-pack/plugins/security_solution/public/cases/components/case_view/translations.ts b/x-pack/plugins/security_solution/public/cases/components/case_view/translations.ts
index 9523e2485a610..b8219ad52f5b0 100644
--- a/x-pack/plugins/security_solution/public/cases/components/case_view/translations.ts
+++ b/x-pack/plugins/security_solution/public/cases/components/case_view/translations.ts
@@ -143,7 +143,7 @@ export const CASE_REFRESH = i18n.translate('xpack.securitySolution.case.caseView
export const EMAIL_SUBJECT = (caseTitle: string) =>
i18n.translate('xpack.securitySolution.case.caseView.emailSubject', {
values: { caseTitle },
- defaultMessage: 'SIEM Case - {caseTitle}',
+ defaultMessage: 'Security Case - {caseTitle}',
});
export const EMAIL_BODY = (caseUrl: string) =>
diff --git a/x-pack/plugins/security_solution/public/cases/components/configure_cases/field_mapping.test.tsx b/x-pack/plugins/security_solution/public/cases/components/configure_cases/field_mapping.test.tsx
index 43d5351a5dce3..67963c7487826 100644
--- a/x-pack/plugins/security_solution/public/cases/components/configure_cases/field_mapping.test.tsx
+++ b/x-pack/plugins/security_solution/public/cases/components/configure_cases/field_mapping.test.tsx
@@ -52,7 +52,7 @@ describe('FieldMappingRow', () => {
test('it pass the corrects props to mapping row', () => {
const rows = wrapper.find(FieldMappingRow);
rows.forEach((row, index) => {
- expect(row.prop('siemField')).toEqual(mapping[index].source);
+ expect(row.prop('securitySolutionField')).toEqual(mapping[index].source);
expect(row.prop('selectedActionType')).toEqual(mapping[index].actionType);
expect(row.prop('selectedThirdParty')).toEqual(mapping[index].target);
});
@@ -68,7 +68,7 @@ describe('FieldMappingRow', () => {
const rows = newWrapper.find(FieldMappingRow);
rows.forEach((row, index) => {
- expect(row.prop('siemField')).toEqual(defaultMapping[index].source);
+ expect(row.prop('securitySolutionField')).toEqual(defaultMapping[index].source);
expect(row.prop('selectedActionType')).toEqual(defaultMapping[index].actionType);
expect(row.prop('selectedThirdParty')).toEqual(defaultMapping[index].target);
});
diff --git a/x-pack/plugins/security_solution/public/cases/components/configure_cases/field_mapping.tsx b/x-pack/plugins/security_solution/public/cases/components/configure_cases/field_mapping.tsx
index 3d515941fc2f3..415faa96eeedd 100644
--- a/x-pack/plugins/security_solution/public/cases/components/configure_cases/field_mapping.tsx
+++ b/x-pack/plugins/security_solution/public/cases/components/configure_cases/field_mapping.tsx
@@ -132,7 +132,7 @@ const FieldMappingComponent: React.FC = ({
key={`${item.source}`}
id={`${item.source}`}
disabled={disabled}
- siemField={item.source}
+ securitySolutionField={item.source}
thirdPartyOptions={getThirdPartyOptions(item.source, selectedConnector.fields)}
actionTypeOptions={actionTypeOptions}
onChangeActionType={onChangeActionType}
diff --git a/x-pack/plugins/security_solution/public/cases/components/configure_cases/field_mapping_row.test.tsx b/x-pack/plugins/security_solution/public/cases/components/configure_cases/field_mapping_row.test.tsx
index 3787a43ff2d28..a2acd0e20b6ad 100644
--- a/x-pack/plugins/security_solution/public/cases/components/configure_cases/field_mapping_row.test.tsx
+++ b/x-pack/plugins/security_solution/public/cases/components/configure_cases/field_mapping_row.test.tsx
@@ -51,7 +51,7 @@ describe('FieldMappingRow', () => {
const props: RowProps = {
id: 'title',
disabled: false,
- siemField: 'title',
+ securitySolutionField: 'title',
thirdPartyOptions,
actionTypeOptions,
onChangeActionType,
diff --git a/x-pack/plugins/security_solution/public/cases/components/configure_cases/field_mapping_row.tsx b/x-pack/plugins/security_solution/public/cases/components/configure_cases/field_mapping_row.tsx
index 922ea7222efce..6e688b213f82c 100644
--- a/x-pack/plugins/security_solution/public/cases/components/configure_cases/field_mapping_row.tsx
+++ b/x-pack/plugins/security_solution/public/cases/components/configure_cases/field_mapping_row.tsx
@@ -20,7 +20,7 @@ import { AllThirdPartyFields } from '../../../common/lib/connectors/types';
export interface RowProps {
id: string;
disabled: boolean;
- siemField: CaseField;
+ securitySolutionField: CaseField;
thirdPartyOptions: Array>;
actionTypeOptions: Array>;
onChangeActionType: (caseField: CaseField, newActionType: ActionType) => void;
@@ -32,7 +32,7 @@ export interface RowProps {
const FieldMappingRowComponent: React.FC = ({
id,
disabled,
- siemField,
+ securitySolutionField,
thirdPartyOptions,
actionTypeOptions,
onChangeActionType,
@@ -40,13 +40,15 @@ const FieldMappingRowComponent: React.FC = ({
selectedActionType,
selectedThirdParty,
}) => {
- const siemFieldCapitalized = useMemo(() => capitalize(siemField), [siemField]);
+ const securitySolutionFieldCapitalized = useMemo(() => capitalize(securitySolutionField), [
+ securitySolutionField,
+ ]);
return (
- {siemFieldCapitalized}
+ {securitySolutionFieldCapitalized}
@@ -58,7 +60,7 @@ const FieldMappingRowComponent: React.FC = ({
disabled={disabled}
options={thirdPartyOptions}
valueOfSelected={selectedThirdParty}
- onChange={onChangeThirdParty.bind(null, siemField)}
+ onChange={onChangeThirdParty.bind(null, securitySolutionField)}
data-test-subj={`case-configure-third-party-select-${id}`}
/>
@@ -67,7 +69,7 @@ const FieldMappingRowComponent: React.FC = ({
disabled={disabled}
options={actionTypeOptions}
valueOfSelected={selectedActionType}
- onChange={onChangeActionType.bind(null, siemField)}
+ onChange={onChangeActionType.bind(null, securitySolutionField)}
data-test-subj={`case-configure-action-type-select-${id}`}
/>
diff --git a/x-pack/plugins/security_solution/public/cases/components/configure_cases/translations.ts b/x-pack/plugins/security_solution/public/cases/components/configure_cases/translations.ts
index c256c6dedb918..9ef6ce2f3d4a9 100644
--- a/x-pack/plugins/security_solution/public/cases/components/configure_cases/translations.ts
+++ b/x-pack/plugins/security_solution/public/cases/components/configure_cases/translations.ts
@@ -17,7 +17,7 @@ export const INCIDENT_MANAGEMENT_SYSTEM_DESC = i18n.translate(
'xpack.securitySolution.case.configureCases.incidentManagementSystemDesc',
{
defaultMessage:
- 'You may optionally connect SIEM cases to an external incident management system of your choosing. This will allow you to push case data as an incident in your chosen third-party system.',
+ 'You may optionally connect Security cases to an external incident management system of your choosing. This will allow you to push case data as an incident in your chosen third-party system.',
}
);
@@ -53,7 +53,7 @@ export const CASE_CLOSURE_OPTIONS_DESC = i18n.translate(
'xpack.securitySolution.case.configureCases.caseClosureOptionsDesc',
{
defaultMessage:
- 'Define how you wish SIEM cases to be closed. Automated case closures require an established connection to an external incident management system.',
+ 'Define how you wish Security cases to be closed. Automated case closures require an established connection to an external incident management system.',
}
);
@@ -67,21 +67,22 @@ export const CASE_CLOSURE_OPTIONS_LABEL = i18n.translate(
export const CASE_CLOSURE_OPTIONS_MANUAL = i18n.translate(
'xpack.securitySolution.case.configureCases.caseClosureOptionsManual',
{
- defaultMessage: 'Manually close SIEM cases',
+ defaultMessage: 'Manually close Security cases',
}
);
export const CASE_CLOSURE_OPTIONS_NEW_INCIDENT = i18n.translate(
'xpack.securitySolution.case.configureCases.caseClosureOptionsNewIncident',
{
- defaultMessage: 'Automatically close SIEM cases when pushing new incident to external system',
+ defaultMessage:
+ 'Automatically close Security cases when pushing new incident to external system',
}
);
export const CASE_CLOSURE_OPTIONS_CLOSED_INCIDENT = i18n.translate(
'xpack.securitySolution.case.configureCases.caseClosureOptionsClosedIncident',
{
- defaultMessage: 'Automatically close SIEM cases when incident is closed in external system',
+ defaultMessage: 'Automatically close Security cases when incident is closed in external system',
}
);
@@ -96,14 +97,14 @@ export const FIELD_MAPPING_DESC = i18n.translate(
'xpack.securitySolution.case.configureCases.fieldMappingDesc',
{
defaultMessage:
- 'Map SIEM case fields when pushing data to a third-party. Field mappings require an established connection to an external incident management system.',
+ 'Map Security case fields when pushing data to a third-party. Field mappings require an established connection to an external incident management system.',
}
);
export const FIELD_MAPPING_FIRST_COL = i18n.translate(
'xpack.securitySolution.case.configureCases.fieldMappingFirstCol',
{
- defaultMessage: 'SIEM case field',
+ defaultMessage: 'Security case field',
}
);
diff --git a/x-pack/plugins/security_solution/public/cases/components/user_action_tree/user_action_markdown.test.tsx b/x-pack/plugins/security_solution/public/cases/components/user_action_tree/user_action_markdown.test.tsx
index 8e07706d9c6ba..ae9f1ec7469e4 100644
--- a/x-pack/plugins/security_solution/public/cases/components/user_action_tree/user_action_markdown.test.tsx
+++ b/x-pack/plugins/security_solution/public/cases/components/user_action_tree/user_action_markdown.test.tsx
@@ -18,7 +18,7 @@ const onSaveContent = jest.fn();
const timelineId = '1e10f150-949b-11ea-b63c-2bc51864784c';
const defaultProps = {
- content: `A link to a timeline [timeline](http://localhost:5601/app/siem#/timelines?timeline=(id:'${timelineId}',isOpen:!t))`,
+ content: `A link to a timeline [timeline](http://localhost:5601/app/security#/timelines?timeline=(id:'${timelineId}',isOpen:!t))`,
id: 'markdown-id',
isEditable: false,
onChangeEditable,
diff --git a/x-pack/plugins/security_solution/public/common/components/endpoint/page_view.tsx b/x-pack/plugins/security_solution/public/common/components/endpoint/page_view.tsx
index 759274e3a4ffa..6fe15310fc88e 100644
--- a/x-pack/plugins/security_solution/public/common/components/endpoint/page_view.tsx
+++ b/x-pack/plugins/security_solution/public/common/components/endpoint/page_view.tsx
@@ -149,7 +149,9 @@ export const PageView = memo(
)}
)}
- {tabs && {tabComponents}}
+ {tabComponents.length > 0 && (
+ {tabComponents}
+ )}
{bodyHeader && (
diff --git a/x-pack/plugins/security_solution/public/common/components/formatted_date/index.tsx b/x-pack/plugins/security_solution/public/common/components/formatted_date/index.tsx
index ac4a3533853f7..687d2a36da610 100644
--- a/x-pack/plugins/security_solution/public/common/components/formatted_date/index.tsx
+++ b/x-pack/plugins/security_solution/public/common/components/formatted_date/index.tsx
@@ -14,6 +14,7 @@ import { LocalizedDateTooltip } from '../localized_date_tooltip';
import { getMaybeDate } from './maybe_date';
export const PreferenceFormattedDate = React.memo<{ dateFormat?: string; value: Date }>(
+ /* eslint-disable-next-line react-hooks/rules-of-hooks */
({ value, dateFormat = useDateFormat() }) => (
<>{moment.tz(value, useTimeZone()).format(dateFormat)}>
)
@@ -75,14 +76,15 @@ PreferenceFormattedP1DTDate.displayName = 'PreferenceFormattedP1DTDate';
export const FormattedDate = React.memo<{
fieldName: string;
value?: string | number | null;
+ className?: string;
}>(
- ({ value, fieldName }): JSX.Element => {
+ ({ value, fieldName, className = '' }): JSX.Element => {
if (value == null) {
return getOrEmptyTagFromValue(value);
}
const maybeDate = getMaybeDate(value);
return maybeDate.isValid() ? (
-
+
) : (
diff --git a/x-pack/plugins/security_solution/public/common/components/inspect/modal.test.tsx b/x-pack/plugins/security_solution/public/common/components/inspect/modal.test.tsx
index 153a1703059c2..3451ddacb6538 100644
--- a/x-pack/plugins/security_solution/public/common/components/inspect/modal.test.tsx
+++ b/x-pack/plugins/security_solution/public/common/components/inspect/modal.test.tsx
@@ -9,7 +9,8 @@ import { mount } from 'enzyme';
import React from 'react';
import { ThemeProvider } from 'styled-components';
-import { ModalInspectQuery } from './modal';
+import { NO_ALERT_INDEX } from '../../../../common/constants';
+import { ModalInspectQuery, formatIndexPatternRequested } from './modal';
const request =
'{"index": ["auditbeat-*","filebeat-*","packetbeat-*","winlogbeat-*"],"allowNoIndices": true, "ignoreUnavailable": true, "body": { "aggregations": {"hosts": {"cardinality": {"field": "host.name" } }, "hosts_histogram": {"auto_date_histogram": {"field": "@timestamp","buckets": "6"},"aggs": { "count": {"cardinality": {"field": "host.name" }}}}}, "query": {"bool": {"filter": [{"range": { "@timestamp": {"gte": 1562290224506,"lte": 1562376624506 }}}]}}, "size": 0, "track_total_hits": false}}';
@@ -244,4 +245,31 @@ describe('Modal Inspect', () => {
expect(closeModal).toHaveBeenCalled();
});
});
+
+ describe('formatIndexPatternRequested', () => {
+ test('Return specific messages to NO_ALERT_INDEX if we only have one index and we match the index name `NO_ALERT_INDEX`', () => {
+ const expected = formatIndexPatternRequested([NO_ALERT_INDEX]);
+ expect(expected).toEqual({'No alert index found'});
+ });
+
+ test('Ignore NO_ALERT_INDEX if you have more than one indices', () => {
+ const expected = formatIndexPatternRequested([NO_ALERT_INDEX, 'indice-1']);
+ expect(expected).toEqual('indice-1');
+ });
+
+ test('Happy path', () => {
+ const expected = formatIndexPatternRequested(['indice-1, indice-2']);
+ expect(expected).toEqual('indice-1, indice-2');
+ });
+
+ test('Empty array with no indices', () => {
+ const expected = formatIndexPatternRequested([]);
+ expect(expected).toEqual('Sorry about that, something went wrong.');
+ });
+
+ test('Undefined indices', () => {
+ const expected = formatIndexPatternRequested(undefined);
+ expect(expected).toEqual('Sorry about that, something went wrong.');
+ });
+ });
});
diff --git a/x-pack/plugins/security_solution/public/common/components/inspect/modal.tsx b/x-pack/plugins/security_solution/public/common/components/inspect/modal.tsx
index 1563c005af5b6..e9f7edf86d4ba 100644
--- a/x-pack/plugins/security_solution/public/common/components/inspect/modal.tsx
+++ b/x-pack/plugins/security_solution/public/common/components/inspect/modal.tsx
@@ -22,6 +22,7 @@ import numeral from '@elastic/numeral';
import React, { ReactNode } from 'react';
import styled from 'styled-components';
+import { NO_ALERT_INDEX } from '../../../../common/constants';
import * as i18n from './translations';
const DescriptionListStyled = styled(EuiDescriptionList)`
@@ -88,6 +89,15 @@ const manageStringify = (object: Record | Response): string =>
}
};
+export const formatIndexPatternRequested = (indices: string[] = []) => {
+ if (indices.length === 1 && indices[0] === NO_ALERT_INDEX) {
+ return {i18n.NO_ALERT_INDEX_FOUND};
+ }
+ return indices.length > 0
+ ? indices.filter((i) => i !== NO_ALERT_INDEX).join(', ')
+ : i18n.SOMETHING_WENT_WRONG;
+};
+
export const ModalInspectQuery = ({
closeModal,
isShowing = false,
@@ -113,7 +123,7 @@ export const ModalInspectQuery = ({
),
description: (
- {inspectRequest != null ? inspectRequest.index.join(', ') : i18n.SOMETHING_WENT_WRONG}
+ {formatIndexPatternRequested(inspectRequest?.index ?? [])}
),
},
diff --git a/x-pack/plugins/security_solution/public/common/components/inspect/translations.ts b/x-pack/plugins/security_solution/public/common/components/inspect/translations.ts
index c51423087911f..4a8da8050dd9a 100644
--- a/x-pack/plugins/security_solution/public/common/components/inspect/translations.ts
+++ b/x-pack/plugins/security_solution/public/common/components/inspect/translations.ts
@@ -60,3 +60,10 @@ export const REQUEST_TIMESTAMP_DESC = i18n.translate(
defaultMessage: 'Time when the start of the request has been logged',
}
);
+
+export const NO_ALERT_INDEX_FOUND = i18n.translate(
+ 'xpack.securitySolution.inspect.modal.noAlertIndexFound',
+ {
+ defaultMessage: 'No alert index found',
+ }
+);
diff --git a/x-pack/plugins/security_solution/public/common/components/localized_date_tooltip/index.tsx b/x-pack/plugins/security_solution/public/common/components/localized_date_tooltip/index.tsx
index 918ec70bd7407..d8f8742cb4364 100644
--- a/x-pack/plugins/security_solution/public/common/components/localized_date_tooltip/index.tsx
+++ b/x-pack/plugins/security_solution/public/common/components/localized_date_tooltip/index.tsx
@@ -13,9 +13,11 @@ export const LocalizedDateTooltip = React.memo<{
children: React.ReactNode;
date: Date;
fieldName?: string;
-}>(({ children, date, fieldName }) => (
+ className?: string;
+}>(({ children, date, fieldName, className = '' }) => (
{fieldName != null ? (
diff --git a/x-pack/plugins/security_solution/public/common/mock/endpoint/app_context_render.tsx b/x-pack/plugins/security_solution/public/common/mock/endpoint/app_context_render.tsx
index 3c0189625ee29..d930136b3c0c4 100644
--- a/x-pack/plugins/security_solution/public/common/mock/endpoint/app_context_render.tsx
+++ b/x-pack/plugins/security_solution/public/common/mock/endpoint/app_context_render.tsx
@@ -18,7 +18,7 @@ import { createStore, State, substateMiddlewareFactory } from '../../store';
import { alertMiddlewareFactory } from '../../../endpoint_alerts/store/middleware';
import { AppRootProvider } from './app_root_provider';
import { managementMiddlewareFactory } from '../../../management/store/middleware';
-import { hostMiddlewareFactory } from '../../../endpoint_hosts/store/middleware';
+import { createKibanaContextProviderMock } from '../kibana_react';
import { SUB_PLUGINS_REDUCER, mockGlobalState } from '..';
type UiRender = (ui: React.ReactElement, options?: RenderOptions) => RenderResult;
@@ -57,10 +57,6 @@ export const createAppRootMockRenderer = (): AppContextTestRender => {
const depsStart = depsStartMock();
const middlewareSpy = createSpyMiddleware();
const store = createStore(mockGlobalState, SUB_PLUGINS_REDUCER, apolloClientObservable, [
- substateMiddlewareFactory(
- (globalState) => globalState.hostList,
- hostMiddlewareFactory(coreStart, depsStart)
- ),
substateMiddlewareFactory(
(globalState) => globalState.alertList,
alertMiddlewareFactory(coreStart, depsStart)
@@ -68,11 +64,14 @@ export const createAppRootMockRenderer = (): AppContextTestRender => {
...managementMiddlewareFactory(coreStart, depsStart),
middlewareSpy.actionSpyMiddleware,
]);
+ const MockKibanaContextProvider = createKibanaContextProviderMock();
const AppWrapper: React.FC<{ children: React.ReactElement }> = ({ children }) => (
-
- {children}
-
+
+
+ {children}
+
+
);
const render: UiRender = (ui, options) => {
return reactRender(ui, {
diff --git a/x-pack/plugins/security_solution/public/common/mock/global_state.ts b/x-pack/plugins/security_solution/public/common/mock/global_state.ts
index 30dffa8dbf6bf..4af39ade70d25 100644
--- a/x-pack/plugins/security_solution/public/common/mock/global_state.ts
+++ b/x-pack/plugins/security_solution/public/common/mock/global_state.ts
@@ -26,10 +26,8 @@ import {
import { networkModel } from '../../network/store';
import { TimelineType, TimelineStatus } from '../../../common/types/timeline';
import { initialAlertListState } from '../../endpoint_alerts/store/reducer';
-import { initialHostListState } from '../../endpoint_hosts/store/reducer';
import { mockManagementState } from '../../management/store/reducer';
import { AlertListState } from '../../../common/endpoint_alerts/types';
-import { HostState } from '../../endpoint_hosts/types';
import { ManagementState } from '../../management/types';
export const mockGlobalState: State = {
@@ -237,6 +235,5 @@ export const mockGlobalState: State = {
* they are cast to mutable versions here.
*/
alertList: initialAlertListState as AlertListState,
- hostList: initialHostListState as HostState,
management: mockManagementState as ManagementState,
};
diff --git a/x-pack/plugins/security_solution/public/common/mock/utils.ts b/x-pack/plugins/security_solution/public/common/mock/utils.ts
index 1ff5cb8e734ec..c71a9ada75eee 100644
--- a/x-pack/plugins/security_solution/public/common/mock/utils.ts
+++ b/x-pack/plugins/security_solution/public/common/mock/utils.ts
@@ -11,9 +11,7 @@ import { managementReducer } from '../../management/store/reducer';
import { ManagementPluginReducer } from '../../management';
import { SubPluginsInitReducer } from '../store';
import { EndpointAlertsPluginReducer } from '../../endpoint_alerts';
-import { EndpointHostsPluginReducer } from '../../endpoint_hosts';
import { alertListReducer } from '../../endpoint_alerts/store/reducer';
-import { hostListReducer } from '../../endpoint_hosts/store/reducer';
interface Global extends NodeJS.Global {
// eslint-disable-next-line @typescript-eslint/no-explicit-any
@@ -30,7 +28,6 @@ export const SUB_PLUGINS_REDUCER: SubPluginsInitReducer = {
* These state's are wrapped in `Immutable`, but for compatibility with the overall app architecture,
* they are cast to mutable versions here.
*/
- hostList: hostListReducer as EndpointHostsPluginReducer['hostList'],
alertList: alertListReducer as EndpointAlertsPluginReducer['alertList'],
management: managementReducer as ManagementPluginReducer['management'],
};
diff --git a/x-pack/plugins/security_solution/public/common/store/actions.ts b/x-pack/plugins/security_solution/public/common/store/actions.ts
index 58e4e2f363e92..453191ebafce6 100644
--- a/x-pack/plugins/security_solution/public/common/store/actions.ts
+++ b/x-pack/plugins/security_solution/public/common/store/actions.ts
@@ -4,7 +4,7 @@
* you may not use this file except in compliance with the Elastic License.
*/
-import { HostAction } from '../../endpoint_hosts/store/action';
+import { HostAction } from '../../management/pages/endpoint_hosts/store/action';
import { AlertAction } from '../../endpoint_alerts/store/action';
import { PolicyListAction } from '../../management/pages/policy/store/policy_list';
import { PolicyDetailsAction } from '../../management/pages/policy/store/policy_details';
diff --git a/x-pack/plugins/security_solution/public/common/store/reducer.ts b/x-pack/plugins/security_solution/public/common/store/reducer.ts
index ba85fbef860d7..6aa9c6c059366 100644
--- a/x-pack/plugins/security_solution/public/common/store/reducer.ts
+++ b/x-pack/plugins/security_solution/public/common/store/reducer.ts
@@ -17,7 +17,6 @@ import { TimelinePluginReducer } from '../../timelines/store/timeline';
import { SecuritySubPlugins } from '../../app/types';
import { ManagementPluginReducer } from '../../management';
import { EndpointAlertsPluginReducer } from '../../endpoint_alerts';
-import { EndpointHostsPluginReducer } from '../../endpoint_hosts';
import { State } from './types';
import { AppAction } from './actions';
@@ -25,7 +24,6 @@ export type SubPluginsInitReducer = HostsPluginReducer &
NetworkPluginReducer &
TimelinePluginReducer &
EndpointAlertsPluginReducer &
- EndpointHostsPluginReducer &
ManagementPluginReducer;
/**
diff --git a/x-pack/plugins/security_solution/public/common/store/types.ts b/x-pack/plugins/security_solution/public/common/store/types.ts
index b9942979beb1e..2b92451e30119 100644
--- a/x-pack/plugins/security_solution/public/common/store/types.ts
+++ b/x-pack/plugins/security_solution/public/common/store/types.ts
@@ -17,7 +17,6 @@ import { DragAndDropState } from './drag_and_drop/reducer';
import { TimelinePluginState } from '../../timelines/store/timeline';
import { NetworkPluginState } from '../../network/store';
import { EndpointAlertsPluginState } from '../../endpoint_alerts';
-import { EndpointHostsPluginState } from '../../endpoint_hosts';
import { ManagementPluginState } from '../../management';
/**
@@ -31,7 +30,6 @@ export type State = CombinedState<
NetworkPluginState &
TimelinePluginState &
EndpointAlertsPluginState &
- EndpointHostsPluginState &
ManagementPluginState & {
app: AppState;
dragAndDrop: DragAndDropState;
diff --git a/x-pack/plugins/security_solution/public/endpoint_alerts/view/details/overview/index.tsx b/x-pack/plugins/security_solution/public/endpoint_alerts/view/details/overview/index.tsx
index e2d222e3b836b..937e3727ca613 100644
--- a/x-pack/plugins/security_solution/public/endpoint_alerts/view/details/overview/index.tsx
+++ b/x-pack/plugins/security_solution/public/endpoint_alerts/view/details/overview/index.tsx
@@ -34,6 +34,7 @@ const AlertDetailsOverviewComponent = memo(() => {
return null;
}
+ /* eslint-disable-next-line react-hooks/rules-of-hooks */
const tabs: EuiTabbedContentTab[] = useMemo(() => {
return [
{
@@ -71,11 +72,13 @@ const AlertDetailsOverviewComponent = memo(() => {
];
}, [alertDetailsData]);
+ /* eslint-disable-next-line react-hooks/rules-of-hooks */
const activeTab = useMemo(
() => (alertDetailsTabId ? tabs.find(({ id }) => id === alertDetailsTabId) : tabs[0]),
[alertDetailsTabId, tabs]
);
+ /* eslint-disable-next-line react-hooks/rules-of-hooks */
const handleTabClick = useCallback(
(clickedTab: EuiTabbedContentTab): void => {
if (clickedTab.id !== alertDetailsTabId) {
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/index.ts b/x-pack/plugins/security_solution/public/endpoint_hosts/index.ts
deleted file mode 100644
index bd1c5f96f8cda..0000000000000
--- a/x-pack/plugins/security_solution/public/endpoint_hosts/index.ts
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
- * or more contributor license agreements. Licensed under the Elastic License;
- * you may not use this file except in compliance with the Elastic License.
- */
-
-import { Reducer } from 'redux';
-import { SecuritySubPluginWithStore } from '../app/types';
-import { endpointHostsRoutes } from './routes';
-import { hostListReducer } from './store/reducer';
-import { HostState } from './types';
-import { hostMiddlewareFactory } from './store/middleware';
-import { CoreStart } from '../../../../../src/core/public';
-import { StartPlugins } from '../types';
-import { substateMiddlewareFactory } from '../common/store';
-import { AppAction } from '../common/store/actions';
-
-/**
- * Internally, our state is sometimes immutable, ignore that in our external
- * interface.
- */
-export interface EndpointHostsPluginState {
- hostList: HostState;
-}
-
-/**
- * Internally, we use `ImmutableReducer`, but we present a regular reducer
- * externally for compatibility w/ regular redux.
- */
-export interface EndpointHostsPluginReducer {
- hostList: Reducer;
-}
-
-export class EndpointHosts {
- public setup() {}
-
- public start(
- core: CoreStart,
- plugins: StartPlugins
- ): SecuritySubPluginWithStore<'hostList', HostState> {
- const { data, ingestManager } = plugins;
- const middleware = [
- substateMiddlewareFactory(
- (globalState) => globalState.hostList,
- hostMiddlewareFactory(core, { data, ingestManager })
- ),
- ];
- return {
- routes: endpointHostsRoutes(),
- store: {
- initialState: { hostList: undefined },
- /**
- * Cast the ImmutableReducer to a regular reducer for compatibility with
- * the subplugin architecture (which expects plain redux reducers.)
- */
- reducer: { hostList: hostListReducer } as EndpointHostsPluginReducer,
- middleware,
- },
- };
- }
-}
diff --git a/x-pack/plugins/security_solution/public/hosts/components/first_last_seen_host/index.tsx b/x-pack/plugins/security_solution/public/hosts/components/first_last_seen_host/index.tsx
index 5cbfe2275d31c..579c3311cf732 100644
--- a/x-pack/plugins/security_solution/public/hosts/components/first_last_seen_host/index.tsx
+++ b/x-pack/plugins/security_solution/public/hosts/components/first_last_seen_host/index.tsx
@@ -22,6 +22,7 @@ export const FirstLastSeenHost = React.memo<{ hostname: string; type: FirstLastS
return (
{(client) => {
+ /* eslint-disable-next-line react-hooks/rules-of-hooks */
const { loading, firstSeen, lastSeen, errorMessage } = useFirstLastSeenHostQuery(
hostname,
'default',
diff --git a/x-pack/plugins/security_solution/public/management/common/constants.ts b/x-pack/plugins/security_solution/public/management/common/constants.ts
index 9ec6817c0bfce..95293ccc9cf8c 100644
--- a/x-pack/plugins/security_solution/public/management/common/constants.ts
+++ b/x-pack/plugins/security_solution/public/management/common/constants.ts
@@ -19,3 +19,5 @@ export const MANAGEMENT_STORE_GLOBAL_NAMESPACE: ManagementStoreGlobalNamespace =
export const MANAGEMENT_STORE_POLICY_LIST_NAMESPACE = 'policyList';
/** Namespace within the Management state where policy details state is maintained */
export const MANAGEMENT_STORE_POLICY_DETAILS_NAMESPACE = 'policyDetails';
+/** Namespace within the Management state where endpoints state is maintained */
+export const MANAGEMENT_STORE_ENDPOINTS_NAMESPACE = 'endpoints';
diff --git a/x-pack/plugins/security_solution/public/management/common/routing.ts b/x-pack/plugins/security_solution/public/management/common/routing.ts
index e64fcf0c5f68a..bc204535e5abc 100644
--- a/x-pack/plugins/security_solution/public/management/common/routing.ts
+++ b/x-pack/plugins/security_solution/public/management/common/routing.ts
@@ -5,6 +5,8 @@
*/
import { generatePath } from 'react-router-dom';
+// eslint-disable-next-line import/no-nodejs-modules
+import querystring from 'querystring';
import {
MANAGEMENT_ROUTING_ENDPOINTS_PATH,
MANAGEMENT_ROUTING_POLICIES_PATH,
@@ -13,7 +15,28 @@ import {
} from './constants';
import { ManagementSubTab } from '../types';
import { SiemPageName } from '../../app/types';
+import { HostIndexUIQueryParams } from '../pages/endpoint_hosts/types';
+// Taken from: https://github.com/microsoft/TypeScript/issues/12936#issuecomment-559034150
+type ExactKeys = Exclude extends never ? T1 : never;
+type Exact = T extends Shape ? ExactKeys : never;
+
+/**
+ * Returns a string to be used in the URL as search query params.
+ * Ensures that when creating a URL query param string, that the given input strictly
+ * matches the expected interface (guards against possibly leaking internal state)
+ */
+const querystringStringify: (
+ params: Exact
+) => string = querystring.stringify;
+
+/** Make `selected_host` required */
+type EndpointDetailsUrlProps = Omit &
+ Required>;
+
+/**
+ * Input props for the `getManagementUrl()` method
+ */
export type GetManagementUrlProps = {
/**
* Exclude the URL prefix (everything to the left of where the router was mounted.
@@ -22,8 +45,8 @@ export type GetManagementUrlProps = {
*/
excludePrefix?: boolean;
} & (
- | { name: 'default' }
- | { name: 'endpointList' }
+ | ({ name: 'default' | 'endpointList' } & HostIndexUIQueryParams)
+ | ({ name: 'endpointDetails' | 'endpointPolicyResponse' } & EndpointDetailsUrlProps)
| { name: 'policyList' }
| { name: 'policyDetails'; policyId: string }
);
@@ -39,31 +62,47 @@ const URL_PREFIX = '#';
export const getManagementUrl = (props: GetManagementUrlProps): string => {
let url = props.excludePrefix ? '' : URL_PREFIX;
- switch (props.name) {
- case 'default':
- url += generatePath(MANAGEMENT_ROUTING_ROOT_PATH, {
- pageName: SiemPageName.management,
- });
- break;
- case 'endpointList':
+ if (props.name === 'default' || props.name === 'endpointList') {
+ const { name, excludePrefix, ...queryParams } = props;
+ const urlQueryParams = querystringStringify(
+ queryParams
+ );
+
+ if (name === 'endpointList') {
url += generatePath(MANAGEMENT_ROUTING_ENDPOINTS_PATH, {
pageName: SiemPageName.management,
tabName: ManagementSubTab.endpoints,
});
- break;
- case 'policyList':
- url += generatePath(MANAGEMENT_ROUTING_POLICIES_PATH, {
- pageName: SiemPageName.management,
- tabName: ManagementSubTab.policies,
- });
- break;
- case 'policyDetails':
- url += generatePath(MANAGEMENT_ROUTING_POLICY_DETAILS_PATH, {
+ } else {
+ url += generatePath(MANAGEMENT_ROUTING_ROOT_PATH, {
pageName: SiemPageName.management,
- tabName: ManagementSubTab.policies,
- policyId: props.policyId,
});
- break;
+ }
+
+ if (urlQueryParams) {
+ url += `?${urlQueryParams}`;
+ }
+ } else if (props.name === 'endpointDetails' || props.name === 'endpointPolicyResponse') {
+ const { name, excludePrefix, ...queryParams } = props;
+ queryParams.show = (props.name === 'endpointPolicyResponse'
+ ? 'policy_response'
+ : '') as HostIndexUIQueryParams['show'];
+
+ url += `${generatePath(MANAGEMENT_ROUTING_ENDPOINTS_PATH, {
+ pageName: SiemPageName.management,
+ tabName: ManagementSubTab.endpoints,
+ })}?${querystringStringify(queryParams)}`;
+ } else if (props.name === 'policyList') {
+ url += generatePath(MANAGEMENT_ROUTING_POLICIES_PATH, {
+ pageName: SiemPageName.management,
+ tabName: ManagementSubTab.policies,
+ });
+ } else if (props.name === 'policyDetails') {
+ url += generatePath(MANAGEMENT_ROUTING_POLICY_DETAILS_PATH, {
+ pageName: SiemPageName.management,
+ tabName: ManagementSubTab.policies,
+ policyId: props.policyId,
+ });
}
return url;
diff --git a/x-pack/plugins/security_solution/public/management/components/management_page_view.tsx b/x-pack/plugins/security_solution/public/management/components/management_page_view.tsx
index c6570da5cb5aa..5b140a53a363b 100644
--- a/x-pack/plugins/security_solution/public/management/components/management_page_view.tsx
+++ b/x-pack/plugins/security_solution/public/management/components/management_page_view.tsx
@@ -13,7 +13,10 @@ import { getManagementUrl } from '..';
export const ManagementPageView = memo>((options) => {
const { tabName } = useParams<{ tabName: ManagementSubTab }>();
- const tabs = useMemo((): PageViewProps['tabs'] => {
+ const tabs = useMemo((): PageViewProps['tabs'] | undefined => {
+ if (options.viewType === 'details') {
+ return undefined;
+ }
return [
{
name: i18n.translate('xpack.securitySolution.managementTabs.endpoints', {
diff --git a/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/index.tsx b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/index.tsx
new file mode 100644
index 0000000000000..ff7f522b9bc52
--- /dev/null
+++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/index.tsx
@@ -0,0 +1,25 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License;
+ * you may not use this file except in compliance with the Elastic License.
+ */
+
+import { Switch, Route } from 'react-router-dom';
+import React, { memo } from 'react';
+import { HostList } from './view';
+import { MANAGEMENT_ROUTING_ENDPOINTS_PATH } from '../../common/constants';
+import { NotFoundPage } from '../../../app/404';
+
+/**
+ * Provides the routing container for the endpoints related views
+ */
+export const EndpointsContainer = memo(() => {
+ return (
+
+
+
+
+ );
+});
+
+EndpointsContainer.displayName = 'EndpointsContainer';
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/routes.tsx b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/routes.tsx
similarity index 100%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/routes.tsx
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/routes.tsx
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/store/action.ts b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts
similarity index 87%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/store/action.ts
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts
index 9b38d7ce5a23a..62a2d9e3205c2 100644
--- a/x-pack/plugins/security_solution/public/endpoint_hosts/store/action.ts
+++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/action.ts
@@ -4,8 +4,12 @@
* you may not use this file except in compliance with the Elastic License.
*/
-import { HostResultList, HostInfo, GetHostPolicyResponse } from '../../../common/endpoint/types';
-import { ServerApiError } from '../../common/types';
+import {
+ HostResultList,
+ HostInfo,
+ GetHostPolicyResponse,
+} from '../../../../../common/endpoint/types';
+import { ServerApiError } from '../../../../common/types';
interface ServerReturnedHostList {
type: 'serverReturnedHostList';
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/store/host_pagination.test.ts b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/host_pagination.test.ts
similarity index 89%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/store/host_pagination.test.ts
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/host_pagination.test.ts
index 17feacb0a767a..b8eaa39c77752 100644
--- a/x-pack/plugins/security_solution/public/endpoint_hosts/store/host_pagination.test.ts
+++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/host_pagination.test.ts
@@ -8,10 +8,10 @@ import { CoreStart, HttpSetup } from 'kibana/public';
import { History, createBrowserHistory } from 'history';
import { applyMiddleware, Store, createStore } from 'redux';
-import { coreMock } from '../../../../../../src/core/public/mocks';
+import { coreMock } from '../../../../../../../../src/core/public/mocks';
-import { HostResultList, AppLocation } from '../../../common/endpoint/types';
-import { DepsStartMock, depsStartMock } from '../../common/mock/endpoint';
+import { HostResultList, AppLocation } from '../../../../../common/endpoint/types';
+import { DepsStartMock, depsStartMock } from '../../../../common/mock/endpoint';
import { hostMiddlewareFactory } from './middleware';
@@ -20,8 +20,11 @@ import { hostListReducer } from './reducer';
import { uiQueryParams } from './selectors';
import { mockHostResultList } from './mock_host_result_list';
import { HostState, HostIndexUIQueryParams } from '../types';
-import { MiddlewareActionSpyHelper, createSpyMiddleware } from '../../common/store/test_utils';
-import { urlFromQueryParams } from '../view/url_from_query_params';
+import {
+ MiddlewareActionSpyHelper,
+ createSpyMiddleware,
+} from '../../../../common/store/test_utils';
+import { getManagementUrl } from '../../..';
describe('host list pagination: ', () => {
let fakeCoreStart: jest.Mocked;
@@ -53,7 +56,9 @@ describe('host list pagination: ', () => {
queryParams = () => uiQueryParams(store.getState());
historyPush = (nextQueryParams: HostIndexUIQueryParams): void => {
- return history.push(urlFromQueryParams(nextQueryParams));
+ return history.push(
+ getManagementUrl({ name: 'endpointList', excludePrefix: true, ...nextQueryParams })
+ );
};
});
@@ -67,7 +72,7 @@ describe('host list pagination: ', () => {
type: 'userChangedUrl',
payload: {
...history.location,
- pathname: '/endpoint-hosts',
+ pathname: getManagementUrl({ name: 'endpointList', excludePrefix: true }),
},
});
await waitForAction('serverReturnedHostList');
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/store/index.test.ts b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/index.test.ts
similarity index 100%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/store/index.test.ts
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/index.test.ts
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/store/middleware.test.ts b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.test.ts
similarity index 82%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/store/middleware.test.ts
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.test.ts
index 0959a3438aad9..a6cd2ca3afac4 100644
--- a/x-pack/plugins/security_solution/public/endpoint_hosts/store/middleware.test.ts
+++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.test.ts
@@ -5,19 +5,23 @@
*/
import { CoreStart, HttpSetup } from 'kibana/public';
import { applyMiddleware, createStore, Store } from 'redux';
-import { coreMock } from '../../../../../../src/core/public/mocks';
+import { coreMock } from '../../../../../../../../src/core/public/mocks';
import { History, createBrowserHistory } from 'history';
-import { DepsStartMock, depsStartMock } from '../../common/mock/endpoint';
+import { DepsStartMock, depsStartMock } from '../../../../common/mock/endpoint';
-import { createSpyMiddleware, MiddlewareActionSpyHelper } from '../../common/store/test_utils';
-import { Immutable, HostResultList } from '../../../common/endpoint/types';
-import { AppAction } from '../../common/store/actions';
+import {
+ createSpyMiddleware,
+ MiddlewareActionSpyHelper,
+} from '../../../../common/store/test_utils';
+import { Immutable, HostResultList } from '../../../../../common/endpoint/types';
+import { AppAction } from '../../../../common/store/actions';
import { mockHostResultList } from './mock_host_result_list';
import { listData } from './selectors';
import { HostState } from '../types';
import { hostListReducer } from './reducer';
import { hostMiddlewareFactory } from './middleware';
+import { getManagementUrl } from '../../..';
describe('host list middleware', () => {
let fakeCoreStart: jest.Mocked;
@@ -56,7 +60,7 @@ describe('host list middleware', () => {
type: 'userChangedUrl',
payload: {
...history.location,
- pathname: '/endpoint-hosts',
+ pathname: getManagementUrl({ name: 'endpointList', excludePrefix: true }),
},
});
await waitForAction('serverReturnedHostList');
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/store/middleware.ts b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts
similarity index 95%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/store/middleware.ts
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts
index dd9ab19a702ea..85667c9f9fc37 100644
--- a/x-pack/plugins/security_solution/public/endpoint_hosts/store/middleware.ts
+++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/middleware.ts
@@ -4,8 +4,8 @@
* you may not use this file except in compliance with the Elastic License.
*/
-import { HostResultList } from '../../../common/endpoint/types';
-import { ImmutableMiddlewareFactory } from '../../common/store';
+import { HostResultList } from '../../../../../common/endpoint/types';
+import { ImmutableMiddlewareFactory } from '../../../../common/store';
import { isOnHostPage, hasSelectedHost, uiQueryParams, listData } from './selectors';
import { HostState } from '../types';
@@ -37,7 +37,7 @@ export const hostMiddlewareFactory: ImmutableMiddlewareFactory = (cor
});
}
}
- if (action.type === 'userChangedUrl' && hasSelectedHost(state) !== false) {
+ if (action.type === 'userChangedUrl' && hasSelectedHost(state) === true) {
// If user navigated directly to a host details page, load the host list
if (listData(state).length === 0) {
const { page_index: pageIndex, page_size: pageSize } = uiQueryParams(state);
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/store/mock_host_result_list.ts b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/mock_host_result_list.ts
similarity index 89%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/store/mock_host_result_list.ts
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/mock_host_result_list.ts
index a2c410b5dbd65..05af1ee062de6 100644
--- a/x-pack/plugins/security_solution/public/endpoint_hosts/store/mock_host_result_list.ts
+++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/mock_host_result_list.ts
@@ -4,8 +4,8 @@
* you may not use this file except in compliance with the Elastic License.
*/
-import { HostInfo, HostResultList, HostStatus } from '../../../common/endpoint/types';
-import { EndpointDocGenerator } from '../../../common/endpoint/generate_data';
+import { HostInfo, HostResultList, HostStatus } from '../../../../../common/endpoint/types';
+import { EndpointDocGenerator } from '../../../../../common/endpoint/generate_data';
export const mockHostResultList: (options?: {
total?: number;
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/store/reducer.ts b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/reducer.ts
similarity index 95%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/store/reducer.ts
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/reducer.ts
index c0d5e6931db2b..23682544ec423 100644
--- a/x-pack/plugins/security_solution/public/endpoint_hosts/store/reducer.ts
+++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/reducer.ts
@@ -6,9 +6,9 @@
import { isOnHostPage, hasSelectedHost } from './selectors';
import { HostState } from '../types';
-import { AppAction } from '../../common/store/actions';
-import { ImmutableReducer } from '../../common/store';
-import { Immutable } from '../../../common/endpoint/types';
+import { AppAction } from '../../../../common/store/actions';
+import { ImmutableReducer } from '../../../../common/store';
+import { Immutable } from '../../../../../common/endpoint/types';
export const initialHostListState: Immutable = {
hosts: [],
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/store/selectors.ts b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/selectors.ts
similarity index 86%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/store/selectors.ts
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/selectors.ts
index 05b265b49ea5d..5e7cbc0ef58d3 100644
--- a/x-pack/plugins/security_solution/public/endpoint_hosts/store/selectors.ts
+++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/store/selectors.ts
@@ -7,13 +7,15 @@
// eslint-disable-next-line import/no-nodejs-modules
import querystring from 'querystring';
import { createSelector } from 'reselect';
+import { matchPath } from 'react-router-dom';
import {
Immutable,
HostPolicyResponseAppliedAction,
HostPolicyResponseConfiguration,
HostPolicyResponseActionStatus,
-} from '../../../common/endpoint/types';
+} from '../../../../../common/endpoint/types';
import { HostState, HostIndexUIQueryParams } from '../types';
+import { MANAGEMENT_ROUTING_ENDPOINTS_PATH } from '../../../common/constants';
const PAGE_SIZES = Object.freeze([10, 20, 50]);
@@ -96,8 +98,14 @@ export const policyResponseLoading = (state: Immutable): boolean =>
export const policyResponseError = (state: Immutable) => state.policyResponseError;
-export const isOnHostPage = (state: Immutable) =>
- state.location ? state.location.pathname === '/endpoint-hosts' : false;
+export const isOnHostPage = (state: Immutable) => {
+ return (
+ matchPath(state.location?.pathname ?? '', {
+ path: MANAGEMENT_ROUTING_ENDPOINTS_PATH,
+ exact: true,
+ }) !== null
+ );
+};
export const uiQueryParams: (
state: Immutable
@@ -117,11 +125,21 @@ export const uiQueryParams: (
];
for (const key of keys) {
- const value = query[key];
- if (typeof value === 'string') {
- data[key] = value;
- } else if (Array.isArray(value)) {
- data[key] = value[value.length - 1];
+ const value: string | undefined =
+ typeof query[key] === 'string'
+ ? (query[key] as string)
+ : Array.isArray(query[key])
+ ? (query[key][query[key].length - 1] as string)
+ : undefined;
+
+ if (value !== undefined) {
+ if (key === 'show') {
+ if (value === 'policy_response' || value === 'details') {
+ data[key] = value;
+ }
+ } else {
+ data[key] = value;
+ }
}
}
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/types.ts b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts
similarity index 92%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/types.ts
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts
index 421903cb6e1ab..4881342c06573 100644
--- a/x-pack/plugins/security_solution/public/endpoint_hosts/types.ts
+++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/types.ts
@@ -10,8 +10,8 @@ import {
HostMetadata,
HostPolicyResponse,
AppLocation,
-} from '../../common/endpoint/types';
-import { ServerApiError } from '../common/types';
+} from '../../../../common/endpoint/types';
+import { ServerApiError } from '../../../common/types';
export interface HostState {
/** list of host **/
@@ -53,5 +53,5 @@ export interface HostIndexUIQueryParams {
/** Which page to show */
page_index?: string;
/** show the policy response or host details */
- show?: string;
+ show?: 'policy_response' | 'details';
}
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/view/details/components/flyout_sub_header.tsx b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/details/components/flyout_sub_header.tsx
similarity index 100%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/view/details/components/flyout_sub_header.tsx
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/details/components/flyout_sub_header.tsx
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/view/details/host_details.tsx b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/details/host_details.tsx
similarity index 83%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/view/details/host_details.tsx
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/details/host_details.tsx
index a0d4e62809123..b05cdfb3be840 100644
--- a/x-pack/plugins/security_solution/public/endpoint_hosts/view/details/host_details.tsx
+++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/details/host_details.tsx
@@ -16,14 +16,14 @@ import {
import React, { memo, useMemo } from 'react';
import { FormattedMessage } from '@kbn/i18n/react';
import { i18n } from '@kbn/i18n';
-import { HostMetadata } from '../../../../common/endpoint/types';
+import { HostMetadata } from '../../../../../../common/endpoint/types';
import { useHostSelector, useHostLogsUrl } from '../hooks';
-import { urlFromQueryParams } from '../url_from_query_params';
import { policyResponseStatus, uiQueryParams } from '../../store/selectors';
import { POLICY_STATUS_TO_HEALTH_COLOR } from '../host_constants';
-import { FormattedDateAndTime } from '../../../common/components/endpoint/formatted_date_time';
-import { useNavigateByRouterEventHandler } from '../../../common/hooks/endpoint/use_navigate_by_router_event_handler';
-import { LinkToApp } from '../../../common/components/endpoint/link_to_app';
+import { FormattedDateAndTime } from '../../../../../common/components/endpoint/formatted_date_time';
+import { useNavigateByRouterEventHandler } from '../../../../../common/hooks/endpoint/use_navigate_by_router_event_handler';
+import { LinkToApp } from '../../../../../common/components/endpoint/link_to_app';
+import { getManagementUrl } from '../../../..';
const HostIds = styled(EuiListGroupItem)`
margin-top: 0;
@@ -61,14 +61,24 @@ export const HostDetails = memo(({ details }: { details: HostMetadata }) => {
];
}, [details]);
- const policyResponseUri = useMemo(() => {
- return urlFromQueryParams({
- ...queryParams,
- selected_host: details.host.id,
- show: 'policy_response',
- });
+ const [policyResponseUri, policyResponseRoutePath] = useMemo(() => {
+ const { selected_host, show, ...currentUrlParams } = queryParams;
+ return [
+ getManagementUrl({
+ name: 'endpointPolicyResponse',
+ ...currentUrlParams,
+ selected_host: details.host.id,
+ }),
+ getManagementUrl({
+ name: 'endpointPolicyResponse',
+ excludePrefix: true,
+ ...currentUrlParams,
+ selected_host: details.host.id,
+ }),
+ ];
}, [details.host.id, queryParams]);
- const policyStatusClickHandler = useNavigateByRouterEventHandler(policyResponseUri);
+
+ const policyStatusClickHandler = useNavigateByRouterEventHandler(policyResponseRoutePath);
const detailsResultsLower = useMemo(() => {
return [
@@ -90,7 +100,7 @@ export const HostDetails = memo(({ details }: { details: HostMetadata }) => {
{/* eslint-disable-next-line @elastic/eui/href-or-on-click */}
{
const history = useHistory();
@@ -115,24 +116,32 @@ const PolicyResponseFlyoutPanel = memo<{
const responseAttentionCount = useHostSelector(policyResponseFailedOrWarningActionCount);
const loading = useHostSelector(policyResponseLoading);
const error = useHostSelector(policyResponseError);
- const detailsUri = useMemo(
- () =>
- urlFromQueryParams({
+ const [detailsUri, detailsRoutePath] = useMemo(
+ () => [
+ getManagementUrl({
+ name: 'endpointList',
...queryParams,
selected_host: hostMeta.host.id,
}),
+ getManagementUrl({
+ name: 'endpointList',
+ excludePrefix: true,
+ ...queryParams,
+ selected_host: hostMeta.host.id,
+ }),
+ ],
[hostMeta.host.id, queryParams]
);
- const backToDetailsClickHandler = useNavigateByRouterEventHandler(detailsUri);
+ const backToDetailsClickHandler = useNavigateByRouterEventHandler(detailsRoutePath);
const backButtonProp = useMemo((): FlyoutSubHeaderProps['backButton'] => {
return {
title: i18n.translate('xpack.securitySolution.endpoint.host.policyResponse.backLinkTitle', {
defaultMessage: 'Endpoint Details',
}),
- href: `?${detailsUri.search}`,
+ href: detailsUri,
onClick: backToDetailsClickHandler,
};
- }, [backToDetailsClickHandler, detailsUri.search]);
+ }, [backToDetailsClickHandler, detailsUri]);
return (
<>
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/view/details/policy_response.tsx b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/details/policy_response.tsx
similarity index 93%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/view/details/policy_response.tsx
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/details/policy_response.tsx
index c6ecffe0fd51a..8db95f586782c 100644
--- a/x-pack/plugins/security_solution/public/endpoint_hosts/view/details/policy_response.tsx
+++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/details/policy_response.tsx
@@ -19,7 +19,7 @@ import {
Immutable,
HostPolicyResponseAppliedAction,
HostPolicyResponseConfiguration,
-} from '../../../../common/endpoint/types';
+} from '../../../../../../common/endpoint/types';
/**
* Nested accordion in the policy response detailing any concerned
@@ -136,8 +136,14 @@ export const PolicyResponse = memo(
const attentionCount = responseAttentionCount.get(key);
return (
htmlIdGenerator()(), [])}
- key={useMemo(() => htmlIdGenerator()(), [])}
+ id={
+ /* eslint-disable-next-line react-hooks/rules-of-hooks */
+ useMemo(() => htmlIdGenerator()(), [])
+ }
+ key={
+ /* eslint-disable-next-line react-hooks/rules-of-hooks */
+ useMemo(() => htmlIdGenerator()(), [])
+ }
data-test-subj="hostDetailsPolicyResponseConfigAccordion"
buttonContent={
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/view/details/policy_response_friendly_names.ts b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/details/policy_response_friendly_names.ts
similarity index 100%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/view/details/policy_response_friendly_names.ts
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/details/policy_response_friendly_names.ts
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/view/hooks.ts b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/hooks.ts
similarity index 74%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/view/hooks.ts
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/hooks.ts
index 78fd679f818b6..ddba6d7344ce5 100644
--- a/x-pack/plugins/security_solution/public/endpoint_hosts/view/hooks.ts
+++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/hooks.ts
@@ -7,12 +7,18 @@
import { useSelector } from 'react-redux';
import { useMemo } from 'react';
import { HostState } from '../types';
-import { useKibana } from '../../../../../../src/plugins/kibana_react/public';
-import { State } from '../../common/store/types';
+import {
+ MANAGEMENT_STORE_ENDPOINTS_NAMESPACE,
+ MANAGEMENT_STORE_GLOBAL_NAMESPACE,
+} from '../../../common/constants';
+import { useKibana } from '../../../../common/lib/kibana';
+import { State } from '../../../../common/store';
export function useHostSelector(selector: (state: HostState) => TSelected) {
return useSelector(function (state: State) {
- return selector(state.hostList as HostState);
+ return selector(
+ state[MANAGEMENT_STORE_GLOBAL_NAMESPACE][MANAGEMENT_STORE_ENDPOINTS_NAMESPACE] as HostState
+ );
});
}
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/view/host_constants.ts b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/host_constants.ts
similarity index 95%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/view/host_constants.ts
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/host_constants.ts
index efad4e3a468d8..645a4896770ee 100644
--- a/x-pack/plugins/security_solution/public/endpoint_hosts/view/host_constants.ts
+++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/host_constants.ts
@@ -4,7 +4,7 @@
* you may not use this file except in compliance with the Elastic License.
*/
-import { HostStatus, HostPolicyResponseActionStatus } from '../../../common/endpoint/types';
+import { HostStatus, HostPolicyResponseActionStatus } from '../../../../../common/endpoint/types';
export const HOST_STATUS_TO_HEALTH_COLOR = Object.freeze<
{
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/view/index.test.tsx b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/index.test.tsx
similarity index 97%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/view/index.test.tsx
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/index.test.tsx
index 5e0e3e7e163e5..7d84bb52238a2 100644
--- a/x-pack/plugins/security_solution/public/endpoint_hosts/view/index.test.tsx
+++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/index.test.tsx
@@ -9,14 +9,14 @@ import * as reactTestingLibrary from '@testing-library/react';
import { HostList } from './index';
import { mockHostDetailsApiResult, mockHostResultList } from '../store/mock_host_result_list';
-import { AppContextTestRender, createAppRootMockRenderer } from '../../common/mock/endpoint';
+import { AppContextTestRender, createAppRootMockRenderer } from '../../../../common/mock/endpoint';
import {
HostInfo,
HostStatus,
HostPolicyResponseActionStatus,
-} from '../../../common/endpoint/types';
-import { EndpointDocGenerator } from '../../../common/endpoint/generate_data';
-import { AppAction } from '../../common/store/actions';
+} from '../../../../../common/endpoint/types';
+import { EndpointDocGenerator } from '../../../../../common/endpoint/generate_data';
+import { AppAction } from '../../../../common/store/actions';
describe('when on the hosts page', () => {
const docGenerator = new EndpointDocGenerator();
@@ -202,7 +202,7 @@ describe('when on the hosts page', () => {
const policyStatusLink = await renderResult.findByTestId('policyStatusValue');
expect(policyStatusLink).not.toBeNull();
expect(policyStatusLink.getAttribute('href')).toEqual(
- '?page_index=0&page_size=10&selected_host=1&show=policy_response'
+ '#/management/endpoints?page_index=0&page_size=10&selected_host=1&show=policy_response'
);
});
it('should update the URL when policy status link is clicked', async () => {
@@ -381,7 +381,7 @@ describe('when on the hosts page', () => {
const subHeaderBackLink = await renderResult.findByTestId('flyoutSubHeaderBackButton');
expect(subHeaderBackLink.textContent).toBe('Endpoint Details');
expect(subHeaderBackLink.getAttribute('href')).toBe(
- '?page_index=0&page_size=10&selected_host=1'
+ '#/management/endpoints?page_index=0&page_size=10&selected_host=1'
);
});
it('should update URL when back to details link is clicked', async () => {
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/view/index.tsx b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/index.tsx
similarity index 68%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/view/index.tsx
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/index.tsx
index 1fafb969e6e6c..125723e9bcea6 100644
--- a/x-pack/plugins/security_solution/public/endpoint_hosts/view/index.tsx
+++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/index.tsx
@@ -22,17 +22,19 @@ import { createStructuredSelector } from 'reselect';
import { HostDetailsFlyout } from './details';
import * as selectors from '../store/selectors';
import { useHostSelector } from './hooks';
-import { urlFromQueryParams } from './url_from_query_params';
import { HOST_STATUS_TO_HEALTH_COLOR } from './host_constants';
-import { useNavigateByRouterEventHandler } from '../../common/hooks/endpoint/use_navigate_by_router_event_handler';
-import { CreateStructuredSelector } from '../../common/store';
-import { Immutable, HostInfo } from '../../../common/endpoint/types';
-import { PageView } from '../../common/components/endpoint/page_view';
+import { useNavigateByRouterEventHandler } from '../../../../common/hooks/endpoint/use_navigate_by_router_event_handler';
+import { CreateStructuredSelector } from '../../../../common/store';
+import { Immutable, HostInfo } from '../../../../../common/endpoint/types';
+import { SpyRoute } from '../../../../common/utils/route/spy_routes';
+import { ManagementPageView } from '../../../components/management_page_view';
+import { getManagementUrl } from '../../..';
+import { FormattedDate } from '../../../../common/components/formatted_date';
const HostLink = memo<{
name: string;
href: string;
- route: ReturnType;
+ route: string;
}>(({ name, href, route }) => {
const clickHandler = useNavigateByRouterEventHandler(route);
@@ -77,8 +79,11 @@ export const HostList = () => {
const onTableChange = useCallback(
({ page }: { page: { index: number; size: number } }) => {
const { index, size } = page;
+ // FIXME: PT: if host details is open, table is not displaying correct number of rows
history.push(
- urlFromQueryParams({
+ getManagementUrl({
+ name: 'endpointList',
+ excludePrefix: true,
...queryParams,
page_index: JSON.stringify(index),
page_size: JSON.stringify(size),
@@ -89,22 +94,34 @@ export const HostList = () => {
);
const columns: Array>> = useMemo(() => {
+ const lastActiveColumnName = i18n.translate('xpack.securitySolution.endpointList.lastActive', {
+ defaultMessage: 'Last Active',
+ });
+
return [
{
field: 'metadata.host',
- name: i18n.translate('xpack.securitySolution.endpoint.host.list.hostname', {
+ name: i18n.translate('xpack.securitySolution.endpointList.hostname', {
defaultMessage: 'Hostname',
}),
render: ({ hostname, id }: HostInfo['metadata']['host']) => {
- const newQueryParams = urlFromQueryParams({ ...queryParams, selected_host: id });
- return (
-
- );
+ const toRoutePath = getManagementUrl({
+ ...queryParams,
+ name: 'endpointDetails',
+ selected_host: id,
+ excludePrefix: true,
+ });
+ const toRouteUrl = getManagementUrl({
+ ...queryParams,
+ name: 'endpointDetails',
+ selected_host: id,
+ });
+ return ;
},
},
{
field: 'host_status',
- name: i18n.translate('xpack.securitySolution.endpoint.host.list.hostStatus', {
+ name: i18n.translate('xpack.securitySolution.endpointList.hostStatus', {
defaultMessage: 'Host Status',
}),
// eslint-disable-next-line react/display-name
@@ -116,7 +133,7 @@ export const HostList = () => {
className="eui-textTruncate"
>
@@ -126,7 +143,7 @@ export const HostList = () => {
},
{
field: '',
- name: i18n.translate('xpack.securitySolution.endpoint.host.list.policy', {
+ name: i18n.translate('xpack.securitySolution.endpointList.policy', {
defaultMessage: 'Policy',
}),
truncateText: true,
@@ -137,7 +154,7 @@ export const HostList = () => {
},
{
field: '',
- name: i18n.translate('xpack.securitySolution.endpoint.host.list.policyStatus', {
+ name: i18n.translate('xpack.securitySolution.endpointList.policyStatus', {
defaultMessage: 'Policy Status',
}),
// eslint-disable-next-line react/display-name
@@ -145,7 +162,7 @@ export const HostList = () => {
return (
@@ -154,7 +171,7 @@ export const HostList = () => {
},
{
field: '',
- name: i18n.translate('xpack.securitySolution.endpoint.host.list.alerts', {
+ name: i18n.translate('xpack.securitySolution.endpointList.alerts', {
defaultMessage: 'Alerts',
}),
dataType: 'number',
@@ -164,14 +181,14 @@ export const HostList = () => {
},
{
field: 'metadata.host.os.name',
- name: i18n.translate('xpack.securitySolution.endpoint.host.list.os', {
+ name: i18n.translate('xpack.securitySolution.endpointList.os', {
defaultMessage: 'Operating System',
}),
truncateText: true,
},
{
field: 'metadata.host.ip',
- name: i18n.translate('xpack.securitySolution.endpoint.host.list.ip', {
+ name: i18n.translate('xpack.securitySolution.endpointList.ip', {
defaultMessage: 'IP Address',
}),
// eslint-disable-next-line react/display-name
@@ -189,35 +206,38 @@ export const HostList = () => {
},
{
field: 'metadata.agent.version',
- name: i18n.translate('xpack.securitySolution.endpoint.host.list.endpointVersion', {
+ name: i18n.translate('xpack.securitySolution.endpointList.endpointVersion', {
defaultMessage: 'Version',
}),
},
{
- field: '',
- name: i18n.translate('xpack.securitySolution.endpoint.host.list.lastActive', {
- defaultMessage: 'Last Active',
- }),
- dataType: 'date',
- render: () => {
- return 'xxxx';
+ field: 'metadata.@timestamp',
+ name: lastActiveColumnName,
+ render(dateValue: HostInfo['metadata']['@timestamp']) {
+ return (
+
+ );
},
},
];
}, [queryParams]);
return (
-
{hasSelectedHost && }
@@ -232,6 +252,7 @@ export const HostList = () => {
pagination={paginationSetup}
onChange={onTableChange}
/>
-
+
+
);
};
diff --git a/x-pack/plugins/security_solution/public/endpoint_hosts/view/url_from_query_params.ts b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/url_from_query_params.ts
similarity index 89%
rename from x-pack/plugins/security_solution/public/endpoint_hosts/view/url_from_query_params.ts
rename to x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/url_from_query_params.ts
index e3728d63aea7c..a14f1d0d0dd6c 100644
--- a/x-pack/plugins/security_solution/public/endpoint_hosts/view/url_from_query_params.ts
+++ b/x-pack/plugins/security_solution/public/management/pages/endpoint_hosts/view/url_from_query_params.ts
@@ -8,7 +8,7 @@
import querystring from 'querystring';
import { HostIndexUIQueryParams } from '../types';
-import { AppLocation } from '../../../common/endpoint/types';
+import { AppLocation } from '../../../../../common/endpoint/types';
export function urlFromQueryParams(queryParams: HostIndexUIQueryParams): Partial {
const search = querystring.stringify(queryParams);
diff --git a/x-pack/plugins/security_solution/public/management/pages/index.tsx b/x-pack/plugins/security_solution/public/management/pages/index.tsx
index aba482db86519..588b267763234 100644
--- a/x-pack/plugins/security_solution/public/management/pages/index.tsx
+++ b/x-pack/plugins/security_solution/public/management/pages/index.tsx
@@ -6,34 +6,27 @@
import React, { memo } from 'react';
import { Redirect, Route, Switch } from 'react-router-dom';
-import { SpyRoute } from '../../common/utils/route/spy_routes';
import { PolicyContainer } from './policy';
import {
MANAGEMENT_ROUTING_ENDPOINTS_PATH,
MANAGEMENT_ROUTING_POLICIES_PATH,
MANAGEMENT_ROUTING_ROOT_PATH,
} from '../common/constants';
-import { ManagementPageView } from '../components/management_page_view';
import { NotFoundPage } from '../../app/404';
-
-const TmpEndpoints = () => {
- return (
-
- {'Endpoints will go here'}
-
-
- );
-};
+import { EndpointsContainer } from './endpoint_hosts';
+import { getManagementUrl } from '..';
export const ManagementContainer = memo(() => {
return (
-
+
}
+ render={() => (
+
+ )}
/>
diff --git a/x-pack/plugins/security_solution/public/management/store/middleware.ts b/x-pack/plugins/security_solution/public/management/store/middleware.ts
index c8eb27e35f9dd..9ca170cce8b3d 100644
--- a/x-pack/plugins/security_solution/public/management/store/middleware.ts
+++ b/x-pack/plugins/security_solution/public/management/store/middleware.ts
@@ -11,16 +11,34 @@ import {
} from '../../common/store';
import { policyListMiddlewareFactory } from '../pages/policy/store/policy_list';
import { policyDetailsMiddlewareFactory } from '../pages/policy/store/policy_details';
+import {
+ MANAGEMENT_STORE_ENDPOINTS_NAMESPACE,
+ MANAGEMENT_STORE_GLOBAL_NAMESPACE,
+ MANAGEMENT_STORE_POLICY_DETAILS_NAMESPACE,
+ MANAGEMENT_STORE_POLICY_LIST_NAMESPACE,
+} from '../common/constants';
+import { hostMiddlewareFactory } from '../pages/endpoint_hosts/store/middleware';
+
+const policyListSelector = (state: State) =>
+ state[MANAGEMENT_STORE_GLOBAL_NAMESPACE][MANAGEMENT_STORE_POLICY_LIST_NAMESPACE];
+const policyDetailsSelector = (state: State) =>
+ state[MANAGEMENT_STORE_GLOBAL_NAMESPACE][MANAGEMENT_STORE_POLICY_DETAILS_NAMESPACE];
+const endpointsSelector = (state: State) =>
+ state[MANAGEMENT_STORE_GLOBAL_NAMESPACE][MANAGEMENT_STORE_ENDPOINTS_NAMESPACE];
export const managementMiddlewareFactory: SecuritySubPluginMiddlewareFactory = (
coreStart,
depsStart
) => {
- const listSelector = (state: State) => state.management.policyList;
- const detailSelector = (state: State) => state.management.policyDetails;
-
return [
- substateMiddlewareFactory(listSelector, policyListMiddlewareFactory(coreStart, depsStart)),
- substateMiddlewareFactory(detailSelector, policyDetailsMiddlewareFactory(coreStart, depsStart)),
+ substateMiddlewareFactory(
+ policyListSelector,
+ policyListMiddlewareFactory(coreStart, depsStart)
+ ),
+ substateMiddlewareFactory(
+ policyDetailsSelector,
+ policyDetailsMiddlewareFactory(coreStart, depsStart)
+ ),
+ substateMiddlewareFactory(endpointsSelector, hostMiddlewareFactory(coreStart, depsStart)),
];
};
diff --git a/x-pack/plugins/security_solution/public/management/store/reducer.ts b/x-pack/plugins/security_solution/public/management/store/reducer.ts
index 64b2ab5c05f96..e00b3ec9e0f5b 100644
--- a/x-pack/plugins/security_solution/public/management/store/reducer.ts
+++ b/x-pack/plugins/security_solution/public/management/store/reducer.ts
@@ -14,18 +14,24 @@ import {
initialPolicyListState,
} from '../pages/policy/store/policy_list/reducer';
import {
+ MANAGEMENT_STORE_ENDPOINTS_NAMESPACE,
MANAGEMENT_STORE_POLICY_DETAILS_NAMESPACE,
MANAGEMENT_STORE_POLICY_LIST_NAMESPACE,
} from '../common/constants';
import { ImmutableCombineReducers } from '../../common/store';
import { Immutable } from '../../../common/endpoint/types';
import { ManagementState } from '../types';
+import { hostListReducer, initialHostListState } from '../pages/endpoint_hosts/store/reducer';
const immutableCombineReducers: ImmutableCombineReducers = combineReducers;
+/**
+ * Returns the initial state of the store for the SIEM Management section
+ */
export const mockManagementState: Immutable = {
- policyList: initialPolicyListState(),
- policyDetails: initialPolicyDetailsState(),
+ [MANAGEMENT_STORE_POLICY_LIST_NAMESPACE]: initialPolicyListState(),
+ [MANAGEMENT_STORE_POLICY_DETAILS_NAMESPACE]: initialPolicyDetailsState(),
+ [MANAGEMENT_STORE_ENDPOINTS_NAMESPACE]: initialHostListState,
};
/**
@@ -34,4 +40,6 @@ export const mockManagementState: Immutable = {
export const managementReducer = immutableCombineReducers({
[MANAGEMENT_STORE_POLICY_LIST_NAMESPACE]: policyListReducer,
[MANAGEMENT_STORE_POLICY_DETAILS_NAMESPACE]: policyDetailsReducer,
+ // @ts-ignore
+ [MANAGEMENT_STORE_ENDPOINTS_NAMESPACE]: hostListReducer,
});
diff --git a/x-pack/plugins/security_solution/public/management/types.ts b/x-pack/plugins/security_solution/public/management/types.ts
index eeeafb4cbe150..fd6b9f6e6a824 100644
--- a/x-pack/plugins/security_solution/public/management/types.ts
+++ b/x-pack/plugins/security_solution/public/management/types.ts
@@ -7,6 +7,7 @@
import { CombinedState } from 'redux';
import { SiemPageName } from '../app/types';
import { PolicyListState, PolicyDetailsState } from './pages/policy/types';
+import { HostState } from './pages/endpoint_hosts/types';
/**
* The type for the management store global namespace. Used mostly internally to reference
@@ -17,6 +18,7 @@ export type ManagementStoreGlobalNamespace = 'management';
export type ManagementState = CombinedState<{
policyList: PolicyListState;
policyDetails: PolicyDetailsState;
+ endpoints: HostState;
}>;
/**
diff --git a/x-pack/plugins/security_solution/public/plugin.tsx b/x-pack/plugins/security_solution/public/plugin.tsx
index 676e3c705347b..e3d3062ee9cf7 100644
--- a/x-pack/plugins/security_solution/public/plugin.tsx
+++ b/x-pack/plugins/security_solution/public/plugin.tsx
@@ -65,7 +65,6 @@ export class Plugin implements IPlugin(
inputId,
inspect: null,
loading: false,
+ /* eslint-disable-next-line react-hooks/rules-of-hooks */
refetch: useUpdateKql({
indexPattern,
kueryFilterQuery,
diff --git a/x-pack/plugins/security_solution/public/timelines/components/timeline/helpers.test.tsx b/x-pack/plugins/security_solution/public/timelines/components/timeline/helpers.test.tsx
index ede8d7cfded58..1038ac4b69587 100644
--- a/x-pack/plugins/security_solution/public/timelines/components/timeline/helpers.test.tsx
+++ b/x-pack/plugins/security_solution/public/timelines/components/timeline/helpers.test.tsx
@@ -18,7 +18,7 @@ const endDate = new Date('2018-03-24T03:33:52.253Z').valueOf();
describe('Build KQL Query', () => {
test('Build KQL query with one data provider', () => {
- const dataProviders = mockDataProviders.slice(0, 1);
+ const dataProviders = cloneDeep(mockDataProviders.slice(0, 1));
const kqlQuery = buildGlobalQuery(dataProviders, mockBrowserFields);
expect(cleanUpKqlQuery(kqlQuery)).toEqual('name : "Provider 1"');
});
@@ -56,18 +56,40 @@ describe('Build KQL Query', () => {
});
test('Build KQL query with two data provider', () => {
- const dataProviders = mockDataProviders.slice(0, 2);
+ const dataProviders = cloneDeep(mockDataProviders.slice(0, 2));
+ const kqlQuery = buildGlobalQuery(dataProviders, mockBrowserFields);
+ expect(cleanUpKqlQuery(kqlQuery)).toEqual('(name : "Provider 1") or (name : "Provider 2")');
+ });
+
+ test('Build KQL query with two data provider and first is disabled', () => {
+ const dataProviders = cloneDeep(mockDataProviders.slice(0, 2));
+ dataProviders[0].enabled = false;
+ const kqlQuery = buildGlobalQuery(dataProviders, mockBrowserFields);
+ expect(cleanUpKqlQuery(kqlQuery)).toEqual('name : "Provider 2"');
+ });
+
+ test('Build KQL query with two data provider and second is disabled', () => {
+ const dataProviders = cloneDeep(mockDataProviders.slice(0, 2));
+ dataProviders[1].enabled = false;
const kqlQuery = buildGlobalQuery(dataProviders, mockBrowserFields);
- expect(cleanUpKqlQuery(kqlQuery)).toEqual('(name : "Provider 1" ) or (name : "Provider 2" )');
+ expect(cleanUpKqlQuery(kqlQuery)).toEqual('name : "Provider 1"');
});
test('Build KQL query with one data provider and one and', () => {
const dataProviders = cloneDeep(mockDataProviders.slice(0, 1));
- dataProviders[0].and = mockDataProviders.slice(1, 2);
+ dataProviders[0].and = cloneDeep(mockDataProviders.slice(1, 2));
const kqlQuery = buildGlobalQuery(dataProviders, mockBrowserFields);
expect(cleanUpKqlQuery(kqlQuery)).toEqual('name : "Provider 1" and name : "Provider 2"');
});
+ test('Build KQL query with one disabled data provider and one and', () => {
+ const dataProviders = cloneDeep(mockDataProviders.slice(0, 1));
+ dataProviders[0].enabled = false;
+ dataProviders[0].and = cloneDeep(mockDataProviders.slice(1, 2));
+ const kqlQuery = buildGlobalQuery(dataProviders, mockBrowserFields);
+ expect(cleanUpKqlQuery(kqlQuery)).toEqual('name : "Provider 2"');
+ });
+
test('Build KQL query with one data provider and one and as timestamp (string input)', () => {
const dataProviders = cloneDeep(mockDataProviders.slice(0, 1));
dataProviders[0].and = cloneDeep(mockDataProviders.slice(1, 2));
@@ -106,28 +128,50 @@ describe('Build KQL Query', () => {
test('Build KQL query with two data provider and multiple and', () => {
const dataProviders = cloneDeep(mockDataProviders.slice(0, 2));
- dataProviders[0].and = mockDataProviders.slice(2, 4);
- dataProviders[1].and = mockDataProviders.slice(4, 5);
+ dataProviders[0].and = cloneDeep(mockDataProviders.slice(2, 4));
+ dataProviders[1].and = cloneDeep(mockDataProviders.slice(4, 5));
const kqlQuery = buildGlobalQuery(dataProviders, mockBrowserFields);
expect(cleanUpKqlQuery(kqlQuery)).toEqual(
'(name : "Provider 1" and name : "Provider 3" and name : "Provider 4") or (name : "Provider 2" and name : "Provider 5")'
);
});
+ test('Build KQL query with two data provider and multiple and and first data provider is disabled', () => {
+ const dataProviders = cloneDeep(mockDataProviders.slice(0, 2));
+ dataProviders[0].enabled = false;
+ dataProviders[0].and = cloneDeep(mockDataProviders.slice(2, 4));
+ dataProviders[1].and = cloneDeep(mockDataProviders.slice(4, 5));
+ const kqlQuery = buildGlobalQuery(dataProviders, mockBrowserFields);
+ expect(cleanUpKqlQuery(kqlQuery)).toEqual(
+ '(name : "Provider 3" and name : "Provider 4") or (name : "Provider 2" and name : "Provider 5")'
+ );
+ });
+
+ test('Build KQL query with two data provider and multiple and and first and provider is disabled', () => {
+ const dataProviders = cloneDeep(mockDataProviders.slice(0, 2));
+ dataProviders[0].and = cloneDeep(mockDataProviders.slice(2, 4));
+ dataProviders[0].and[0].enabled = false;
+ dataProviders[1].and = cloneDeep(mockDataProviders.slice(4, 5));
+ const kqlQuery = buildGlobalQuery(dataProviders, mockBrowserFields);
+ expect(cleanUpKqlQuery(kqlQuery)).toEqual(
+ '(name : "Provider 1" and name : "Provider 4") or (name : "Provider 2" and name : "Provider 5")'
+ );
+ });
+
test('Build KQL query with all data provider', () => {
const kqlQuery = buildGlobalQuery(mockDataProviders, mockBrowserFields);
expect(cleanUpKqlQuery(kqlQuery)).toEqual(
- '(name : "Provider 1" ) or (name : "Provider 2" ) or (name : "Provider 3" ) or (name : "Provider 4" ) or (name : "Provider 5" ) or (name : "Provider 6" ) or (name : "Provider 7" ) or (name : "Provider 8" ) or (name : "Provider 9" ) or (name : "Provider 10" )'
+ '(name : "Provider 1") or (name : "Provider 2") or (name : "Provider 3") or (name : "Provider 4") or (name : "Provider 5") or (name : "Provider 6") or (name : "Provider 7") or (name : "Provider 8") or (name : "Provider 9") or (name : "Provider 10")'
);
});
test('Build complex KQL query with and and or', () => {
const dataProviders = cloneDeep(mockDataProviders);
- dataProviders[0].and = mockDataProviders.slice(2, 4);
- dataProviders[1].and = mockDataProviders.slice(4, 5);
+ dataProviders[0].and = cloneDeep(mockDataProviders.slice(2, 4));
+ dataProviders[1].and = cloneDeep(mockDataProviders.slice(4, 5));
const kqlQuery = buildGlobalQuery(dataProviders, mockBrowserFields);
expect(cleanUpKqlQuery(kqlQuery)).toEqual(
- '(name : "Provider 1" and name : "Provider 3" and name : "Provider 4") or (name : "Provider 2" and name : "Provider 5") or (name : "Provider 3" ) or (name : "Provider 4" ) or (name : "Provider 5" ) or (name : "Provider 6" ) or (name : "Provider 7" ) or (name : "Provider 8" ) or (name : "Provider 9" ) or (name : "Provider 10" )'
+ '(name : "Provider 1" and name : "Provider 3" and name : "Provider 4") or (name : "Provider 2" and name : "Provider 5") or (name : "Provider 3") or (name : "Provider 4") or (name : "Provider 5") or (name : "Provider 6") or (name : "Provider 7") or (name : "Provider 8") or (name : "Provider 9") or (name : "Provider 10")'
);
});
});
@@ -223,7 +267,7 @@ describe('Combined Queries', () => {
});
test('Only Data Provider', () => {
- const dataProviders = mockDataProviders.slice(0, 1);
+ const dataProviders = cloneDeep(mockDataProviders.slice(0, 1));
const { filterQuery } = combineQueries({
config,
dataProviders,
@@ -338,7 +382,7 @@ describe('Combined Queries', () => {
});
test('Data Provider & KQL search query', () => {
- const dataProviders = mockDataProviders.slice(0, 1);
+ const dataProviders = cloneDeep(mockDataProviders.slice(0, 1));
const { filterQuery } = combineQueries({
config,
dataProviders,
@@ -356,7 +400,7 @@ describe('Combined Queries', () => {
});
test('Data Provider & KQL filter query', () => {
- const dataProviders = mockDataProviders.slice(0, 1);
+ const dataProviders = cloneDeep(mockDataProviders.slice(0, 1));
const { filterQuery } = combineQueries({
config,
dataProviders,
@@ -375,8 +419,8 @@ describe('Combined Queries', () => {
test('Data Provider & KQL search query multiple', () => {
const dataProviders = cloneDeep(mockDataProviders.slice(0, 2));
- dataProviders[0].and = mockDataProviders.slice(2, 4);
- dataProviders[1].and = mockDataProviders.slice(4, 5);
+ dataProviders[0].and = cloneDeep(mockDataProviders.slice(2, 4));
+ dataProviders[1].and = cloneDeep(mockDataProviders.slice(4, 5));
const { filterQuery } = combineQueries({
config,
dataProviders,
@@ -395,8 +439,8 @@ describe('Combined Queries', () => {
test('Data Provider & KQL filter query multiple', () => {
const dataProviders = cloneDeep(mockDataProviders.slice(0, 2));
- dataProviders[0].and = mockDataProviders.slice(2, 4);
- dataProviders[1].and = mockDataProviders.slice(4, 5);
+ dataProviders[0].and = cloneDeep(mockDataProviders.slice(2, 4));
+ dataProviders[1].and = cloneDeep(mockDataProviders.slice(4, 5));
const { filterQuery } = combineQueries({
config,
dataProviders,
diff --git a/x-pack/plugins/security_solution/public/timelines/components/timeline/helpers.tsx b/x-pack/plugins/security_solution/public/timelines/components/timeline/helpers.tsx
index da74d22575f85..b5481e9d4eee2 100644
--- a/x-pack/plugins/security_solution/public/timelines/components/timeline/helpers.tsx
+++ b/x-pack/plugins/security_solution/public/timelines/components/timeline/helpers.tsx
@@ -63,35 +63,30 @@ const buildQueryMatch = (
: `${dataProvider.queryMatch.field} ${EXISTS_OPERATOR}`
}`.trim();
-const buildQueryForAndProvider = (
- dataAndProviders: DataProvidersAnd[],
- browserFields: BrowserFields
-) =>
- dataAndProviders
- .reduce((andQuery, andDataProvider) => {
- const prepend = (q: string) => `${q !== '' ? `${q} and ` : ''}`;
- return andDataProvider.enabled
- ? `${prepend(andQuery)} ${buildQueryMatch(andDataProvider, browserFields)}`
- : andQuery;
- }, '')
- .trim();
-
export const buildGlobalQuery = (dataProviders: DataProvider[], browserFields: BrowserFields) =>
dataProviders
- .reduce((query, dataProvider: DataProvider, i) => {
- const prepend = (q: string) => `${q !== '' ? `${q} or ` : ''}`;
- const openParen = i >= 0 && dataProviders.length > 1 ? '(' : '';
- const closeParen = i >= 0 && dataProviders.length > 1 ? ')' : '';
- return dataProvider.enabled
- ? `${prepend(query)}${openParen}${buildQueryMatch(dataProvider, browserFields)}
- ${
- dataProvider.and.length > 0
- ? ` and ${buildQueryForAndProvider(dataProvider.and, browserFields)}`
- : ''
- }${closeParen}`.trim()
- : query;
- }, '')
- .trim();
+ .reduce((queries: string[], dataProvider: DataProvider) => {
+ const flatDataProviders = [dataProvider, ...dataProvider.and];
+ const activeDataProviders = flatDataProviders.filter(
+ (flatDataProvider) => flatDataProvider.enabled
+ );
+
+ if (!activeDataProviders.length) return queries;
+
+ const activeDataProvidersQueries = activeDataProviders.map((activeDataProvider) =>
+ buildQueryMatch(activeDataProvider, browserFields)
+ );
+
+ const activeDataProvidersQueryMatch = activeDataProvidersQueries.join(' and ');
+
+ return [...queries, activeDataProvidersQueryMatch];
+ }, [])
+ .filter((queriesItem) => !isEmpty(queriesItem))
+ .reduce((globalQuery: string, queryMatch: string, index: number, queries: string[]) => {
+ if (queries.length <= 1) return queryMatch;
+
+ return !index ? `(${queryMatch})` : `${globalQuery} or (${queryMatch})`;
+ }, '');
export const combineQueries = ({
config,
diff --git a/x-pack/plugins/security_solution/public/timelines/components/timeline/index.test.tsx b/x-pack/plugins/security_solution/public/timelines/components/timeline/index.test.tsx
new file mode 100644
index 0000000000000..581fa125d21e2
--- /dev/null
+++ b/x-pack/plugins/security_solution/public/timelines/components/timeline/index.test.tsx
@@ -0,0 +1,133 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License;
+ * you may not use this file except in compliance with the Elastic License.
+ */
+
+import { mount } from 'enzyme';
+import React from 'react';
+import { MockedProvider } from 'react-apollo/test-utils';
+import { act } from 'react-dom/test-utils';
+import useResizeObserver from 'use-resize-observer/polyfilled';
+
+import {
+ useSignalIndex,
+ ReturnSignalIndex,
+} from '../../../alerts/containers/detection_engine/alerts/use_signal_index';
+import { mocksSource } from '../../../common/containers/source/mock';
+import { wait } from '../../../common/lib/helpers';
+import { defaultHeaders, mockTimelineData, TestProviders } from '../../../common/mock';
+import { Direction } from '../../../graphql/types';
+import { timelineQuery } from '../../containers/index.gql_query';
+import { timelineActions } from '../../store/timeline';
+
+import { Sort } from './body/sort';
+import { mockDataProviders } from './data_providers/mock/mock_data_providers';
+import { StatefulTimeline, Props as StatefulTimelineProps } from './index';
+import { Timeline } from './timeline';
+
+jest.mock('../../../common/lib/kibana');
+
+const mockUseResizeObserver: jest.Mock = useResizeObserver as jest.Mock;
+jest.mock('use-resize-observer/polyfilled');
+mockUseResizeObserver.mockImplementation(() => ({}));
+
+const mockUseSignalIndex: jest.Mock = useSignalIndex as jest.Mock;
+jest.mock('../../../alerts/containers/detection_engine/alerts/use_signal_index');
+
+describe('StatefulTimeline', () => {
+ let props = {} as StatefulTimelineProps;
+ const sort: Sort = {
+ columnId: '@timestamp',
+ sortDirection: Direction.desc,
+ };
+ const startDate = new Date('2018-03-23T18:49:23.132Z').valueOf();
+ const endDate = new Date('2018-03-24T03:33:52.253Z').valueOf();
+
+ const mocks = [
+ { request: { query: timelineQuery }, result: { data: { events: mockTimelineData } } },
+ ...mocksSource,
+ ];
+
+ beforeEach(() => {
+ props = {
+ addProvider: timelineActions.addProvider,
+ columns: defaultHeaders,
+ createTimeline: timelineActions.createTimeline,
+ dataProviders: mockDataProviders,
+ eventType: 'raw',
+ end: endDate,
+ filters: [],
+ id: 'foo',
+ isLive: false,
+ itemsPerPage: 5,
+ itemsPerPageOptions: [5, 10, 20],
+ kqlMode: 'search',
+ kqlQueryExpression: '',
+ onClose: jest.fn(),
+ onDataProviderEdited: timelineActions.dataProviderEdited,
+ removeColumn: timelineActions.removeColumn,
+ removeProvider: timelineActions.removeProvider,
+ show: true,
+ showCallOutUnauthorizedMsg: false,
+ sort,
+ start: startDate,
+ updateColumns: timelineActions.updateColumns,
+ updateDataProviderEnabled: timelineActions.updateDataProviderEnabled,
+ updateDataProviderExcluded: timelineActions.updateDataProviderExcluded,
+ updateDataProviderKqlQuery: timelineActions.updateDataProviderKqlQuery,
+ updateHighlightedDropAndProviderId: timelineActions.updateHighlightedDropAndProviderId,
+ updateItemsPerPage: timelineActions.updateItemsPerPage,
+ updateItemsPerPageOptions: timelineActions.updateItemsPerPageOptions,
+ updateSort: timelineActions.updateSort,
+ upsertColumn: timelineActions.upsertColumn,
+ usersViewing: ['elastic'],
+ };
+ });
+
+ describe('indexToAdd', () => {
+ test('Make sure that indexToAdd return an unknown index if signalIndex does not exist', async () => {
+ mockUseSignalIndex.mockImplementation(() => ({
+ loading: false,
+ signalIndexExists: false,
+ signalIndexName: undefined,
+ }));
+ const wrapper = mount(
+
+
+
+
+
+ );
+ await act(async () => {
+ await wait();
+ wrapper.update();
+ const timeline = wrapper.find(Timeline);
+ expect(timeline.props().indexToAdd).toEqual([
+ 'no-alert-index-049FC71A-4C2C-446F-9901-37XMC5024C51',
+ ]);
+ });
+ });
+
+ test('Make sure that indexToAdd return siem signal index if signalIndex exist', async () => {
+ mockUseSignalIndex.mockImplementation(() => ({
+ loading: false,
+ signalIndexExists: true,
+ signalIndexName: 'mock-siem-signals-index',
+ }));
+ const wrapper = mount(
+
+
+
+
+
+ );
+ await act(async () => {
+ await wait();
+ wrapper.update();
+ const timeline = wrapper.find(Timeline);
+ expect(timeline.props().indexToAdd).toEqual(['mock-siem-signals-index']);
+ });
+ });
+ });
+});
diff --git a/x-pack/plugins/security_solution/public/timelines/components/timeline/index.tsx b/x-pack/plugins/security_solution/public/timelines/components/timeline/index.tsx
index c52be64f94bf1..42fd6422d3a38 100644
--- a/x-pack/plugins/security_solution/public/timelines/components/timeline/index.tsx
+++ b/x-pack/plugins/security_solution/public/timelines/components/timeline/index.tsx
@@ -8,6 +8,7 @@ import React, { useEffect, useCallback, useMemo } from 'react';
import { connect, ConnectedProps } from 'react-redux';
import deepEqual from 'fast-deep-equal';
+import { NO_ALERT_INDEX } from '../../../../common/constants';
import { WithSource } from '../../../common/containers/source';
import { useSignalIndex } from '../../../alerts/containers/detection_engine/alerts/use_signal_index';
import { inputsModel, inputsSelectors, State } from '../../../common/store';
@@ -30,7 +31,7 @@ export interface OwnProps {
usersViewing: string[];
}
-type Props = OwnProps & PropsFromRedux;
+export type Props = OwnProps & PropsFromRedux;
const StatefulTimelineComponent = React.memo(
({
@@ -67,11 +68,11 @@ const StatefulTimelineComponent = React.memo(
eventType &&
signalIndexExists &&
signalIndexName != null &&
- ['signal', 'all'].includes(eventType)
+ ['signal', 'alert', 'all'].includes(eventType)
) {
return [signalIndexName];
}
- return [];
+ return [NO_ALERT_INDEX]; // Following index does not exist so we won't show any events;
}, [eventType, signalIndexExists, signalIndexName]);
const onDataProviderRemoved: OnDataProviderRemoved = useCallback(
diff --git a/x-pack/plugins/security_solution/public/timelines/components/timeline/search_or_filter/pick_events.tsx b/x-pack/plugins/security_solution/public/timelines/components/timeline/search_or_filter/pick_events.tsx
index 5a3805af0ca43..b0682290ee849 100644
--- a/x-pack/plugins/security_solution/public/timelines/components/timeline/search_or_filter/pick_events.tsx
+++ b/x-pack/plugins/security_solution/public/timelines/components/timeline/search_or_filter/pick_events.tsx
@@ -79,7 +79,7 @@ const PickEventTypeComponents: React.FC = ({
diff --git a/x-pack/plugins/security_solution/public/timelines/containers/index.tsx b/x-pack/plugins/security_solution/public/timelines/containers/index.tsx
index 5efcb84539123..7363a60974275 100644
--- a/x-pack/plugins/security_solution/public/timelines/containers/index.tsx
+++ b/x-pack/plugins/security_solution/public/timelines/containers/index.tsx
@@ -92,7 +92,7 @@ class TimelineQueryComponent extends QueryTemplate<
indexPattern == null || (indexPattern != null && indexPattern.title === '')
? [
...(['all', 'raw'].includes(eventType) ? defaultKibanaIndex : []),
- ...(['all', 'signal'].includes(eventType) ? indexToAdd : []),
+ ...(['all', 'alert', 'signal'].includes(eventType) ? indexToAdd : []),
]
: indexPattern?.title.split(',') ?? [];
const variables: GetTimelineQuery.Variables = {
diff --git a/x-pack/plugins/security_solution/public/timelines/store/timeline/model.ts b/x-pack/plugins/security_solution/public/timelines/store/timeline/model.ts
index f7e848e8a9e1b..caad70226365a 100644
--- a/x-pack/plugins/security_solution/public/timelines/store/timeline/model.ts
+++ b/x-pack/plugins/security_solution/public/timelines/store/timeline/model.ts
@@ -18,7 +18,7 @@ import { KueryFilterQuery, SerializedFilterQuery } from '../../../common/store/t
export const DEFAULT_PAGE_COUNT = 2; // Eui Pager will not render unless this is a minimum of 2 pages
export type KqlMode = 'filter' | 'search';
-export type EventType = 'all' | 'raw' | 'alert';
+export type EventType = 'all' | 'raw' | 'alert' | 'signal';
export type ColumnHeaderType = 'not-filtered' | 'text-filter';
diff --git a/x-pack/plugins/security_solution/server/lib/framework/kibana_framework_adapter.ts b/x-pack/plugins/security_solution/server/lib/framework/kibana_framework_adapter.ts
index 9a7b56eed366d..6d9e9b13bc356 100644
--- a/x-pack/plugins/security_solution/server/lib/framework/kibana_framework_adapter.ts
+++ b/x-pack/plugins/security_solution/server/lib/framework/kibana_framework_adapter.ts
@@ -15,7 +15,7 @@ import {
RequestHandlerContext,
KibanaRequest,
} from '../../../../../../src/core/server';
-import { IndexPatternsFetcher } from '../../../../../../src/plugins/data/server';
+import { IndexPatternsFetcher, UI_SETTINGS } from '../../../../../../src/plugins/data/server';
import { AuthenticatedUser } from '../../../../security/common/model';
import { SetupPlugins } from '../../plugin';
@@ -43,10 +43,10 @@ export class KibanaBackendFrameworkAdapter implements FrameworkAdapter {
params: Record
) {
const { elasticsearch, uiSettings } = req.context.core;
- const includeFrozen = await uiSettings.client.get('search:includeFrozen');
+ const includeFrozen = await uiSettings.client.get(UI_SETTINGS.SEARCH_INCLUDE_FROZEN);
const maxConcurrentShardRequests =
endpoint === 'msearch'
- ? await uiSettings.client.get('courier:maxConcurrentShardRequests')
+ ? await uiSettings.client.get(UI_SETTINGS.COURIER_MAX_CONCURRENT_SHARD_REQUESTS)
: 0;
return elasticsearch.legacy.client.callAsCurrentUser(endpoint, {
diff --git a/x-pack/plugins/spaces/server/spaces_service/spaces_service.ts b/x-pack/plugins/spaces/server/spaces_service/spaces_service.ts
index 759b0606a5e8b..cf181a78efcb8 100644
--- a/x-pack/plugins/spaces/server/spaces_service/spaces_service.ts
+++ b/x-pack/plugins/spaces/server/spaces_service/spaces_service.ts
@@ -68,14 +68,18 @@ export class SpacesService {
return spaceId;
};
+ const internalRepositoryPromise = getStartServices().then(([coreStart]) =>
+ coreStart.savedObjects.createInternalRepository(['space'])
+ );
+
const getScopedClient = async (request: KibanaRequest) => {
const [coreStart] = await getStartServices();
+ const internalRepository = await internalRepositoryPromise;
return config$
.pipe(
+ take(1),
map((config) => {
- const internalRepository = coreStart.savedObjects.createInternalRepository(['space']);
-
const callWithRequestRepository = coreStart.savedObjects.createScopedRepository(
request,
['space']
@@ -92,8 +96,7 @@ export class SpacesService {
internalRepository,
request
);
- }),
- take(1)
+ })
)
.toPromise();
};
diff --git a/x-pack/plugins/transform/public/app/sections/create_transform/components/step_define/common/filter_agg/components/filter_term_form.tsx b/x-pack/plugins/transform/public/app/sections/create_transform/components/step_define/common/filter_agg/components/filter_term_form.tsx
index b48deb771c873..67be9fb7ca793 100644
--- a/x-pack/plugins/transform/public/app/sections/create_transform/components/step_define/common/filter_agg/components/filter_term_form.tsx
+++ b/x-pack/plugins/transform/public/app/sections/create_transform/components/step_define/common/filter_agg/components/filter_term_form.tsx
@@ -30,6 +30,7 @@ export const FilterTermForm: FilterAggConfigTerm['aggTypeConfig']['FilterAggForm
const [options, setOptions] = useState([]);
const [isLoading, setIsLoading] = useState(true);
+ /* eslint-disable-next-line react-hooks/exhaustive-deps */
const fetchOptions = useCallback(
debounce(async (searchValue: string) => {
const esSearchRequest = {
diff --git a/x-pack/plugins/translations/translations/ja-JP.json b/x-pack/plugins/translations/translations/ja-JP.json
index 8806814530573..9d3bc008106c6 100644
--- a/x-pack/plugins/translations/translations/ja-JP.json
+++ b/x-pack/plugins/translations/translations/ja-JP.json
@@ -496,6 +496,81 @@
"dashboard.topNave.viewConfigDescription": "編集をキャンセルして表示限定モードに切り替えます",
"dashboard.urlWasRemovedInSixZeroWarningMessage": "URL「dashboard/create」は6.0で廃止されました。ブックマークを更新してください。",
"dashboard.visitVisualizeAppLinkText": "可視化アプリにアクセス",
+ "data.advancedSettings.courier.batchSearchesText": "無効の場合、ダッシュボードパネルは個々に読み込まれ、検索リクエストはユーザーが移動するか\n クエリを更新すると停止します。有効の場合、ダッシュボードパネルはすべてのデータが読み込まれると同時に読み込まれ、\n 検索は停止しません。",
+ "data.advancedSettings.courier.batchSearchesTextDeprecation": "この設定はサポートが終了し、Kibana 8.0 では削除されます。",
+ "data.advancedSettings.courier.batchSearchesTitle": "同時検索のバッチ処理",
+ "data.advancedSettings.courier.customRequestPreference.requestPreferenceLinkText": "リクエスト設定",
+ "data.advancedSettings.courier.customRequestPreferenceText": "{setRequestReferenceSetting} が {customSettingValue} に設定されている時に使用される {requestPreferenceLink} です。",
+ "data.advancedSettings.courier.customRequestPreferenceTitle": "カスタムリクエスト設定",
+ "data.advancedSettings.courier.ignoreFilterText": "この構成は、似ていないインデックスにアクセスするビジュアライゼーションを含むダッシュボードのサポートを強化します。無効にすると、すべてのフィルターがすべてのビジュアライゼーションに適用されます。有効にすると、ビジュアライゼーションのインデックスにフィルター対象のフィールドが含まれていない場合、ビジュアライゼーションの際にフィルターが無視されます。",
+ "data.advancedSettings.courier.ignoreFilterTitle": "フィルターの無視",
+ "data.advancedSettings.courier.maxRequestsText": "Kibana から送信された _msearch requests リクエストに使用される {maxRequestsLink} 設定を管理します。この構成を無効にして Elasticsearch のデフォルトを使用するには、0 に設定します。",
+ "data.advancedSettings.courier.maxRequestsTitle": "最大同時シャードリクエスト",
+ "data.advancedSettings.courier.requestPreferenceCustom": "カスタム",
+ "data.advancedSettings.courier.requestPreferenceNone": "なし",
+ "data.advancedSettings.courier.requestPreferenceSessionId": "セッション ID",
+ "data.advancedSettings.courier.requestPreferenceText": "どのシャードが検索リクエストを扱うかを設定できます。\n - {sessionId}: 同じシャードのすべての検索リクエストを実行するため、オペレーションを制限します。\n これにはリクエスト間でシャードのキャッシュを共有できるというメリットがあります。
\n - {custom}: 独自の設定が可能になります。\n couriercustomRequestPreference で設定値をカスタマイズします。
\n - {none}: 設定されていないことを意味します。\n これにより、リクエストが全シャードコピー間に分散されるため、パフォーマンスが改善される可能性があります。\n ただし、シャードによって更新ステータスが異なる場合があるため、結果に矛盾が生じる可能性があります。
\n
",
+ "data.advancedSettings.courier.requestPreferenceTitle": "リクエスト設定",
+ "data.advancedSettings.defaultIndexText": "インデックスが設定されていない時にアクセスするインデックスです",
+ "data.advancedSettings.defaultIndexTitle": "デフォルトのインデックス",
+ "data.advancedSettings.pinFiltersText": "フィルターがデフォルトでグローバル (ピン付けされた状態) になるかの設定です",
+ "data.advancedSettings.pinFiltersTitle": "フィルターをデフォルトでピン付けする",
+ "data.advancedSettings.query.allowWildcardsText": "設定すると、クエリ句の頭に * が使えるようになります。現在クエリバーで実験的クエリ機能が有効になっている場合にのみ適用されます。基本的な Lucene クエリでリーディングワイルドカードを無効にするには、{queryStringOptionsPattern} を使用します。",
+ "data.advancedSettings.query.allowWildcardsTitle": "クエリでリーディングワイルドカードを許可する",
+ "data.advancedSettings.query.queryStringOptions.optionsLinkText": "オプション",
+ "data.advancedSettings.query.queryStringOptionsText": "Lucene クエリ文字列パーサーの {optionsLink}「{queryLanguage}」が {luceneLanguage} に設定されている時にのみ使用されます。",
+ "data.advancedSettings.query.queryStringOptionsTitle": "クエリ文字列のオプション",
+ "data.advancedSettings.searchQueryLanguageKql": "KQL",
+ "data.advancedSettings.searchQueryLanguageLucene": "Lucene",
+ "data.advancedSettings.searchQueryLanguageText": "クエリバーで使用されるクエリ言語です。KQL は Kibana 用に特別に開発された新しい言語です。",
+ "data.advancedSettings.searchQueryLanguageTitle": "クエリ言語",
+ "data.advancedSettings.shortenFieldsText": "長いフィールドを短くします。例: foo.bar.baz の代わりに f.b.baz と表示",
+ "data.advancedSettings.shortenFieldsTitle": "フィールドの短縮",
+ "data.advancedSettings.sortOptions.optionsLinkText": "オプション",
+ "data.advancedSettings.sortOptionsText": "Elasticsearch の並べ替えパラメーターの {optionsLink}",
+ "data.advancedSettings.sortOptionsTitle": "並べ替えオプション",
+ "data.advancedSettings.format.bytesFormat.numeralFormatLinkText": "数字フォーマット",
+ "data.advancedSettings.format.bytesFormatText": "「バイト」フォーマットのデフォルト {numeralFormatLink} です",
+ "data.advancedSettings.format.bytesFormatTitle": "バイトフォーマット",
+ "data.advancedSettings.format.currencyFormat.numeralFormatLinkText": "数字フォーマット",
+ "data.advancedSettings.format.currencyFormatText": "「通貨」フォーマットのデフォルト {numeralFormatLink} です",
+ "data.advancedSettings.format.currencyFormatTitle": "通貨フォーマット",
+ "data.advancedSettings.format.defaultTypeMapText": "各フィールドタイプにデフォルトで使用するフォーマット名のマップです。フィールドタイプが特に指定されていない場合は {defaultFormat} が使用されます",
+ "data.advancedSettings.format.defaultTypeMapTitle": "フィールドタイプフォーマット名",
+ "data.advancedSettings.format.formattingLocale.numeralLanguageLinkText": "数字言語",
+ "data.advancedSettings.format.formattingLocaleText": "{numeralLanguageLink} ロケール",
+ "data.advancedSettings.format.formattingLocaleTitle": "フォーマットロケール",
+ "data.advancedSettings.format.numberFormat.numeralFormatLinkText": "数字フォーマット",
+ "data.advancedSettings.format.numberFormatText": "「数字」フォーマットのデフォルト {numeralFormatLink} です",
+ "data.advancedSettings.format.numberFormatTitle": "数字フォーマット",
+ "data.advancedSettings.format.percentFormat.numeralFormatLinkText": "数字フォーマット",
+ "data.advancedSettings.format.percentFormatText": "「パーセント」フォーマットのデフォルト {numeralFormatLink} です",
+ "data.advancedSettings.format.percentFormatTitle": "パーセントフォーマット",
+ "data.advancedSettings.histogram.barTargetText": "日付ヒストグラムで「自動」間隔を使用する際、この数に近いバーの作成を試みます",
+ "data.advancedSettings.histogram.barTargetTitle": "目標バー数",
+ "data.advancedSettings.histogram.maxBarsText": "日付ヒストグラムに表示されるバーの数の上限です。必要に応じて値をスケーリングしてください",
+ "data.advancedSettings.histogram.maxBarsTitle": "最高バー数",
+ "data.advancedSettings.historyLimitText": "履歴があるフィールド (例: クエリインプット) に個の数の最近の値が表示されます",
+ "data.advancedSettings.historyLimitTitle": "履歴制限数",
+ "data.advancedSettings.indexPatternPlaceholderText": "「管理 > インデックスパターン > インデックスパターンを作成」で使用される「インデックスパターン名」フィールドのプレースホルダーです。",
+ "data.advancedSettings.indexPatternPlaceholderTitle": "インデックスパターンのプレースホルダー",
+ "data.advancedSettings.suggestFilterValuesText": "フィルターエディターがフィールドの値の候補を表示しないようにするには、このプロパティを false にしてください。",
+ "data.advancedSettings.suggestFilterValuesTitle": "フィルターエディターの候補値",
+ "data.advancedSettings.timepicker.last15Minutes": "過去 15 分間",
+ "data.advancedSettings.timepicker.last1Hour": "過去 1 時間",
+ "data.advancedSettings.timepicker.last1Year": "過去 1 年間",
+ "data.advancedSettings.timepicker.last24Hours": "過去 24 時間",
+ "data.advancedSettings.timepicker.last30Days": "過去 30 日間",
+ "data.advancedSettings.timepicker.last30Minutes": "過去 30 分間",
+ "data.advancedSettings.timepicker.last7Days": "過去 7 日間",
+ "data.advancedSettings.timepicker.last90Days": "過去 90 日間",
+ "data.advancedSettings.timepicker.quickRanges.acceptedFormatsLinkText": "対応フォーマット",
+ "data.advancedSettings.timepicker.quickRangesText": "タイムピッカーのクイックセクションに表示される範囲のリストです。それぞれのオブジェクトに「開始」、「終了」({acceptedFormatsLink} を参照)、「表示」(表示するタイトル) が含まれるオブジェクトの配列です。",
+ "data.advancedSettings.timepicker.quickRangesTitle": "タイムピッカーのクイック範囲",
+ "data.advancedSettings.timepicker.refreshIntervalDefaultsText": "時間フィルターのデフォルト更新間隔",
+ "data.advancedSettings.timepicker.refreshIntervalDefaultsTitle": "タイムピッカーの更新間隔",
+ "data.advancedSettings.timepicker.thisWeek": "今週",
+ "data.advancedSettings.timepicker.today": "今日",
"data.aggTypes.buckets.ranges.rangesFormatMessage": "{gte} {from} と {lt} {to}",
"data.common.kql.errors.endOfInputText": "インプットの終わり",
"data.common.kql.errors.fieldNameText": "フィールド名",
@@ -2047,25 +2122,10 @@
"inspector.requests.statisticsTabLabel": "統計",
"inspector.title": "インスペクター",
"inspector.view": "{viewName} を表示",
- "kbn.advancedSettings.courier.batchSearchesText": "無効の場合、ダッシュボードパネルは個々に読み込まれ、検索リクエストはユーザーが移動するか\n クエリを更新すると停止します。有効の場合、ダッシュボードパネルはすべてのデータが読み込まれると同時に読み込まれ、\n 検索は停止しません。",
- "kbn.advancedSettings.courier.batchSearchesTextDeprecation": "この設定はサポートが終了し、Kibana 8.0 では削除されます。",
- "kbn.advancedSettings.courier.batchSearchesTitle": "同時検索のバッチ処理",
- "kbn.advancedSettings.courier.customRequestPreference.requestPreferenceLinkText": "リクエスト設定",
- "kbn.advancedSettings.courier.customRequestPreferenceText": "{setRequestReferenceSetting} が {customSettingValue} に設定されている時に使用される {requestPreferenceLink} です。",
- "kbn.advancedSettings.courier.customRequestPreferenceTitle": "カスタムリクエスト設定",
- "kbn.advancedSettings.courier.ignoreFilterText": "この構成は、似ていないインデックスにアクセスするビジュアライゼーションを含むダッシュボードのサポートを強化します。無効にすると、すべてのフィルターがすべてのビジュアライゼーションに適用されます。有効にすると、ビジュアライゼーションのインデックスにフィルター対象のフィールドが含まれていない場合、ビジュアライゼーションの際にフィルターが無視されます。",
- "kbn.advancedSettings.courier.ignoreFilterTitle": "フィルターの無視",
- "kbn.advancedSettings.courier.maxRequestsText": "Kibana から送信された _msearch requests リクエストに使用される {maxRequestsLink} 設定を管理します。この構成を無効にして Elasticsearch のデフォルトを使用するには、0 に設定します。",
- "kbn.advancedSettings.courier.maxRequestsTitle": "最大同時シャードリクエスト",
- "kbn.advancedSettings.courier.requestPreferenceCustom": "カスタム",
- "kbn.advancedSettings.courier.requestPreferenceNone": "なし",
- "kbn.advancedSettings.courier.requestPreferenceSessionId": "セッション ID",
- "kbn.advancedSettings.courier.requestPreferenceText": "どのシャードが検索リクエストを扱うかを設定できます。\n - {sessionId}: 同じシャードのすべての検索リクエストを実行するため、オペレーションを制限します。\n これにはリクエスト間でシャードのキャッシュを共有できるというメリットがあります。
\n - {custom}: 独自の設定が可能になります。\n couriercustomRequestPreference で設定値をカスタマイズします。
\n - {none}: 設定されていないことを意味します。\n これにより、リクエストが全シャードコピー間に分散されるため、パフォーマンスが改善される可能性があります。\n ただし、シャードによって更新ステータスが異なる場合があるため、結果に矛盾が生じる可能性があります。
\n
",
- "kbn.advancedSettings.courier.requestPreferenceTitle": "リクエスト設定",
- "kbn.advancedSettings.csv.quoteValuesText": "csv エクスポートに値を引用するかどうかです",
- "kbn.advancedSettings.csv.quoteValuesTitle": "CSV の値を引用",
- "kbn.advancedSettings.csv.separatorText": "エクスポートされた値をこの文字列で区切ります",
- "kbn.advancedSettings.csv.separatorTitle": "CSV セパレーター",
+ "share.advancedSettings.csv.quoteValuesText": "csv エクスポートに値を引用するかどうかです",
+ "share.advancedSettings.csv.quoteValuesTitle": "CSV の値を引用",
+ "share.advancedSettings.csv.separatorText": "エクスポートされた値をこの文字列で区切ります",
+ "share.advancedSettings.csv.separatorTitle": "CSV セパレーター",
"kbn.advancedSettings.darkModeText": "Kibana UI のダークモードを有効にします。この設定を適用するにはページの更新が必要です。",
"kbn.advancedSettings.darkModeTitle": "ダークモード",
"kbn.advancedSettings.dateFormat.dayOfWeekText": "週の初めの曜日を設定します",
@@ -2081,38 +2141,11 @@
"kbn.advancedSettings.dateNanosFormatText": "Elasticsearch の {dateNanosLink} データタイプに使用されます",
"kbn.advancedSettings.dateNanosFormatTitle": "ナノ秒フォーマットでの日付",
"kbn.advancedSettings.dateNanosLinkTitle": "date_nanos",
- "kbn.advancedSettings.defaultIndexText": "インデックスが設定されていない時にアクセスするインデックスです",
- "kbn.advancedSettings.defaultIndexTitle": "デフォルトのインデックス",
"kbn.advancedSettings.defaultRoute.defaultRouteIsRelativeValidationMessage": "相対 URL でなければなりません。",
"kbn.advancedSettings.defaultRoute.defaultRouteText": "この設定は、Kibana 起動時のデフォルトのルートを設定します。この設定で、Kibana 起動時のランディングページを変更できます。経路は相対 URL でなければなりません。",
"kbn.advancedSettings.defaultRoute.defaultRouteTitle": "デフォルトのルート",
"kbn.advancedSettings.disableAnimationsText": "Kibana UI の不要なアニメーションをオフにします。変更を適用するにはページを更新してください。",
"kbn.advancedSettings.disableAnimationsTitle": "アニメーションを無効にする",
- "kbn.advancedSettings.format.bytesFormat.numeralFormatLinkText": "数字フォーマット",
- "kbn.advancedSettings.format.bytesFormatText": "「バイト」フォーマットのデフォルト {numeralFormatLink} です",
- "kbn.advancedSettings.format.bytesFormatTitle": "バイトフォーマット",
- "kbn.advancedSettings.format.currencyFormat.numeralFormatLinkText": "数字フォーマット",
- "kbn.advancedSettings.format.currencyFormatText": "「通貨」フォーマットのデフォルト {numeralFormatLink} です",
- "kbn.advancedSettings.format.currencyFormatTitle": "通貨フォーマット",
- "kbn.advancedSettings.format.defaultTypeMapText": "各フィールドタイプにデフォルトで使用するフォーマット名のマップです。フィールドタイプが特に指定されていない場合は {defaultFormat} が使用されます",
- "kbn.advancedSettings.format.defaultTypeMapTitle": "フィールドタイプフォーマット名",
- "kbn.advancedSettings.format.formattingLocale.numeralLanguageLinkText": "数字言語",
- "kbn.advancedSettings.format.formattingLocaleText": "{numeralLanguageLink} ロケール",
- "kbn.advancedSettings.format.formattingLocaleTitle": "フォーマットロケール",
- "kbn.advancedSettings.format.numberFormat.numeralFormatLinkText": "数字フォーマット",
- "kbn.advancedSettings.format.numberFormatText": "「数字」フォーマットのデフォルト {numeralFormatLink} です",
- "kbn.advancedSettings.format.numberFormatTitle": "数字フォーマット",
- "kbn.advancedSettings.format.percentFormat.numeralFormatLinkText": "数字フォーマット",
- "kbn.advancedSettings.format.percentFormatText": "「パーセント」フォーマットのデフォルト {numeralFormatLink} です",
- "kbn.advancedSettings.format.percentFormatTitle": "パーセントフォーマット",
- "kbn.advancedSettings.histogram.barTargetText": "日付ヒストグラムで「自動」間隔を使用する際、この数に近いバーの作成を試みます",
- "kbn.advancedSettings.histogram.barTargetTitle": "目標バー数",
- "kbn.advancedSettings.histogram.maxBarsText": "日付ヒストグラムに表示されるバーの数の上限です。必要に応じて値をスケーリングしてください",
- "kbn.advancedSettings.histogram.maxBarsTitle": "最高バー数",
- "kbn.advancedSettings.historyLimitText": "履歴があるフィールド (例: クエリインプット) に個の数の最近の値が表示されます",
- "kbn.advancedSettings.historyLimitTitle": "履歴制限数",
- "kbn.advancedSettings.indexPatternPlaceholderText": "「管理 > インデックスパターン > インデックスパターンを作成」で使用される「インデックスパターン名」フィールドのプレースホルダーです。",
- "kbn.advancedSettings.indexPatternPlaceholderTitle": "インデックスパターンのプレースホルダー",
"kbn.advancedSettings.maxCellHeightText": "表のセルが使用する高さの上限です。この切り捨てを無効にするには 0 に設定します",
"kbn.advancedSettings.maxCellHeightTitle": "表のセルの高さの上限",
"kbn.advancedSettings.notifications.banner.markdownLinkText": "マークダウン対応",
@@ -2130,43 +2163,10 @@
"kbn.advancedSettings.pageNavigationLegacy": "レガシー",
"kbn.advancedSettings.pageNavigationModern": "モダン",
"kbn.advancedSettings.pageNavigationName": "サイドナビゲーションスタイル",
- "kbn.advancedSettings.pinFiltersText": "フィルターがデフォルトでグローバル (ピン付けされた状態) になるかの設定です",
- "kbn.advancedSettings.pinFiltersTitle": "フィルターをデフォルトでピン付けする",
- "kbn.advancedSettings.query.allowWildcardsText": "設定すると、クエリ句の頭に * が使えるようになります。現在クエリバーで実験的クエリ機能が有効になっている場合にのみ適用されます。基本的な Lucene クエリでリーディングワイルドカードを無効にするには、{queryStringOptionsPattern} を使用します。",
- "kbn.advancedSettings.query.allowWildcardsTitle": "クエリでリーディングワイルドカードを許可する",
- "kbn.advancedSettings.query.queryStringOptions.optionsLinkText": "オプション",
- "kbn.advancedSettings.query.queryStringOptionsText": "Lucene クエリ文字列パーサーの {optionsLink}「{queryLanguage}」が {luceneLanguage} に設定されている時にのみ使用されます。",
- "kbn.advancedSettings.query.queryStringOptionsTitle": "クエリ文字列のオプション",
- "kbn.advancedSettings.searchQueryLanguageKql": "KQL",
- "kbn.advancedSettings.searchQueryLanguageLucene": "Lucene",
- "kbn.advancedSettings.searchQueryLanguageText": "クエリバーで使用されるクエリ言語です。KQL は Kibana 用に特別に開発された新しい言語です。",
- "kbn.advancedSettings.searchQueryLanguageTitle": "クエリ言語",
- "kbn.advancedSettings.shortenFieldsText": "長いフィールドを短くします。例: foo.bar.baz の代わりに f.b.baz と表示",
- "kbn.advancedSettings.shortenFieldsTitle": "フィールドの短縮",
- "kbn.advancedSettings.sortOptions.optionsLinkText": "オプション",
- "kbn.advancedSettings.sortOptionsText": "Elasticsearch の並べ替えパラメーターの {optionsLink}",
- "kbn.advancedSettings.sortOptionsTitle": "並べ替えオプション",
"kbn.advancedSettings.storeUrlText": "URL は長くなりすぎてブラウザが対応できない場合があります。セッションストレージに URL の一部を保存することがで この問題に対処できるかテストしています。結果を教えてください!",
"kbn.advancedSettings.storeUrlTitle": "セッションストレージに URL を格納",
- "kbn.advancedSettings.suggestFilterValuesText": "フィルターエディターがフィールドの値の候補を表示しないようにするには、このプロパティを false にしてください。",
- "kbn.advancedSettings.suggestFilterValuesTitle": "フィルターエディターの候補値",
- "kbn.advancedSettings.timepicker.last15Minutes": "過去 15 分間",
- "kbn.advancedSettings.timepicker.last1Hour": "過去 1 時間",
- "kbn.advancedSettings.timepicker.last1Year": "過去 1 年間",
- "kbn.advancedSettings.timepicker.last24Hours": "過去 24 時間",
- "kbn.advancedSettings.timepicker.last30Days": "過去 30 日間",
- "kbn.advancedSettings.timepicker.last30Minutes": "過去 30 分間",
- "kbn.advancedSettings.timepicker.last7Days": "過去 7 日間",
- "kbn.advancedSettings.timepicker.last90Days": "過去 90 日間",
- "kbn.advancedSettings.timepicker.quickRanges.acceptedFormatsLinkText": "対応フォーマット",
- "kbn.advancedSettings.timepicker.quickRangesText": "タイムピッカーのクイックセクションに表示される範囲のリストです。それぞれのオブジェクトに「開始」、「終了」({acceptedFormatsLink} を参照)、「表示」(表示するタイトル) が含まれるオブジェクトの配列です。",
- "kbn.advancedSettings.timepicker.quickRangesTitle": "タイムピッカーのクイック範囲",
- "kbn.advancedSettings.timepicker.refreshIntervalDefaultsText": "時間フィルターのデフォルト更新間隔",
- "kbn.advancedSettings.timepicker.refreshIntervalDefaultsTitle": "タイムピッカーの更新間隔",
- "kbn.advancedSettings.timepicker.thisWeek": "今週",
"kbn.advancedSettings.timepicker.timeDefaultsText": "時間フィルターが選択されずに Kibana が起動した際に使用される時間フィルターです",
"kbn.advancedSettings.timepicker.timeDefaultsTitle": "デフォルトのタイムピッカー",
- "kbn.advancedSettings.timepicker.today": "今日",
"kbn.advancedSettings.visualization.showRegionMapWarningsText": "用語がマップの形に合わない場合に地域マップに警告を表示するかどうかです。",
"kbn.advancedSettings.visualization.showRegionMapWarningsTitle": "地域マップに警告を表示",
"kbn.advancedSettings.visualization.tileMap.maxPrecision.cellDimensionsLinkText": "ディメンションの説明",
@@ -2175,8 +2175,8 @@
"kbn.advancedSettings.visualization.tileMap.wmsDefaults.propertiesLinkText": "プロパティ",
"kbn.advancedSettings.visualization.tileMap.wmsDefaultsText": "座標マップの WMS マップサーバーサポートのデフォルトの {propertiesLink} です。",
"kbn.advancedSettings.visualization.tileMap.wmsDefaultsTitle": "デフォルトの WMS プロパティ",
- "kbn.advancedSettings.visualizeEnableLabsText": "ユーザーが実験的なビジュアライゼーションを作成、表示、編集できるようになります。無効の場合、\n ユーザーは本番準備が整ったビジュアライゼーションのみを利用できます。",
- "kbn.advancedSettings.visualizeEnableLabsTitle": "実験的なビジュアライゼーションを有効にする",
+ "visualizations.advancedSettings.visualizeEnableLabsText": "ユーザーが実験的なビジュアライゼーションを作成、表示、編集できるようになります。無効の場合、\n ユーザーは本番準備が整ったビジュアライゼーションのみを利用できます。",
+ "visualizations.advancedSettings.visualizeEnableLabsTitle": "実験的なビジュアライゼーションを有効にする",
"kibana_legacy.bigUrlWarningNotificationMessage": "{advancedSettingsLink}で{storeInSessionStorageParam}オプションを有効にするか、オンスクリーンビジュアルを簡素化してください。",
"kibana_legacy.bigUrlWarningNotificationMessage.advancedSettingsLinkText": "高度な設定",
"kibana_legacy.bigUrlWarningNotificationTitle": "URLが大きく、Kibanaの動作が停止する可能性があります",
@@ -3971,14 +3971,14 @@
"xpack.actions.serverSideErrors.unavailableLicenseErrorMessage": "現時点でライセンス情報を入手できないため、アクションタイプ {actionTypeId} は無効です。",
"xpack.actions.serverSideErrors.unavailableLicenseInformationErrorMessage": "グラフを利用できません。現在ライセンス情報が利用できません。",
"xpack.actions.urlWhitelistConfigurationError": "target {field} \"{value}\" は Kibana 構成 xpack.actions.whitelistedHosts にはホワイトリスト化されていません。",
- "xpack.advancedUiActions.components.actionWizard.changeButton": "変更",
- "xpack.advancedUiActions.customizePanelTimeRange.modal.addToPanelButtonTitle": "パネルに追加",
- "xpack.advancedUiActions.customizePanelTimeRange.modal.cancelButtonTitle": "キャンセル",
- "xpack.advancedUiActions.customizePanelTimeRange.modal.optionsMenuForm.panelTitleFormRowLabel": "時間範囲",
- "xpack.advancedUiActions.customizePanelTimeRange.modal.removeButtonTitle": "削除",
- "xpack.advancedUiActions.customizePanelTimeRange.modal.updatePanelTimeRangeButtonTitle": "更新",
- "xpack.advancedUiActions.customizeTimeRange.modal.headerTitle": "パネルの時間範囲のカスタマイズ",
- "xpack.advancedUiActions.customizeTimeRangeMenuItem.displayName": "時間範囲のカスタマイズ",
+ "xpack.uiActionsEnhanced.components.actionWizard.changeButton": "変更",
+ "xpack.uiActionsEnhanced.customizePanelTimeRange.modal.addToPanelButtonTitle": "パネルに追加",
+ "xpack.uiActionsEnhanced.customizePanelTimeRange.modal.cancelButtonTitle": "キャンセル",
+ "xpack.uiActionsEnhanced.customizePanelTimeRange.modal.optionsMenuForm.panelTitleFormRowLabel": "時間範囲",
+ "xpack.uiActionsEnhanced.customizePanelTimeRange.modal.removeButtonTitle": "削除",
+ "xpack.uiActionsEnhanced.customizePanelTimeRange.modal.updatePanelTimeRangeButtonTitle": "更新",
+ "xpack.uiActionsEnhanced.customizeTimeRange.modal.headerTitle": "パネルの時間範囲のカスタマイズ",
+ "xpack.uiActionsEnhanced.customizeTimeRangeMenuItem.displayName": "時間範囲のカスタマイズ",
"xpack.alerts.alertNavigationRegistry.get.missingNavigationError": "「{consumer}」内のアラートタイプ「{alertType}」のナビゲーションは登録されていません。",
"xpack.alerts.alertNavigationRegistry.register.duplicateDefaultError": "「{consumer}」内のデフォルトナビゲーションは既に登録されています。",
"xpack.alerts.alertNavigationRegistry.register.duplicateNavigationError": "「{consumer}」内のアラートタイプ「{alertType}」のナビゲーションは既に登録されています。",
diff --git a/x-pack/plugins/translations/translations/zh-CN.json b/x-pack/plugins/translations/translations/zh-CN.json
index 8c7fe2e0adbde..6992d4004e24e 100644
--- a/x-pack/plugins/translations/translations/zh-CN.json
+++ b/x-pack/plugins/translations/translations/zh-CN.json
@@ -496,6 +496,81 @@
"dashboard.topNave.viewConfigDescription": "取消编辑并切换到仅查看模式",
"dashboard.urlWasRemovedInSixZeroWarningMessage": "6.0 中已移除 url“dashboard/create”。请更新您的书签。",
"dashboard.visitVisualizeAppLinkText": "访问 Visualize 应用",
+ "data.advancedSettings.courier.batchSearchesText": "禁用时,仪表板面板将分别加载,用户离开时或更新查询时,\n 搜索请求将终止。启用时,仪表板面板将一起加载并加载所有数据,\n 搜索将不会终止。",
+ "data.advancedSettings.courier.batchSearchesTextDeprecation": "此设置已过时,将在 Kibana 8.0 中移除。",
+ "data.advancedSettings.courier.batchSearchesTitle": "批处理并发搜索",
+ "data.advancedSettings.courier.customRequestPreference.requestPreferenceLinkText": "请求首选项",
+ "data.advancedSettings.courier.customRequestPreferenceText": "将 “{setRequestReferenceSetting} 设置为 {customSettingValue} 时,将使用 “{requestPreferenceLink}”。",
+ "data.advancedSettings.courier.customRequestPreferenceTitle": "定制请求首选项",
+ "data.advancedSettings.courier.ignoreFilterText": "此配置增强对包含可视化的仪表板访问不同索引的支持。禁用时,将向所有可视化应用所有筛选。启用时,如果可视化的索引不包含筛选字段,则会为该可视化忽略筛选。",
+ "data.advancedSettings.courier.ignoreFilterTitle": "忽略筛选",
+ "data.advancedSettings.courier.maxRequestsText": "控制用于 Kibana 发送的 _msearch 请求的 “{maxRequestsLink}” 设置。设置为 0 可禁用此配置并使用 Elasticsearch 默认值。",
+ "data.advancedSettings.courier.maxRequestsTitle": "最大并发分片请求数",
+ "data.advancedSettings.courier.requestPreferenceCustom": "定制",
+ "data.advancedSettings.courier.requestPreferenceNone": "无",
+ "data.advancedSettings.courier.requestPreferenceSessionId": "会话 ID",
+ "data.advancedSettings.courier.requestPreferenceText": "允许您设置用于处理搜索请求的分片。\n - {sessionId}:仅限在相同分片上执行操作中的所有搜索请求。\n 这有利于在各个请求之间复用分片缓存。
\n - {custom}:允许您定义自己的首选项。\n 使用 courier:customRequestPreference 定制首选项值。
\n - {none}:表示不设置首选项。\n 这可能会提供更佳的性能,因此请求可以在所有分片副本上进行分配。\n 不过,结果可能会不一致,因为不同的分片可能处于不同的刷新状态。
\n
",
+ "data.advancedSettings.courier.requestPreferenceTitle": "请求首选项",
+ "data.advancedSettings.defaultIndexText": "未设置索引时要访问的索引",
+ "data.advancedSettings.defaultIndexTitle": "默认索引",
+ "data.advancedSettings.format.bytesFormat.numeralFormatLinkText": "数值格式",
+ "data.advancedSettings.format.bytesFormatText": "“字节”格式的默认{numeralFormatLink}",
+ "data.advancedSettings.format.bytesFormatTitle": "字节格式",
+ "data.advancedSettings.format.currencyFormat.numeralFormatLinkText": "数值格式",
+ "data.advancedSettings.format.currencyFormatText": "“货币”格式的默认{numeralFormatLink}",
+ "data.advancedSettings.format.currencyFormatTitle": "货币格式",
+ "data.advancedSettings.format.defaultTypeMapText": "要默认用于每个字段类型的格式名称的映射。如果未显式提及字段类型,则将使用{defaultFormat}",
+ "data.advancedSettings.format.defaultTypeMapTitle": "字段类型格式名称",
+ "data.advancedSettings.format.formattingLocale.numeralLanguageLinkText": "数值语言",
+ "data.advancedSettings.format.formattingLocaleText": "{numeralLanguageLink}区域设置",
+ "data.advancedSettings.format.formattingLocaleTitle": "格式区域设置",
+ "data.advancedSettings.format.numberFormat.numeralFormatLinkText": "数值格式",
+ "data.advancedSettings.format.numberFormatText": "“数字”格式的默认{numeralFormatLink}",
+ "data.advancedSettings.format.numberFormatTitle": "数字格式",
+ "data.advancedSettings.format.percentFormat.numeralFormatLinkText": "数值格式",
+ "data.advancedSettings.format.percentFormatText": "“百分比”格式的默认{numeralFormatLink}",
+ "data.advancedSettings.format.percentFormatTitle": "百分比格式",
+ "data.advancedSettings.histogram.barTargetText": "在日期直方图中使用“auto”时尝试生成大约此数目的条形",
+ "data.advancedSettings.histogram.barTargetTitle": "目标条形数",
+ "data.advancedSettings.histogram.maxBarsText": "在日期直方图中不要显示超过该数目的条形",
+ "data.advancedSettings.histogram.maxBarsTitle": "最大条形数",
+ "data.advancedSettings.historyLimitText": "在具有历史记录(例如查询输入)的字段中,显示此数目的最近值",
+ "data.advancedSettings.historyLimitTitle": "历史记录限制",
+ "data.advancedSettings.indexPatternPlaceholderText": "在“管理 > 索引模式 > 创建索引模式”中“索引模式名称”的占位符。",
+ "data.advancedSettings.indexPatternPlaceholderTitle": "索引模式占位符",
+ "data.advancedSettings.pinFiltersText": "筛选是否默认有全局状态(被固定)",
+ "data.advancedSettings.pinFiltersTitle": "默认固定筛选",
+ "data.advancedSettings.query.allowWildcardsText": "设置后,将允许 * 用作查询语句的第一个字符。当前仅在查询栏中启用实验性查询功能时才会应用。要在基本 lucene 查询中禁用前导通配符,请使用“{queryStringOptionsPattern}”。",
+ "data.advancedSettings.query.allowWildcardsTitle": "在查询中允许前导通配符",
+ "data.advancedSettings.query.queryStringOptions.optionsLinkText": "选项",
+ "data.advancedSettings.query.queryStringOptionsText": "lucene 查询字符串解析器的{optionsLink}。只有将“{queryLanguage}”设置为 {luceneLanguage} 时才会使用。",
+ "data.advancedSettings.query.queryStringOptionsTitle": "查询字符串选项",
+ "data.advancedSettings.searchQueryLanguageKql": "KQL",
+ "data.advancedSettings.searchQueryLanguageLucene": "Lucene",
+ "data.advancedSettings.searchQueryLanguageText": "查询栏使用的查询语言。KQL 是专门为 Kibana 打造的新型语言。",
+ "data.advancedSettings.searchQueryLanguageTitle": "查询语言",
+ "data.advancedSettings.shortenFieldsText": "缩短长字段,例如,不显示 foo.bar.baz,而显示 f.b.baz",
+ "data.advancedSettings.shortenFieldsTitle": "缩短字段",
+ "data.advancedSettings.sortOptions.optionsLinkText": "选项",
+ "data.advancedSettings.sortOptionsText": "Elasticsearch 排序参数的{optionsLink}",
+ "data.advancedSettings.sortOptionsTitle": "排序选项",
+ "data.advancedSettings.suggestFilterValuesText": "将此属性设置 false 以阻止筛选编辑器建议字段的值。",
+ "data.advancedSettings.suggestFilterValuesTitle": "筛选编辑器建议值",
+ "data.advancedSettings.timepicker.last15Minutes": "过去 15 分钟",
+ "data.advancedSettings.timepicker.last1Hour": "过去 1 小时",
+ "data.advancedSettings.timepicker.last1Year": "过去 1 年",
+ "data.advancedSettings.timepicker.last24Hours": "过去 24 小时",
+ "data.advancedSettings.timepicker.last30Days": "过去 30 天",
+ "data.advancedSettings.timepicker.last30Minutes": "过去 30 分钟",
+ "data.advancedSettings.timepicker.last7Days": "过去 7 天",
+ "data.advancedSettings.timepicker.last90Days": "过去 90 天",
+ "data.advancedSettings.timepicker.quickRanges.acceptedFormatsLinkText": "接受的格式",
+ "data.advancedSettings.timepicker.quickRangesText": "要在时间选取器的“速选”部分中显示的范围列表。这应该是对象数组,每个对象包含“from”、“to”(请参阅“{acceptedFormatsLink}”)和“display”(要显示的标题)。",
+ "data.advancedSettings.timepicker.quickRangesTitle": "时间筛选速选范围",
+ "data.advancedSettings.timepicker.refreshIntervalDefaultsText": "时间筛选的默认刷新时间间隔",
+ "data.advancedSettings.timepicker.refreshIntervalDefaultsTitle": "时间筛选刷新时间间隔",
+ "data.advancedSettings.timepicker.thisWeek": "本周",
+ "data.advancedSettings.timepicker.today": "今日",
"data.aggTypes.buckets.ranges.rangesFormatMessage": "{gte} {from} 和 {lt} {to}",
"data.common.kql.errors.endOfInputText": "输入结束",
"data.common.kql.errors.fieldNameText": "字段名称",
@@ -2050,25 +2125,10 @@
"inspector.requests.statisticsTabLabel": "统计信息",
"inspector.title": "检查器",
"inspector.view": "视图:{viewName}",
- "kbn.advancedSettings.courier.batchSearchesText": "禁用时,仪表板面板将分别加载,用户离开时或更新查询时,\n 搜索请求将终止。启用时,仪表板面板将一起加载并加载所有数据,\n 搜索将不会终止。",
- "kbn.advancedSettings.courier.batchSearchesTextDeprecation": "此设置已过时,将在 Kibana 8.0 中移除。",
- "kbn.advancedSettings.courier.batchSearchesTitle": "批处理并发搜索",
- "kbn.advancedSettings.courier.customRequestPreference.requestPreferenceLinkText": "请求首选项",
- "kbn.advancedSettings.courier.customRequestPreferenceText": "将 “{setRequestReferenceSetting} 设置为 {customSettingValue} 时,将使用 “{requestPreferenceLink}”。",
- "kbn.advancedSettings.courier.customRequestPreferenceTitle": "定制请求首选项",
- "kbn.advancedSettings.courier.ignoreFilterText": "此配置增强对包含可视化的仪表板访问不同索引的支持。禁用时,将向所有可视化应用所有筛选。启用时,如果可视化的索引不包含筛选字段,则会为该可视化忽略筛选。",
- "kbn.advancedSettings.courier.ignoreFilterTitle": "忽略筛选",
- "kbn.advancedSettings.courier.maxRequestsText": "控制用于 Kibana 发送的 _msearch 请求的 “{maxRequestsLink}” 设置。设置为 0 可禁用此配置并使用 Elasticsearch 默认值。",
- "kbn.advancedSettings.courier.maxRequestsTitle": "最大并发分片请求数",
- "kbn.advancedSettings.courier.requestPreferenceCustom": "定制",
- "kbn.advancedSettings.courier.requestPreferenceNone": "无",
- "kbn.advancedSettings.courier.requestPreferenceSessionId": "会话 ID",
- "kbn.advancedSettings.courier.requestPreferenceText": "允许您设置用于处理搜索请求的分片。\n - {sessionId}:仅限在相同分片上执行操作中的所有搜索请求。\n 这有利于在各个请求之间复用分片缓存。
\n - {custom}:允许您定义自己的首选项。\n 使用 courier:customRequestPreference 定制首选项值。
\n - {none}:表示不设置首选项。\n 这可能会提供更佳的性能,因此请求可以在所有分片副本上进行分配。\n 不过,结果可能会不一致,因为不同的分片可能处于不同的刷新状态。
\n
",
- "kbn.advancedSettings.courier.requestPreferenceTitle": "请求首选项",
- "kbn.advancedSettings.csv.quoteValuesText": "在 csv 导出中是否应使用引号引起值?",
- "kbn.advancedSettings.csv.quoteValuesTitle": "使用引号引起 CSV 值",
- "kbn.advancedSettings.csv.separatorText": "使用此字符串分隔导出的值",
- "kbn.advancedSettings.csv.separatorTitle": "CSV 分隔符",
+ "share.advancedSettings.csv.quoteValuesText": "在 csv 导出中是否应使用引号引起值?",
+ "share.advancedSettings.csv.quoteValuesTitle": "使用引号引起 CSV 值",
+ "share.advancedSettings.csv.separatorText": "使用此字符串分隔导出的值",
+ "share.advancedSettings.csv.separatorTitle": "CSV 分隔符",
"kbn.advancedSettings.darkModeText": "为 Kibana UI 启用深色模式需要刷新页面,才能应用设置。",
"kbn.advancedSettings.darkModeTitle": "深色模式",
"kbn.advancedSettings.dateFormat.dayOfWeekText": "一周从哪一日开始?",
@@ -2084,38 +2144,11 @@
"kbn.advancedSettings.dateNanosFormatText": "用于 Elasticsearch 的 {dateNanosLink} 数据类型",
"kbn.advancedSettings.dateNanosFormatTitle": "纳秒格式的日期",
"kbn.advancedSettings.dateNanosLinkTitle": "date_nanos",
- "kbn.advancedSettings.defaultIndexText": "未设置索引时要访问的索引",
- "kbn.advancedSettings.defaultIndexTitle": "默认索引",
"kbn.advancedSettings.defaultRoute.defaultRouteIsRelativeValidationMessage": "必须是相对 URL。",
"kbn.advancedSettings.defaultRoute.defaultRouteText": "此设置指定打开 Kibana 时的默认路由。您可以使用此设置修改打开 Kibana 时的登陆页面。路由必须是相对 URL。",
"kbn.advancedSettings.defaultRoute.defaultRouteTitle": "默认路由",
"kbn.advancedSettings.disableAnimationsText": "在 Kibana UI 中关闭所有没有必要的动画。刷新页面以应用更改。",
"kbn.advancedSettings.disableAnimationsTitle": "禁用动画",
- "kbn.advancedSettings.format.bytesFormat.numeralFormatLinkText": "数值格式",
- "kbn.advancedSettings.format.bytesFormatText": "“字节”格式的默认{numeralFormatLink}",
- "kbn.advancedSettings.format.bytesFormatTitle": "字节格式",
- "kbn.advancedSettings.format.currencyFormat.numeralFormatLinkText": "数值格式",
- "kbn.advancedSettings.format.currencyFormatText": "“货币”格式的默认{numeralFormatLink}",
- "kbn.advancedSettings.format.currencyFormatTitle": "货币格式",
- "kbn.advancedSettings.format.defaultTypeMapText": "要默认用于每个字段类型的格式名称的映射。如果未显式提及字段类型,则将使用{defaultFormat}",
- "kbn.advancedSettings.format.defaultTypeMapTitle": "字段类型格式名称",
- "kbn.advancedSettings.format.formattingLocale.numeralLanguageLinkText": "数值语言",
- "kbn.advancedSettings.format.formattingLocaleText": "{numeralLanguageLink}区域设置",
- "kbn.advancedSettings.format.formattingLocaleTitle": "格式区域设置",
- "kbn.advancedSettings.format.numberFormat.numeralFormatLinkText": "数值格式",
- "kbn.advancedSettings.format.numberFormatText": "“数字”格式的默认{numeralFormatLink}",
- "kbn.advancedSettings.format.numberFormatTitle": "数字格式",
- "kbn.advancedSettings.format.percentFormat.numeralFormatLinkText": "数值格式",
- "kbn.advancedSettings.format.percentFormatText": "“百分比”格式的默认{numeralFormatLink}",
- "kbn.advancedSettings.format.percentFormatTitle": "百分比格式",
- "kbn.advancedSettings.histogram.barTargetText": "在日期直方图中使用“auto”时尝试生成大约此数目的条形",
- "kbn.advancedSettings.histogram.barTargetTitle": "目标条形数",
- "kbn.advancedSettings.histogram.maxBarsText": "在日期直方图中不要显示超过该数目的条形",
- "kbn.advancedSettings.histogram.maxBarsTitle": "最大条形数",
- "kbn.advancedSettings.historyLimitText": "在具有历史记录(例如查询输入)的字段中,显示此数目的最近值",
- "kbn.advancedSettings.historyLimitTitle": "历史记录限制",
- "kbn.advancedSettings.indexPatternPlaceholderText": "在“管理 > 索引模式 > 创建索引模式”中“索引模式名称”的占位符。",
- "kbn.advancedSettings.indexPatternPlaceholderTitle": "索引模式占位符",
"kbn.advancedSettings.maxCellHeightText": "表中单元格应占用的最大高度。设置为 0 可禁用截短",
"kbn.advancedSettings.maxCellHeightTitle": "最大表单元格高度",
"kbn.advancedSettings.notifications.banner.markdownLinkText": "Markdown 受支持",
@@ -2133,43 +2166,10 @@
"kbn.advancedSettings.pageNavigationLegacy": "旧版",
"kbn.advancedSettings.pageNavigationModern": "现代",
"kbn.advancedSettings.pageNavigationName": "侧边导航样式",
- "kbn.advancedSettings.pinFiltersText": "筛选是否默认有全局状态(被固定)",
- "kbn.advancedSettings.pinFiltersTitle": "默认固定筛选",
- "kbn.advancedSettings.query.allowWildcardsText": "设置后,将允许 * 用作查询语句的第一个字符。当前仅在查询栏中启用实验性查询功能时才会应用。要在基本 lucene 查询中禁用前导通配符,请使用“{queryStringOptionsPattern}”。",
- "kbn.advancedSettings.query.allowWildcardsTitle": "在查询中允许前导通配符",
- "kbn.advancedSettings.query.queryStringOptions.optionsLinkText": "选项",
- "kbn.advancedSettings.query.queryStringOptionsText": "lucene 查询字符串解析器的{optionsLink}。只有将“{queryLanguage}”设置为 {luceneLanguage} 时才会使用。",
- "kbn.advancedSettings.query.queryStringOptionsTitle": "查询字符串选项",
- "kbn.advancedSettings.searchQueryLanguageKql": "KQL",
- "kbn.advancedSettings.searchQueryLanguageLucene": "Lucene",
- "kbn.advancedSettings.searchQueryLanguageText": "查询栏使用的查询语言。KQL 是专门为 Kibana 打造的新型语言。",
- "kbn.advancedSettings.searchQueryLanguageTitle": "查询语言",
- "kbn.advancedSettings.shortenFieldsText": "缩短长字段,例如,不显示 foo.bar.baz,而显示 f.b.baz",
- "kbn.advancedSettings.shortenFieldsTitle": "缩短字段",
- "kbn.advancedSettings.sortOptions.optionsLinkText": "选项",
- "kbn.advancedSettings.sortOptionsText": "Elasticsearch 排序参数的{optionsLink}",
- "kbn.advancedSettings.sortOptionsTitle": "排序选项",
"kbn.advancedSettings.storeUrlText": "URL 有时会变得过长,以使得某些浏览器无法处理。为此,我们正在测试将 URL 的各个组成部分存储在会话存储中是否会有帮助。请告知我们这样做的效果!",
"kbn.advancedSettings.storeUrlTitle": "将 URL 存储在会话存储中",
- "kbn.advancedSettings.suggestFilterValuesText": "将此属性设置 false 以阻止筛选编辑器建议字段的值。",
- "kbn.advancedSettings.suggestFilterValuesTitle": "筛选编辑器建议值",
- "kbn.advancedSettings.timepicker.last15Minutes": "过去 15 分钟",
- "kbn.advancedSettings.timepicker.last1Hour": "过去 1 小时",
- "kbn.advancedSettings.timepicker.last1Year": "过去 1 年",
- "kbn.advancedSettings.timepicker.last24Hours": "过去 24 小时",
- "kbn.advancedSettings.timepicker.last30Days": "过去 30 天",
- "kbn.advancedSettings.timepicker.last30Minutes": "过去 30 分钟",
- "kbn.advancedSettings.timepicker.last7Days": "过去 7 天",
- "kbn.advancedSettings.timepicker.last90Days": "过去 90 天",
- "kbn.advancedSettings.timepicker.quickRanges.acceptedFormatsLinkText": "接受的格式",
- "kbn.advancedSettings.timepicker.quickRangesText": "要在时间选取器的“速选”部分中显示的范围列表。这应该是对象数组,每个对象包含“from”、“to”(请参阅“{acceptedFormatsLink}”)和“display”(要显示的标题)。",
- "kbn.advancedSettings.timepicker.quickRangesTitle": "时间筛选速选范围",
- "kbn.advancedSettings.timepicker.refreshIntervalDefaultsText": "时间筛选的默认刷新时间间隔",
- "kbn.advancedSettings.timepicker.refreshIntervalDefaultsTitle": "时间筛选刷新时间间隔",
- "kbn.advancedSettings.timepicker.thisWeek": "本周",
"kbn.advancedSettings.timepicker.timeDefaultsText": "未使用时间筛选启动 Kibana 时要使用的时间筛选选择",
"kbn.advancedSettings.timepicker.timeDefaultsTitle": "时间筛选默认值",
- "kbn.advancedSettings.timepicker.today": "今日",
"kbn.advancedSettings.visualization.showRegionMapWarningsText": "词无法联接到地图上的形状时,区域地图是否显示警告。",
"kbn.advancedSettings.visualization.showRegionMapWarningsTitle": "显示区域地图警告",
"kbn.advancedSettings.visualization.tileMap.maxPrecision.cellDimensionsLinkText": "单元格维度的解释",
@@ -2178,8 +2178,8 @@
"kbn.advancedSettings.visualization.tileMap.wmsDefaults.propertiesLinkText": "属性",
"kbn.advancedSettings.visualization.tileMap.wmsDefaultsText": "坐标地图中 WMS 地图服务器支持的默认{propertiesLink}",
"kbn.advancedSettings.visualization.tileMap.wmsDefaultsTitle": "默认 WMS 属性",
- "kbn.advancedSettings.visualizeEnableLabsText": "允许用户创建、查看和编辑实验性可视化。如果禁用,\n 仅被视为生产就绪的可视化可供用户使用。",
- "kbn.advancedSettings.visualizeEnableLabsTitle": "启用实验性可视化",
+ "visualizations.advancedSettings.visualizeEnableLabsText": "允许用户创建、查看和编辑实验性可视化。如果禁用,\n 仅被视为生产就绪的可视化可供用户使用。",
+ "visualizations.advancedSettings.visualizeEnableLabsTitle": "启用实验性可视化",
"kibana_legacy.bigUrlWarningNotificationMessage": "在{advancedSettingsLink}中启用“{storeInSessionStorageParam}”选项或简化屏幕视觉效果。",
"kibana_legacy.bigUrlWarningNotificationMessage.advancedSettingsLinkText": "高级设置",
"kibana_legacy.bigUrlWarningNotificationTitle": "URL 过长,Kibana 可能无法工作",
@@ -3974,14 +3974,14 @@
"xpack.actions.serverSideErrors.unavailableLicenseErrorMessage": "操作类型 {actionTypeId} 已禁用,因为许可证信息当前不可用。",
"xpack.actions.serverSideErrors.unavailableLicenseInformationErrorMessage": "操作不可用 - 许可信息当前不可用。",
"xpack.actions.urlWhitelistConfigurationError": "目标 {field}“{value}”在 Kibana 配置 xpack.actions.whitelistedHosts 中未列入白名单",
- "xpack.advancedUiActions.components.actionWizard.changeButton": "更改",
- "xpack.advancedUiActions.customizePanelTimeRange.modal.addToPanelButtonTitle": "添加到面板",
- "xpack.advancedUiActions.customizePanelTimeRange.modal.cancelButtonTitle": "取消",
- "xpack.advancedUiActions.customizePanelTimeRange.modal.optionsMenuForm.panelTitleFormRowLabel": "时间范围",
- "xpack.advancedUiActions.customizePanelTimeRange.modal.removeButtonTitle": "删除",
- "xpack.advancedUiActions.customizePanelTimeRange.modal.updatePanelTimeRangeButtonTitle": "更新",
- "xpack.advancedUiActions.customizeTimeRange.modal.headerTitle": "定制面板时间范围",
- "xpack.advancedUiActions.customizeTimeRangeMenuItem.displayName": "定制时间范围",
+ "xpack.uiActionsEnhanced.components.actionWizard.changeButton": "更改",
+ "xpack.uiActionsEnhanced.customizePanelTimeRange.modal.addToPanelButtonTitle": "添加到面板",
+ "xpack.uiActionsEnhanced.customizePanelTimeRange.modal.cancelButtonTitle": "取消",
+ "xpack.uiActionsEnhanced.customizePanelTimeRange.modal.optionsMenuForm.panelTitleFormRowLabel": "时间范围",
+ "xpack.uiActionsEnhanced.customizePanelTimeRange.modal.removeButtonTitle": "删除",
+ "xpack.uiActionsEnhanced.customizePanelTimeRange.modal.updatePanelTimeRangeButtonTitle": "更新",
+ "xpack.uiActionsEnhanced.customizeTimeRange.modal.headerTitle": "定制面板时间范围",
+ "xpack.uiActionsEnhanced.customizeTimeRangeMenuItem.displayName": "定制时间范围",
"xpack.alerts.alertNavigationRegistry.get.missingNavigationError": "在“{consumer}”内针对告警类型“{alertType}”的导航未注册。",
"xpack.alerts.alertNavigationRegistry.register.duplicateDefaultError": "“{consumer}”内的默认导航已注册。",
"xpack.alerts.alertNavigationRegistry.register.duplicateNavigationError": "在“{consumer}”内针对告警类型“{alertType}”的导航已注册。",
diff --git a/x-pack/plugins/advanced_ui_actions/kibana.json b/x-pack/plugins/ui_actions_enhanced/kibana.json
similarity index 60%
rename from x-pack/plugins/advanced_ui_actions/kibana.json
rename to x-pack/plugins/ui_actions_enhanced/kibana.json
index 45907e2d8b602..027004f165c3b 100644
--- a/x-pack/plugins/advanced_ui_actions/kibana.json
+++ b/x-pack/plugins/ui_actions_enhanced/kibana.json
@@ -1,7 +1,7 @@
{
- "id": "advancedUiActions",
+ "id": "uiActionsEnhanced",
"version": "kibana",
- "configPath": ["xpack", "advanced_ui_actions"],
+ "configPath": ["xpack", "ui_actions_enhanced"],
"requiredPlugins": [
"embeddable",
"uiActions"
diff --git a/x-pack/plugins/advanced_ui_actions/public/can_inherit_time_range.test.ts b/x-pack/plugins/ui_actions_enhanced/public/can_inherit_time_range.test.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/can_inherit_time_range.test.ts
rename to x-pack/plugins/ui_actions_enhanced/public/can_inherit_time_range.test.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/can_inherit_time_range.ts b/x-pack/plugins/ui_actions_enhanced/public/can_inherit_time_range.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/can_inherit_time_range.ts
rename to x-pack/plugins/ui_actions_enhanced/public/can_inherit_time_range.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/components/action_wizard/action_wizard.scss b/x-pack/plugins/ui_actions_enhanced/public/components/action_wizard/action_wizard.scss
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/components/action_wizard/action_wizard.scss
rename to x-pack/plugins/ui_actions_enhanced/public/components/action_wizard/action_wizard.scss
diff --git a/x-pack/plugins/advanced_ui_actions/public/components/action_wizard/action_wizard.story.tsx b/x-pack/plugins/ui_actions_enhanced/public/components/action_wizard/action_wizard.story.tsx
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/components/action_wizard/action_wizard.story.tsx
rename to x-pack/plugins/ui_actions_enhanced/public/components/action_wizard/action_wizard.story.tsx
diff --git a/x-pack/plugins/advanced_ui_actions/public/components/action_wizard/action_wizard.test.tsx b/x-pack/plugins/ui_actions_enhanced/public/components/action_wizard/action_wizard.test.tsx
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/components/action_wizard/action_wizard.test.tsx
rename to x-pack/plugins/ui_actions_enhanced/public/components/action_wizard/action_wizard.test.tsx
diff --git a/x-pack/plugins/advanced_ui_actions/public/components/action_wizard/action_wizard.tsx b/x-pack/plugins/ui_actions_enhanced/public/components/action_wizard/action_wizard.tsx
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/components/action_wizard/action_wizard.tsx
rename to x-pack/plugins/ui_actions_enhanced/public/components/action_wizard/action_wizard.tsx
diff --git a/x-pack/plugins/advanced_ui_actions/public/components/action_wizard/i18n.ts b/x-pack/plugins/ui_actions_enhanced/public/components/action_wizard/i18n.ts
similarity index 85%
rename from x-pack/plugins/advanced_ui_actions/public/components/action_wizard/i18n.ts
rename to x-pack/plugins/ui_actions_enhanced/public/components/action_wizard/i18n.ts
index a315184bf68ef..3e7e211dc7738 100644
--- a/x-pack/plugins/advanced_ui_actions/public/components/action_wizard/i18n.ts
+++ b/x-pack/plugins/ui_actions_enhanced/public/components/action_wizard/i18n.ts
@@ -7,7 +7,7 @@
import { i18n } from '@kbn/i18n';
export const txtChangeButton = i18n.translate(
- 'xpack.advancedUiActions.components.actionWizard.changeButton',
+ 'xpack.uiActionsEnhanced.components.actionWizard.changeButton',
{
defaultMessage: 'Change',
}
diff --git a/x-pack/plugins/advanced_ui_actions/public/components/action_wizard/index.ts b/x-pack/plugins/ui_actions_enhanced/public/components/action_wizard/index.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/components/action_wizard/index.ts
rename to x-pack/plugins/ui_actions_enhanced/public/components/action_wizard/index.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/components/action_wizard/test_data.tsx b/x-pack/plugins/ui_actions_enhanced/public/components/action_wizard/test_data.tsx
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/components/action_wizard/test_data.tsx
rename to x-pack/plugins/ui_actions_enhanced/public/components/action_wizard/test_data.tsx
diff --git a/x-pack/plugins/advanced_ui_actions/public/components/index.ts b/x-pack/plugins/ui_actions_enhanced/public/components/index.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/components/index.ts
rename to x-pack/plugins/ui_actions_enhanced/public/components/index.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/custom_time_range_action.test.ts b/x-pack/plugins/ui_actions_enhanced/public/custom_time_range_action.test.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/custom_time_range_action.test.ts
rename to x-pack/plugins/ui_actions_enhanced/public/custom_time_range_action.test.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/custom_time_range_action.tsx b/x-pack/plugins/ui_actions_enhanced/public/custom_time_range_action.tsx
similarity index 98%
rename from x-pack/plugins/advanced_ui_actions/public/custom_time_range_action.tsx
rename to x-pack/plugins/ui_actions_enhanced/public/custom_time_range_action.tsx
index c0cd8d5540db2..4da4d648bc0ec 100644
--- a/x-pack/plugins/advanced_ui_actions/public/custom_time_range_action.tsx
+++ b/x-pack/plugins/ui_actions_enhanced/public/custom_time_range_action.tsx
@@ -61,7 +61,7 @@ export class CustomTimeRangeAction implements ActionByType
- {i18n.translate('xpack.advancedUiActions.customizeTimeRange.modal.headerTitle', {
+ {i18n.translate('xpack.uiActionsEnhanced.customizeTimeRange.modal.headerTitle', {
defaultMessage: 'Customize panel time range',
})}
@@ -104,7 +104,7 @@ export class CustomizeTimeRangeModal extends Component
{i18n.translate(
- 'xpack.advancedUiActions.customizePanelTimeRange.modal.removeButtonTitle',
+ 'xpack.uiActionsEnhanced.customizePanelTimeRange.modal.removeButtonTitle',
{
defaultMessage: 'Remove',
}
@@ -152,7 +152,7 @@ export class CustomizeTimeRangeModal extends Component
{i18n.translate(
- 'xpack.advancedUiActions.customizePanelTimeRange.modal.cancelButtonTitle',
+ 'xpack.uiActionsEnhanced.customizePanelTimeRange.modal.cancelButtonTitle',
{
defaultMessage: 'Cancel',
}
@@ -163,13 +163,13 @@ export class CustomizeTimeRangeModal extends Component
{this.state.inheritTimeRange
? i18n.translate(
- 'xpack.advancedUiActions.customizePanelTimeRange.modal.addToPanelButtonTitle',
+ 'xpack.uiActionsEnhanced.customizePanelTimeRange.modal.addToPanelButtonTitle',
{
defaultMessage: 'Add to panel',
}
)
: i18n.translate(
- 'xpack.advancedUiActions.customizePanelTimeRange.modal.updatePanelTimeRangeButtonTitle',
+ 'xpack.uiActionsEnhanced.customizePanelTimeRange.modal.updatePanelTimeRangeButtonTitle',
{
defaultMessage: 'Update',
}
diff --git a/x-pack/plugins/advanced_ui_actions/public/does_inherit_time_range.ts b/x-pack/plugins/ui_actions_enhanced/public/does_inherit_time_range.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/does_inherit_time_range.ts
rename to x-pack/plugins/ui_actions_enhanced/public/does_inherit_time_range.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/drilldowns/drilldown_definition.ts b/x-pack/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/drilldowns/drilldown_definition.ts
rename to x-pack/plugins/ui_actions_enhanced/public/drilldowns/drilldown_definition.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/drilldowns/index.ts b/x-pack/plugins/ui_actions_enhanced/public/drilldowns/index.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/drilldowns/index.ts
rename to x-pack/plugins/ui_actions_enhanced/public/drilldowns/index.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/dynamic_actions/action_factory.ts b/x-pack/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/dynamic_actions/action_factory.ts
rename to x-pack/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/dynamic_actions/action_factory_definition.ts b/x-pack/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory_definition.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/dynamic_actions/action_factory_definition.ts
rename to x-pack/plugins/ui_actions_enhanced/public/dynamic_actions/action_factory_definition.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/dynamic_actions/dynamic_action_manager.test.ts b/x-pack/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.test.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/dynamic_actions/dynamic_action_manager.test.ts
rename to x-pack/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.test.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/dynamic_actions/dynamic_action_manager.ts b/x-pack/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/dynamic_actions/dynamic_action_manager.ts
rename to x-pack/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/dynamic_actions/dynamic_action_manager_state.ts b/x-pack/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager_state.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/dynamic_actions/dynamic_action_manager_state.ts
rename to x-pack/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_manager_state.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/dynamic_actions/dynamic_action_storage.ts b/x-pack/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/dynamic_actions/dynamic_action_storage.ts
rename to x-pack/plugins/ui_actions_enhanced/public/dynamic_actions/dynamic_action_storage.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/dynamic_actions/index.ts b/x-pack/plugins/ui_actions_enhanced/public/dynamic_actions/index.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/dynamic_actions/index.ts
rename to x-pack/plugins/ui_actions_enhanced/public/dynamic_actions/index.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/dynamic_actions/types.ts b/x-pack/plugins/ui_actions_enhanced/public/dynamic_actions/types.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/dynamic_actions/types.ts
rename to x-pack/plugins/ui_actions_enhanced/public/dynamic_actions/types.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/index.ts b/x-pack/plugins/ui_actions_enhanced/public/index.ts
similarity index 91%
rename from x-pack/plugins/advanced_ui_actions/public/index.ts
rename to x-pack/plugins/ui_actions_enhanced/public/index.ts
index 024cfe5530b97..a3cfddb31d663 100644
--- a/x-pack/plugins/advanced_ui_actions/public/index.ts
+++ b/x-pack/plugins/ui_actions_enhanced/public/index.ts
@@ -19,8 +19,8 @@ export {
export { ActionWizard } from './components';
export {
- ActionFactoryDefinition as AdvancedUiActionsActionFactoryDefinition,
- ActionFactory as AdvancedUiActionsActionFactory,
+ ActionFactoryDefinition as UiActionsEnhancedActionFactoryDefinition,
+ ActionFactory as UiActionsEnhancedActionFactory,
SerializedAction as UiActionsEnhancedSerializedAction,
SerializedEvent as UiActionsEnhancedSerializedEvent,
AbstractActionStorage as UiActionsEnhancedAbstractActionStorage,
diff --git a/x-pack/plugins/advanced_ui_actions/public/mocks.ts b/x-pack/plugins/ui_actions_enhanced/public/mocks.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/mocks.ts
rename to x-pack/plugins/ui_actions_enhanced/public/mocks.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/plugin.ts b/x-pack/plugins/ui_actions_enhanced/public/plugin.ts
similarity index 93%
rename from x-pack/plugins/advanced_ui_actions/public/plugin.ts
rename to x-pack/plugins/ui_actions_enhanced/public/plugin.ts
index f042130158aec..d79996d5ecc1b 100644
--- a/x-pack/plugins/advanced_ui_actions/public/plugin.ts
+++ b/x-pack/plugins/ui_actions_enhanced/public/plugin.ts
@@ -11,6 +11,7 @@ import {
Plugin,
} from '../../../../src/core/public';
import { createReactOverlays } from '../../../../src/plugins/kibana_react/public';
+import { UI_SETTINGS } from '../../../../src/plugins/data/public';
import { UiActionsSetup, UiActionsStart } from '../../../../src/plugins/ui_actions/public';
import {
CONTEXT_MENU_TRIGGER,
@@ -72,7 +73,9 @@ export class AdvancedUiActionsPublicPlugin
public start(core: CoreStart, { uiActions }: StartDependencies): StartContract {
const dateFormat = core.uiSettings.get('dateFormat') as string;
- const commonlyUsedRanges = core.uiSettings.get('timepicker:quickRanges') as CommonlyUsedRange[];
+ const commonlyUsedRanges = core.uiSettings.get(
+ UI_SETTINGS.TIMEPICKER_QUICK_RANGES
+ ) as CommonlyUsedRange[];
const { openModal } = createReactOverlays(core);
const timeRangeAction = new CustomTimeRangeAction({
openModal,
diff --git a/x-pack/plugins/advanced_ui_actions/public/services/index.ts b/x-pack/plugins/ui_actions_enhanced/public/services/index.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/services/index.ts
rename to x-pack/plugins/ui_actions_enhanced/public/services/index.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/services/ui_actions_service_enhancements.test.ts b/x-pack/plugins/ui_actions_enhanced/public/services/ui_actions_service_enhancements.test.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/services/ui_actions_service_enhancements.test.ts
rename to x-pack/plugins/ui_actions_enhanced/public/services/ui_actions_service_enhancements.test.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/services/ui_actions_service_enhancements.ts b/x-pack/plugins/ui_actions_enhanced/public/services/ui_actions_service_enhancements.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/services/ui_actions_service_enhancements.ts
rename to x-pack/plugins/ui_actions_enhanced/public/services/ui_actions_service_enhancements.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/test_helpers/index.ts b/x-pack/plugins/ui_actions_enhanced/public/test_helpers/index.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/test_helpers/index.ts
rename to x-pack/plugins/ui_actions_enhanced/public/test_helpers/index.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/test_helpers/time_range_container.ts b/x-pack/plugins/ui_actions_enhanced/public/test_helpers/time_range_container.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/test_helpers/time_range_container.ts
rename to x-pack/plugins/ui_actions_enhanced/public/test_helpers/time_range_container.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/test_helpers/time_range_embeddable.ts b/x-pack/plugins/ui_actions_enhanced/public/test_helpers/time_range_embeddable.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/test_helpers/time_range_embeddable.ts
rename to x-pack/plugins/ui_actions_enhanced/public/test_helpers/time_range_embeddable.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/test_helpers/time_range_embeddable_factory.ts b/x-pack/plugins/ui_actions_enhanced/public/test_helpers/time_range_embeddable_factory.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/test_helpers/time_range_embeddable_factory.ts
rename to x-pack/plugins/ui_actions_enhanced/public/test_helpers/time_range_embeddable_factory.ts
diff --git a/x-pack/plugins/advanced_ui_actions/public/types.ts b/x-pack/plugins/ui_actions_enhanced/public/types.ts
similarity index 100%
rename from x-pack/plugins/advanced_ui_actions/public/types.ts
rename to x-pack/plugins/ui_actions_enhanced/public/types.ts
diff --git a/x-pack/plugins/advanced_ui_actions/scripts/storybook.js b/x-pack/plugins/ui_actions_enhanced/scripts/storybook.js
similarity index 93%
rename from x-pack/plugins/advanced_ui_actions/scripts/storybook.js
rename to x-pack/plugins/ui_actions_enhanced/scripts/storybook.js
index 3da0a3b37bfaf..2a192fc56469e 100644
--- a/x-pack/plugins/advanced_ui_actions/scripts/storybook.js
+++ b/x-pack/plugins/ui_actions_enhanced/scripts/storybook.js
@@ -8,6 +8,6 @@ import { join } from 'path';
// eslint-disable-next-line
require('@kbn/storybook').runStorybookCli({
- name: 'advanced_ui_actions',
+ name: 'ui_actions_enhanced',
storyGlobs: [join(__dirname, '..', 'public', 'components', '**', '*.story.tsx')],
});
diff --git a/x-pack/plugins/uptime/README.md b/x-pack/plugins/uptime/README.md
index 10c1fc0edcd00..54bf48e8d3c86 100644
--- a/x-pack/plugins/uptime/README.md
+++ b/x-pack/plugins/uptime/README.md
@@ -55,7 +55,7 @@ In another shell, from **~kibana/x-pack**:
#### API tests
If instead you need to run API tests, start up the test server and then in another shell, from **~kibana/x-pack**:
-`node ../scripts/functional_test_runner.js --config test/api_integration/config.js --grep="{TEST_NAME}"`.
+`node ../scripts/functional_test_runner.js --config test/api_integration/config.ts --grep="{TEST_NAME}"`.
You can update snapshots by prefixing the runner command with `env UPDATE_UPTIME_FIXTURES=1`
diff --git a/x-pack/plugins/uptime/public/apps/plugin.ts b/x-pack/plugins/uptime/public/apps/plugin.ts
index 5d9bbacb49006..d3a67f81004da 100644
--- a/x-pack/plugins/uptime/public/apps/plugin.ts
+++ b/x-pack/plugins/uptime/public/apps/plugin.ts
@@ -56,7 +56,7 @@ export class UptimePlugin
appRoute: '/app/uptime#/',
id: PLUGIN.ID,
euiIconType: 'uptimeApp',
- order: 8900,
+ order: 8400,
title: PLUGIN.TITLE,
category: DEFAULT_APP_CATEGORIES.observability,
mount: async (params: AppMountParameters) => {
diff --git a/x-pack/plugins/watcher/public/legacy/time_buckets.js b/x-pack/plugins/watcher/public/legacy/time_buckets.js
index c1674bc68ab42..9df254d2bb1e6 100644
--- a/x-pack/plugins/watcher/public/legacy/time_buckets.js
+++ b/x-pack/plugins/watcher/public/legacy/time_buckets.js
@@ -6,7 +6,7 @@
import _ from 'lodash';
import moment from 'moment';
-import { search, FIELD_FORMAT_IDS } from '../../../../../src/plugins/data/public';
+import { search, FIELD_FORMAT_IDS, UI_SETTINGS } from '../../../../../src/plugins/data/public';
import { calcAutoIntervalLessThan, calcAutoIntervalNear } from './calc_auto_interval';
import {
convertDurationToNormalizedEsInterval,
@@ -219,14 +219,14 @@ TimeBuckets.prototype.getInterval = function (useNormalizedEsInterval = true) {
function readInterval() {
const interval = self._i;
if (moment.isDuration(interval)) return interval;
- return calcAutoIntervalNear(self.getConfig('histogram:barTarget'), Number(duration));
+ return calcAutoIntervalNear(self.getConfig(UI_SETTINGS.HISTOGRAM_BAR_TARGET), Number(duration));
}
// check to see if the interval should be scaled, and scale it if so
function maybeScaleInterval(interval) {
if (!self.hasBounds()) return interval;
- const maxLength = self.getConfig('histogram:maxBars');
+ const maxLength = self.getConfig(UI_SETTINGS.HISTOGRAM_MAX_BARS);
const approxLen = duration / interval;
let scaled;
diff --git a/x-pack/scripts/functional_tests.js b/x-pack/scripts/functional_tests.js
index fc78e1b80bc68..4392299a78e72 100644
--- a/x-pack/scripts/functional_tests.js
+++ b/x-pack/scripts/functional_tests.js
@@ -11,8 +11,9 @@ const alwaysImportedTests = [
require.resolve('../test/functional/config_security_trial.ts'),
];
const onlyNotInCoverageTests = [
- require.resolve('../test/api_integration/config_security_basic.js'),
- require.resolve('../test/api_integration/config.js'),
+ require.resolve('../test/api_integration/config_security_basic.ts'),
+ require.resolve('../test/api_integration/config_security_trial.ts'),
+ require.resolve('../test/api_integration/config.ts'),
require.resolve('../test/alerting_api_integration/basic/config.ts'),
require.resolve('../test/alerting_api_integration/spaces_only/config.ts'),
require.resolve('../test/alerting_api_integration/security_and_spaces/config.ts'),
diff --git a/x-pack/test/alerting_api_integration/common/config.ts b/x-pack/test/alerting_api_integration/common/config.ts
index e6b9c0bf5409f..19aee29e9b36d 100644
--- a/x-pack/test/alerting_api_integration/common/config.ts
+++ b/x-pack/test/alerting_api_integration/common/config.ts
@@ -40,7 +40,7 @@ export function createTestConfig(name: string, options: CreateTestConfigOptions)
return async ({ readConfigFile }: FtrConfigProviderContext) => {
const xPackApiIntegrationTestsConfig = await readConfigFile(
- require.resolve('../../api_integration/config.js')
+ require.resolve('../../api_integration/config.ts')
);
const servers = {
...xPackApiIntegrationTestsConfig.get('servers'),
diff --git a/x-pack/test/api_integration/apis/management/advanced_settings/feature_controls.ts b/x-pack/test/api_integration/apis/management/advanced_settings/feature_controls.ts
index 80ffc8fd36e49..77e23bd74cc22 100644
--- a/x-pack/test/api_integration/apis/management/advanced_settings/feature_controls.ts
+++ b/x-pack/test/api_integration/apis/management/advanced_settings/feature_controls.ts
@@ -7,6 +7,7 @@
import expect from '@kbn/expect';
import { SuperTest } from 'supertest';
import { FtrProviderContext } from '../../../ftr_provider_context';
+import { CSV_QUOTE_VALUES_SETTING } from '../../../../../../src/plugins/share/common/constants';
export default function featureControlsTests({ getService }: FtrProviderContext) {
const supertest: SuperTest = getService('supertestWithoutAuth');
@@ -32,7 +33,7 @@ export default function featureControlsTests({ getService }: FtrProviderContext)
.post(`${basePath}/api/kibana/settings`)
.auth(username, password)
.set('kbn-xsrf', 'foo')
- .send({ changes: { 'csv:quoteValues': null } })
+ .send({ changes: { [CSV_QUOTE_VALUES_SETTING]: null } })
.then((response: any) => ({ error: undefined, response }))
.catch((error: any) => ({ error, response: undefined }));
}
diff --git a/x-pack/test/api_integration/apis/security/license_downgrade.ts b/x-pack/test/api_integration/apis/security/license_downgrade.ts
new file mode 100644
index 0000000000000..1811f99977b60
--- /dev/null
+++ b/x-pack/test/api_integration/apis/security/license_downgrade.ts
@@ -0,0 +1,56 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License;
+ * you may not use this file except in compliance with the Elastic License.
+ */
+
+import expect from '@kbn/expect/expect.js';
+import { FtrProviderContext } from '../../ftr_provider_context';
+
+export default function ({ getService }: FtrProviderContext) {
+ const supertest = getService('supertest');
+
+ describe('Privileges registration', function () {
+ this.tags(['skipCloud']);
+
+ it('privileges are re-registered on license downgrade', async () => {
+ // Verify currently registered privileges for TRIAL license.
+ // If you're adding a privilege to the following, that's great!
+ // If you're removing a privilege, this breaks backwards compatibility
+ // Roles are associated with these privileges, and we shouldn't be removing them in a minor version.
+ const expectedTrialLicenseDiscoverPrivileges = [
+ 'all',
+ 'read',
+ 'minimal_all',
+ 'minimal_read',
+ 'url_create',
+ ];
+ const trialPrivileges = await supertest
+ .get('/api/security/privileges')
+ .set('kbn-xsrf', 'xxx')
+ .send()
+ .expect(200);
+
+ expect(trialPrivileges.body.features.discover).to.eql(expectedTrialLicenseDiscoverPrivileges);
+
+ // Revert license to basic.
+ await supertest
+ .post('/api/license/start_basic?acknowledge=true')
+ .set('kbn-xsrf', 'xxx')
+ .expect(200, {
+ basic_was_started: true,
+ acknowledged: true,
+ });
+
+ // Verify that privileges were re-registered.
+ const expectedBasicLicenseDiscoverPrivileges = ['all', 'read'];
+ const basicPrivileges = await supertest
+ .get('/api/security/privileges')
+ .set('kbn-xsrf', 'xxx')
+ .send()
+ .expect(200);
+
+ expect(basicPrivileges.body.features.discover).to.eql(expectedBasicLicenseDiscoverPrivileges);
+ });
+ });
+}
diff --git a/x-pack/test/api_integration/apis/security/security_trial.ts b/x-pack/test/api_integration/apis/security/security_trial.ts
new file mode 100644
index 0000000000000..c646fecc1909f
--- /dev/null
+++ b/x-pack/test/api_integration/apis/security/security_trial.ts
@@ -0,0 +1,16 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License;
+ * you may not use this file except in compliance with the Elastic License.
+ */
+
+import { FtrProviderContext } from '../../ftr_provider_context';
+
+export default function ({ loadTestFile }: FtrProviderContext) {
+ describe('security (trial license)', function () {
+ this.tags('ciGroup6');
+
+ // THIS TEST NEEDS TO BE LAST. IT IS DESTRUCTIVE! IT REMOVES TRIAL LICENSE!!!
+ loadTestFile(require.resolve('./license_downgrade'));
+ });
+}
diff --git a/x-pack/test/api_integration/config.js b/x-pack/test/api_integration/config.ts
similarity index 94%
rename from x-pack/test/api_integration/config.js
rename to x-pack/test/api_integration/config.ts
index 2e6e25aaebff0..71da903d33b29 100644
--- a/x-pack/test/api_integration/config.js
+++ b/x-pack/test/api_integration/config.ts
@@ -4,9 +4,10 @@
* you may not use this file except in compliance with the Elastic License.
*/
+import { FtrConfigProviderContext } from '@kbn/test/types/ftr';
import { services } from './services';
-export async function getApiIntegrationConfig({ readConfigFile }) {
+export async function getApiIntegrationConfig({ readConfigFile }: FtrConfigProviderContext) {
const xPackFunctionalTestsConfig = await readConfigFile(
require.resolve('../functional/config.js')
);
diff --git a/x-pack/test/api_integration/config_security_basic.js b/x-pack/test/api_integration/config_security_basic.ts
similarity index 67%
rename from x-pack/test/api_integration/config_security_basic.js
rename to x-pack/test/api_integration/config_security_basic.ts
index 713045e8c4d3c..8489940505686 100644
--- a/x-pack/test/api_integration/config_security_basic.js
+++ b/x-pack/test/api_integration/config_security_basic.ts
@@ -4,11 +4,14 @@
* you may not use this file except in compliance with the Elastic License.
*/
+/* eslint-disable import/no-default-export */
+
+import { FtrConfigProviderContext } from '@kbn/test/types/ftr';
import { default as createTestConfig } from './config';
-export default async function ({ readConfigFile }) {
- //security APIs should function the same under a basic or trial license
- return createTestConfig({ readConfigFile }).then((config) => {
+export default async function (context: FtrConfigProviderContext) {
+ // security APIs should function the same under a basic or trial license
+ return createTestConfig(context).then((config) => {
config.esTestCluster.license = 'basic';
config.esTestCluster.serverArgs = [
'xpack.license.self_generated.type=basic',
diff --git a/x-pack/test/api_integration/config_security_trial.ts b/x-pack/test/api_integration/config_security_trial.ts
new file mode 100644
index 0000000000000..4c1e2913b987c
--- /dev/null
+++ b/x-pack/test/api_integration/config_security_trial.ts
@@ -0,0 +1,17 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License;
+ * you may not use this file except in compliance with the Elastic License.
+ */
+
+/* eslint-disable import/no-default-export */
+
+import { FtrConfigProviderContext } from '@kbn/test/types/ftr';
+import { default as createTestConfig } from './config';
+
+export default async function (context: FtrConfigProviderContext) {
+ return createTestConfig(context).then((config) => {
+ config.testFiles = [require.resolve('./apis/security/security_trial')];
+ return config;
+ });
+}
diff --git a/x-pack/test/apm_api_integration/common/config.ts b/x-pack/test/apm_api_integration/common/config.ts
index 9e011a98bbfcd..83dc597829a3c 100644
--- a/x-pack/test/apm_api_integration/common/config.ts
+++ b/x-pack/test/apm_api_integration/common/config.ts
@@ -17,7 +17,7 @@ export function createTestConfig(settings: Settings) {
return async ({ readConfigFile }: FtrConfigProviderContext) => {
const xPackAPITestsConfig = await readConfigFile(
- require.resolve('../../api_integration/config.js')
+ require.resolve('../../api_integration/config.ts')
);
return {
diff --git a/x-pack/test/case_api_integration/common/config.ts b/x-pack/test/case_api_integration/common/config.ts
index 45b34b7d26940..098d94f35d9ca 100644
--- a/x-pack/test/case_api_integration/common/config.ts
+++ b/x-pack/test/case_api_integration/common/config.ts
@@ -39,7 +39,7 @@ export function createTestConfig(name: string, options: CreateTestConfigOptions)
return async ({ readConfigFile }: FtrConfigProviderContext) => {
const xPackApiIntegrationTestsConfig = await readConfigFile(
- require.resolve('../../api_integration/config.js')
+ require.resolve('../../api_integration/config.ts')
);
const servers = {
diff --git a/x-pack/test/detection_engine_api_integration/common/config.ts b/x-pack/test/detection_engine_api_integration/common/config.ts
index fa71a263b51a7..6a1add60b19f1 100644
--- a/x-pack/test/detection_engine_api_integration/common/config.ts
+++ b/x-pack/test/detection_engine_api_integration/common/config.ts
@@ -42,7 +42,7 @@ export function createTestConfig(name: string, options: CreateTestConfigOptions)
return async ({ readConfigFile }: FtrConfigProviderContext) => {
const xPackApiIntegrationTestsConfig = await readConfigFile(
- require.resolve('../../api_integration/config.js')
+ require.resolve('../../api_integration/config.ts')
);
const servers = {
...xPackApiIntegrationTestsConfig.get('servers'),
diff --git a/x-pack/test/encrypted_saved_objects_api_integration/config.ts b/x-pack/test/encrypted_saved_objects_api_integration/config.ts
index f4b3091bec234..fb643c2c5a901 100644
--- a/x-pack/test/encrypted_saved_objects_api_integration/config.ts
+++ b/x-pack/test/encrypted_saved_objects_api_integration/config.ts
@@ -9,7 +9,7 @@ import { FtrConfigProviderContext } from '@kbn/test/types/ftr';
import { services } from './services';
export default async function ({ readConfigFile }: FtrConfigProviderContext) {
- const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.js'));
+ const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.ts'));
return {
testFiles: [require.resolve('./tests')],
diff --git a/x-pack/test/endpoint_api_integration_no_ingest/config.ts b/x-pack/test/endpoint_api_integration_no_ingest/config.ts
index 00a65b9fbaec6..0cda1cfaf1433 100644
--- a/x-pack/test/endpoint_api_integration_no_ingest/config.ts
+++ b/x-pack/test/endpoint_api_integration_no_ingest/config.ts
@@ -7,7 +7,7 @@
import { FtrConfigProviderContext } from '@kbn/test/types/ftr';
export default async function ({ readConfigFile }: FtrConfigProviderContext) {
- const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.js'));
+ const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.ts'));
return {
...xPackAPITestsConfig.getAll(),
diff --git a/x-pack/test/epm_api_integration/config.ts b/x-pack/test/epm_api_integration/config.ts
index b77d763313588..6b08c7ec57955 100644
--- a/x-pack/test/epm_api_integration/config.ts
+++ b/x-pack/test/epm_api_integration/config.ts
@@ -7,7 +7,7 @@
import { FtrConfigProviderContext } from '@kbn/test/types/ftr';
export default async function ({ readConfigFile }: FtrConfigProviderContext) {
- const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.js'));
+ const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.ts'));
return {
testFiles: [require.resolve('./apis')],
diff --git a/x-pack/test/functional/apps/advanced_settings/feature_controls/advanced_settings_security.ts b/x-pack/test/functional/apps/advanced_settings/feature_controls/advanced_settings_security.ts
index cbf1f3e1af2df..d1acbf436bbe7 100644
--- a/x-pack/test/functional/apps/advanced_settings/feature_controls/advanced_settings_security.ts
+++ b/x-pack/test/functional/apps/advanced_settings/feature_controls/advanced_settings_security.ts
@@ -69,7 +69,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows management navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Stack Management']);
+ expect(navLinks).to.contain('Stack Management');
});
it(`allows settings to be changed`, async () => {
@@ -125,7 +125,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows Management navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Stack Management']);
+ expect(navLinks).to.contain('Stack Management');
});
it(`does not allow settings to be changed`, async () => {
@@ -140,7 +140,6 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
// FLAKY: https://github.com/elastic/kibana/issues/57377
describe.skip('no advanced_settings privileges', function () {
- this.tags(['skipCoverage']);
before(async () => {
await security.role.create('no_advanced_settings_privileges_role', {
elasticsearch: {
@@ -178,7 +177,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows Management navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Discover', 'Stack Management']);
+ expect(navLinks).to.contain('Stack Management');
});
it(`does not allow navigation to advanced settings; redirects to management home`, async () => {
diff --git a/x-pack/test/functional/apps/advanced_settings/feature_controls/advanced_settings_spaces.ts b/x-pack/test/functional/apps/advanced_settings/feature_controls/advanced_settings_spaces.ts
index f7991e62fdaa9..c8adb3ce67d55 100644
--- a/x-pack/test/functional/apps/advanced_settings/feature_controls/advanced_settings_spaces.ts
+++ b/x-pack/test/functional/apps/advanced_settings/feature_controls/advanced_settings_spaces.ts
@@ -60,7 +60,6 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
});
describe('space with Advanced Settings disabled', function () {
- this.tags('skipCoverage');
before(async () => {
// we need to load the following in every situation as deleting
// a space deletes all of the associated saved objects
diff --git a/x-pack/test/functional/apps/apm/feature_controls/apm_security.ts b/x-pack/test/functional/apps/apm/feature_controls/apm_security.ts
index aa12543004656..4c3c1556d621c 100644
--- a/x-pack/test/functional/apps/apm/feature_controls/apm_security.ts
+++ b/x-pack/test/functional/apps/apm/feature_controls/apm_security.ts
@@ -60,7 +60,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows apm navlink', async () => {
const navLinks = await appsMenu.readLinks();
- expect(navLinks.map((link) => link.text)).to.eql(['APM', 'Stack Management']);
+ expect(navLinks.map((link) => link.text)).to.contain('APM');
});
it('can navigate to APM app', async () => {
@@ -109,7 +109,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows apm navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['APM', 'Stack Management']);
+ expect(navLinks).to.contain('APM');
});
it('can navigate to APM app', async () => {
diff --git a/x-pack/test/functional/apps/canvas/feature_controls/canvas_security.ts b/x-pack/test/functional/apps/canvas/feature_controls/canvas_security.ts
index e9fa4ccf8e48b..b776d358b1673 100644
--- a/x-pack/test/functional/apps/canvas/feature_controls/canvas_security.ts
+++ b/x-pack/test/functional/apps/canvas/feature_controls/canvas_security.ts
@@ -66,7 +66,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows canvas navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Canvas', 'Stack Management']);
+ expect(navLinks).to.contain('Canvas');
});
it(`landing page shows "Create new workpad" button`, async () => {
@@ -142,7 +142,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows canvas navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Canvas', 'Stack Management']);
+ expect(navLinks).to.contain('Canvas');
});
it(`landing page shows disabled "Create new workpad" button`, async () => {
diff --git a/x-pack/test/functional/apps/dashboard/_async_dashboard.ts b/x-pack/test/functional/apps/dashboard/_async_dashboard.ts
index 626ca6add6a3c..b4dfffcdeff57 100644
--- a/x-pack/test/functional/apps/dashboard/_async_dashboard.ts
+++ b/x-pack/test/functional/apps/dashboard/_async_dashboard.ts
@@ -6,6 +6,7 @@
import expect from '@kbn/expect';
import { FtrProviderContext } from '../../ftr_provider_context';
+import { UI_SETTINGS } from '../../../../../src/plugins/data/common';
export default function ({ getService, getPageObjects }: FtrProviderContext) {
const retry = getService('retry');
@@ -95,7 +96,9 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) {
}
]`;
- await kibanaServer.uiSettings.update({ 'timepicker:quickRanges': SAMPLE_DATA_RANGE });
+ await kibanaServer.uiSettings.update({
+ [UI_SETTINGS.TIMEPICKER_QUICK_RANGES]: SAMPLE_DATA_RANGE,
+ });
// refresh page to make sure ui settings update is picked up
await browser.refresh();
await PageObjects.header.waitUntilLoadingHasFinished();
diff --git a/x-pack/test/functional/apps/dev_tools/feature_controls/dev_tools_security.ts b/x-pack/test/functional/apps/dev_tools/feature_controls/dev_tools_security.ts
index 803ff6399a035..5d5f6b8aaa324 100644
--- a/x-pack/test/functional/apps/dev_tools/feature_controls/dev_tools_security.ts
+++ b/x-pack/test/functional/apps/dev_tools/feature_controls/dev_tools_security.ts
@@ -63,7 +63,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows Dev Tools navlink', async () => {
const navLinks = await appsMenu.readLinks();
- expect(navLinks.map((link) => link.text)).to.eql(['Dev Tools', 'Stack Management']);
+ expect(navLinks.map((link) => link.text)).to.contain('Dev Tools');
});
describe('console', () => {
@@ -144,7 +144,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it(`shows 'Dev Tools' navlink`, async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Dev Tools', 'Stack Management']);
+ expect(navLinks).to.contain('Dev Tools');
});
describe('console', () => {
diff --git a/x-pack/test/functional/apps/dev_tools/feature_controls/index.ts b/x-pack/test/functional/apps/dev_tools/feature_controls/index.ts
index 214a462447ef1..1df48971ba8cc 100644
--- a/x-pack/test/functional/apps/dev_tools/feature_controls/index.ts
+++ b/x-pack/test/functional/apps/dev_tools/feature_controls/index.ts
@@ -7,7 +7,7 @@ import { FtrProviderContext } from '../../../ftr_provider_context';
export default function ({ loadTestFile }: FtrProviderContext) {
describe('feature controls', function () {
- this.tags(['skipFirefox', 'skipCoverage']);
+ this.tags(['skipFirefox']);
loadTestFile(require.resolve('./dev_tools_security'));
loadTestFile(require.resolve('./dev_tools_spaces'));
});
diff --git a/x-pack/test/functional/apps/discover/feature_controls/discover_security.ts b/x-pack/test/functional/apps/discover/feature_controls/discover_security.ts
index 03a5cc6ac8fa0..6a11daa8d2c26 100644
--- a/x-pack/test/functional/apps/discover/feature_controls/discover_security.ts
+++ b/x-pack/test/functional/apps/discover/feature_controls/discover_security.ts
@@ -82,7 +82,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows discover navlink', async () => {
const navLinks = await appsMenu.readLinks();
- expect(navLinks.map((link) => link.text)).to.eql(['Discover', 'Stack Management']);
+ expect(navLinks.map((link) => link.text)).to.contain('Discover');
});
it('shows save button', async () => {
@@ -169,7 +169,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows discover navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Discover', 'Stack Management']);
+ expect(navLinks).to.contain('Discover');
});
it(`doesn't show save button`, async () => {
@@ -260,7 +260,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows discover navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Discover', 'Stack Management']);
+ expect(navLinks).to.contain('Discover');
});
it(`doesn't show save button`, async () => {
diff --git a/x-pack/test/functional/apps/graph/feature_controls/graph_security.ts b/x-pack/test/functional/apps/graph/feature_controls/graph_security.ts
index 9121028c14404..f13d73bc95dbe 100644
--- a/x-pack/test/functional/apps/graph/feature_controls/graph_security.ts
+++ b/x-pack/test/functional/apps/graph/feature_controls/graph_security.ts
@@ -64,7 +64,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows graph navlink', async () => {
const navLinks = await appsMenu.readLinks();
- expect(navLinks.map((link) => link.text)).to.eql(['Graph', 'Stack Management']);
+ expect(navLinks.map((link) => link.text)).to.contain('Graph');
});
it('landing page shows "Create new graph" button', async () => {
@@ -127,7 +127,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows graph navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Graph', 'Stack Management']);
+ expect(navLinks).to.contain('Graph');
});
it('does not show a "Create new Workspace" button', async () => {
diff --git a/x-pack/test/functional/apps/index_patterns/feature_controls/index_patterns_security.ts b/x-pack/test/functional/apps/index_patterns/feature_controls/index_patterns_security.ts
index cd892c4424290..a6d2c13cd2b31 100644
--- a/x-pack/test/functional/apps/index_patterns/feature_controls/index_patterns_security.ts
+++ b/x-pack/test/functional/apps/index_patterns/feature_controls/index_patterns_security.ts
@@ -71,7 +71,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows management navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Stack Management']);
+ expect(navLinks).to.contain('Stack Management');
});
it(`index pattern listing shows create button`, async () => {
@@ -125,7 +125,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows management navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Stack Management']);
+ expect(navLinks).to.contain('Stack Management');
});
it(`index pattern listing doesn't show create button`, async () => {
@@ -177,7 +177,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows Management navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Discover', 'Stack Management']);
+ expect(navLinks).to.contain('Stack Management');
});
it(`doesn't show Index Patterns in management side-nav`, async () => {
diff --git a/x-pack/test/functional/apps/infra/feature_controls/infrastructure_security.ts b/x-pack/test/functional/apps/infra/feature_controls/infrastructure_security.ts
index 6e186fc9ab9b2..a15b2b33b229c 100644
--- a/x-pack/test/functional/apps/infra/feature_controls/infrastructure_security.ts
+++ b/x-pack/test/functional/apps/infra/feature_controls/infrastructure_security.ts
@@ -61,7 +61,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows metrics navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Metrics', 'Stack Management']);
+ expect(navLinks).to.contain('Metrics');
});
describe('infrastructure landing page without data', () => {
@@ -177,7 +177,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows metrics navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Metrics', 'Stack Management']);
+ expect(navLinks).to.contain('Metrics');
});
describe('infrastructure landing page without data', () => {
diff --git a/x-pack/test/functional/apps/infra/feature_controls/logs_security.ts b/x-pack/test/functional/apps/infra/feature_controls/logs_security.ts
index fafc88287a6ab..ce83a22fb2e1f 100644
--- a/x-pack/test/functional/apps/infra/feature_controls/logs_security.ts
+++ b/x-pack/test/functional/apps/infra/feature_controls/logs_security.ts
@@ -58,7 +58,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows logs navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Logs', 'Stack Management']);
+ expect(navLinks).to.contain('Logs');
});
describe('logs landing page without data', () => {
@@ -121,7 +121,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows logs navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Logs', 'Stack Management']);
+ expect(navLinks).to.contain('Logs');
});
describe('logs landing page without data', () => {
diff --git a/x-pack/test/functional/apps/maps/embeddable/dashboard.js b/x-pack/test/functional/apps/maps/embeddable/dashboard.js
index 25770ea55a5d5..3c935b385cb39 100644
--- a/x-pack/test/functional/apps/maps/embeddable/dashboard.js
+++ b/x-pack/test/functional/apps/maps/embeddable/dashboard.js
@@ -5,6 +5,7 @@
*/
import expect from '@kbn/expect';
+import { UI_SETTINGS } from '../../../../../../src/plugins/data/common';
export default function ({ getPageObjects, getService }) {
const PageObjects = getPageObjects(['common', 'dashboard', 'maps']);
@@ -19,7 +20,7 @@ export default function ({ getPageObjects, getService }) {
before(async () => {
await kibanaServer.uiSettings.replace({
defaultIndex: 'c698b940-e149-11e8-a35a-370a8516603a',
- 'courier:ignoreFilterIfFieldNotInIndex': true,
+ [UI_SETTINGS.COURIER_IGNORE_FILTER_IF_FIELD_NOT_IN_INDEX]: true,
});
await PageObjects.common.navigateToApp('dashboard');
await PageObjects.dashboard.loadSavedDashboard('map embeddable example');
@@ -27,7 +28,7 @@ export default function ({ getPageObjects, getService }) {
after(async () => {
await kibanaServer.uiSettings.replace({
- 'courier:ignoreFilterIfFieldNotInIndex': false,
+ [UI_SETTINGS.COURIER_IGNORE_FILTER_IF_FIELD_NOT_IN_INDEX]: false,
});
});
diff --git a/x-pack/test/functional/apps/maps/feature_controls/maps_security.ts b/x-pack/test/functional/apps/maps/feature_controls/maps_security.ts
index 2449430ac85c2..f1c5b3f82f7da 100644
--- a/x-pack/test/functional/apps/maps/feature_controls/maps_security.ts
+++ b/x-pack/test/functional/apps/maps/feature_controls/maps_security.ts
@@ -66,7 +66,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows maps navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Maps', 'Stack Management']);
+ expect(navLinks).to.contain('Maps');
});
it(`allows a map to be created`, async () => {
@@ -153,7 +153,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows Maps navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Maps', 'Stack Management']);
+ expect(navLinks).to.contain('Maps');
});
it(`does not show create new button`, async () => {
diff --git a/x-pack/test/functional/apps/ml/data_frame_analytics/classification_creation.ts b/x-pack/test/functional/apps/ml/data_frame_analytics/classification_creation.ts
index d7565fd846e70..c8baa13b56408 100644
--- a/x-pack/test/functional/apps/ml/data_frame_analytics/classification_creation.ts
+++ b/x-pack/test/functional/apps/ml/data_frame_analytics/classification_creation.ts
@@ -11,7 +11,8 @@ export default function ({ getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const ml = getService('ml');
- describe('classification creation', function () {
+ // flaky test, see https://github.com/elastic/kibana/issues/68356
+ describe.skip('classification creation', function () {
before(async () => {
await esArchiver.loadIfNeeded('ml/bm_classification');
await ml.testResources.createIndexPatternIfNeeded('ft_bank_marketing', '@timestamp');
diff --git a/x-pack/test/functional/apps/ml/data_frame_analytics/regression_creation.ts b/x-pack/test/functional/apps/ml/data_frame_analytics/regression_creation.ts
index 7c59664fdec35..c818619a18378 100644
--- a/x-pack/test/functional/apps/ml/data_frame_analytics/regression_creation.ts
+++ b/x-pack/test/functional/apps/ml/data_frame_analytics/regression_creation.ts
@@ -11,7 +11,8 @@ export default function ({ getService }: FtrProviderContext) {
const esArchiver = getService('esArchiver');
const ml = getService('ml');
- describe('regression creation', function () {
+ // flaky test, see https://github.com/elastic/kibana/issues/68352
+ describe.skip('regression creation', function () {
before(async () => {
await esArchiver.loadIfNeeded('ml/egs_regression');
await ml.testResources.createIndexPatternIfNeeded('ft_egs_regression', '@timestamp');
diff --git a/x-pack/test/functional/apps/timelion/feature_controls/timelion_security.ts b/x-pack/test/functional/apps/timelion/feature_controls/timelion_security.ts
index a3ade23f5c178..5021bd8cce0fc 100644
--- a/x-pack/test/functional/apps/timelion/feature_controls/timelion_security.ts
+++ b/x-pack/test/functional/apps/timelion/feature_controls/timelion_security.ts
@@ -60,7 +60,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows timelion navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Timelion', 'Stack Management']);
+ expect(navLinks).to.contain('Timelion');
});
it(`allows a timelion sheet to be created`, async () => {
@@ -112,7 +112,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows timelion navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Timelion', 'Stack Management']);
+ expect(navLinks).to.contain('Timelion');
});
it(`does not allow a timelion sheet to be created`, async () => {
diff --git a/x-pack/test/functional/apps/uptime/certificates.ts b/x-pack/test/functional/apps/uptime/certificates.ts
index 0ae56a3c5f256..c7ba7816e0255 100644
--- a/x-pack/test/functional/apps/uptime/certificates.ts
+++ b/x-pack/test/functional/apps/uptime/certificates.ts
@@ -14,15 +14,18 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
const es = getService('es');
- // FLAKY: https://github.com/elastic/kibana/issues/66869
- describe.skip('certificates', function () {
- beforeEach(async () => {
+ describe('certificates', function () {
+ before(async () => {
+ await makeCheck({ es, tls: true });
await uptime.goToRoot(true);
+ });
+
+ beforeEach(async () => {
await makeCheck({ es, tls: true });
- await uptimeService.navigation.refreshApp();
});
it('can navigate to cert page', async () => {
+ await uptimeService.cert.isUptimeDataMissing();
await uptimeService.cert.hasViewCertButton();
await uptimeService.navigation.goToCertificates();
});
@@ -30,6 +33,7 @@ export default ({ getPageObjects, getService }: FtrProviderContext) => {
describe('page', () => {
beforeEach(async () => {
await uptimeService.navigation.goToCertificates();
+ await uptimeService.navigation.refreshApp();
});
it('displays certificates', async () => {
diff --git a/x-pack/test/functional/apps/uptime/feature_controls/uptime_security.ts b/x-pack/test/functional/apps/uptime/feature_controls/uptime_security.ts
index ae13cf0742432..991cd07dce513 100644
--- a/x-pack/test/functional/apps/uptime/feature_controls/uptime_security.ts
+++ b/x-pack/test/functional/apps/uptime/feature_controls/uptime_security.ts
@@ -64,7 +64,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows uptime navlink', async () => {
const navLinks = await appsMenu.readLinks();
- expect(navLinks.map((link) => link.text)).to.eql(['Uptime', 'Stack Management']);
+ expect(navLinks.map((link) => link.text)).to.contain('Uptime');
});
it('can navigate to Uptime app', async () => {
@@ -115,7 +115,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows uptime navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Uptime', 'Stack Management']);
+ expect(navLinks).to.contain('Uptime');
});
it('can navigate to Uptime app', async () => {
diff --git a/x-pack/test/functional/apps/visualize/feature_controls/visualize_security.ts b/x-pack/test/functional/apps/visualize/feature_controls/visualize_security.ts
index 9410a6f9435f2..f74643939477c 100644
--- a/x-pack/test/functional/apps/visualize/feature_controls/visualize_security.ts
+++ b/x-pack/test/functional/apps/visualize/feature_controls/visualize_security.ts
@@ -77,7 +77,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows visualize navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Visualize', 'Stack Management']);
+ expect(navLinks).to.contain('Visualize');
});
it(`landing page shows "Create new Visualization" button`, async () => {
@@ -201,7 +201,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows visualize navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Visualize', 'Stack Management']);
+ expect(navLinks).to.contain('Visualize');
});
it(`landing page shows "Create new Visualization" button`, async () => {
@@ -316,7 +316,7 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('shows visualize navlink', async () => {
const navLinks = (await appsMenu.readLinks()).map((link) => link.text);
- expect(navLinks).to.eql(['Visualize', 'Stack Management']);
+ expect(navLinks).to.contain('Visualize');
});
it(`landing page shows "Create new Visualization" button`, async () => {
diff --git a/x-pack/test/functional/apps/visualize/index.ts b/x-pack/test/functional/apps/visualize/index.ts
index 1c23b8cde8606..0f64ecf0022d0 100644
--- a/x-pack/test/functional/apps/visualize/index.ts
+++ b/x-pack/test/functional/apps/visualize/index.ts
@@ -8,7 +8,7 @@ import { FtrProviderContext } from '../../ftr_provider_context';
export default function visualize({ loadTestFile }: FtrProviderContext) {
describe('Visualize', function visualizeTestSuite() {
- this.tags(['ciGroup4', 'skipFirefox', 'skipCoverage']);
+ this.tags(['ciGroup4', 'skipFirefox']);
loadTestFile(require.resolve('./feature_controls/visualize_security'));
loadTestFile(require.resolve('./feature_controls/visualize_spaces'));
diff --git a/x-pack/test/functional/services/uptime/certificates.ts b/x-pack/test/functional/services/uptime/certificates.ts
index fb7cb6191b0ae..2ceab1ca89e54 100644
--- a/x-pack/test/functional/services/uptime/certificates.ts
+++ b/x-pack/test/functional/services/uptime/certificates.ts
@@ -17,31 +17,49 @@ export function UptimeCertProvider({ getService }: FtrProviderContext) {
await input.type(text);
};
+ const refreshApp = async () => {
+ await testSubjects.click('superDatePickerApplyTimeButton', 10000);
+ };
+
return {
+ async isUptimeDataMissing() {
+ return retry.tryForTime(60 * 1000, async () => {
+ if (await testSubjects.exists('data-missing', { timeout: 0 })) {
+ await refreshApp();
+ }
+ await testSubjects.missingOrFail('data-missing');
+ });
+ },
async hasViewCertButton() {
return retry.tryForTime(15000, async () => {
await testSubjects.existOrFail('uptimeCertificatesLink');
});
},
async certificateExists(cert: { certId: string; monitorId: string }) {
- return retry.tryForTime(15000, async () => {
+ return retry.tryForTime(60 * 1000, async () => {
+ if (!(await testSubjects.exists(cert.certId))) {
+ await refreshApp();
+ }
await testSubjects.existOrFail(cert.certId);
await testSubjects.existOrFail('monitor-page-link-' + cert.monitorId);
});
},
async hasCertificates(expectedTotal?: number) {
- return retry.tryForTime(15000, async () => {
+ return retry.tryForTime(60 * 1000, async () => {
const totalCerts = await testSubjects.getVisibleText('uptimeCertTotal');
if (expectedTotal) {
- expect(Number(totalCerts) === expectedTotal).to.eql(true);
+ expect(Number(totalCerts)).to.eql(expectedTotal);
} else {
+ if (Number(totalCerts) < 1) {
+ await refreshApp();
+ }
expect(Number(totalCerts) > 0).to.eql(true);
}
});
},
async searchIsWorking(monId: string) {
const self = this;
- return retry.tryForTime(15000, async () => {
+ return retry.tryForTime(60 * 1000, async () => {
await changeSearchField(monId);
await self.hasCertificates(1);
});
diff --git a/x-pack/test/functional/services/uptime/navigation.ts b/x-pack/test/functional/services/uptime/navigation.ts
index d372bd53c081b..7c5a4632f8627 100644
--- a/x-pack/test/functional/services/uptime/navigation.ts
+++ b/x-pack/test/functional/services/uptime/navigation.ts
@@ -26,7 +26,7 @@ export function UptimeNavigationProvider({ getService, getPageObjects }: FtrProv
};
const refreshApp = async () => {
- await testSubjects.click('superDatePickerApplyTimeButton');
+ await testSubjects.click('superDatePickerApplyTimeButton', 10000);
};
return {
@@ -65,10 +65,15 @@ export function UptimeNavigationProvider({ getService, getPageObjects }: FtrProv
},
goToCertificates: async () => {
- return retry.try(async () => {
- await testSubjects.click('uptimeCertificatesLink');
- await testSubjects.existOrFail('uptimeCertificatesPage');
- });
+ if (!(await testSubjects.exists('uptimeCertificatesPage', { timeout: 0 }))) {
+ return retry.try(async () => {
+ if (await testSubjects.exists('uptimeCertificatesLink', { timeout: 0 })) {
+ await testSubjects.click('uptimeCertificatesLink', 10000);
+ }
+ await testSubjects.existOrFail('uptimeCertificatesPage');
+ });
+ }
+ return true;
},
async loadDataAndGoToMonitorPage(dateStart: string, dateEnd: string, monitorId: string) {
diff --git a/x-pack/test/kerberos_api_integration/config.ts b/x-pack/test/kerberos_api_integration/config.ts
index 1e8e62e048411..7b65d79e18e7d 100644
--- a/x-pack/test/kerberos_api_integration/config.ts
+++ b/x-pack/test/kerberos_api_integration/config.ts
@@ -9,7 +9,7 @@ import { FtrConfigProviderContext } from '@kbn/test/types/ftr';
import { services } from './services';
export default async function ({ readConfigFile }: FtrConfigProviderContext) {
- const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.js'));
+ const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.ts'));
const kerberosKeytabPath = resolve(
__dirname,
diff --git a/x-pack/test/login_selector_api_integration/config.ts b/x-pack/test/login_selector_api_integration/config.ts
index 33fa5df7cd1e0..ba7aadb121e82 100644
--- a/x-pack/test/login_selector_api_integration/config.ts
+++ b/x-pack/test/login_selector_api_integration/config.ts
@@ -12,7 +12,7 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
const kibanaAPITestsConfig = await readConfigFile(
require.resolve('../../../test/api_integration/config.js')
);
- const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.js'));
+ const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.ts'));
const kibanaPort = xPackAPITestsConfig.get('servers.kibana.port');
const kerberosKeytabPath = resolve(__dirname, '../kerberos_api_integration/fixtures/krb5.keytab');
diff --git a/x-pack/test/observability_api_integration/common/config.ts b/x-pack/test/observability_api_integration/common/config.ts
index 9e011a98bbfcd..83dc597829a3c 100644
--- a/x-pack/test/observability_api_integration/common/config.ts
+++ b/x-pack/test/observability_api_integration/common/config.ts
@@ -17,7 +17,7 @@ export function createTestConfig(settings: Settings) {
return async ({ readConfigFile }: FtrConfigProviderContext) => {
const xPackAPITestsConfig = await readConfigFile(
- require.resolve('../../api_integration/config.js')
+ require.resolve('../../api_integration/config.ts')
);
return {
diff --git a/x-pack/test/oidc_api_integration/config.ts b/x-pack/test/oidc_api_integration/config.ts
index a78d6c3febc2d..7a0d786e20130 100644
--- a/x-pack/test/oidc_api_integration/config.ts
+++ b/x-pack/test/oidc_api_integration/config.ts
@@ -9,7 +9,7 @@ import { FtrConfigProviderContext } from '@kbn/test/types/ftr';
import { services } from './services';
export default async function ({ readConfigFile }: FtrConfigProviderContext) {
- const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.js'));
+ const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.ts'));
const plugin = resolve(__dirname, './fixtures/oidc_provider');
const kibanaPort = xPackAPITestsConfig.get('servers.kibana.port');
const jwksPath = resolve(__dirname, './fixtures/jwks.json');
diff --git a/x-pack/test/page_load_metrics/config.ts b/x-pack/test/page_load_metrics/config.ts
new file mode 100644
index 0000000000000..641099ff8e934
--- /dev/null
+++ b/x-pack/test/page_load_metrics/config.ts
@@ -0,0 +1,42 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License;
+ * you may not use this file except in compliance with the Elastic License.
+ */
+
+import { resolve } from 'path';
+
+import { FtrConfigProviderContext } from '@kbn/test/types/ftr';
+import { PuppeteerTestRunner } from './runner';
+
+export default async function ({ readConfigFile }: FtrConfigProviderContext) {
+ const kibanaCommonTestsConfig = await readConfigFile(
+ require.resolve('../../../test/common/config.js')
+ );
+ const xpackFunctionalTestsConfig = await readConfigFile(
+ require.resolve('../functional/config.js')
+ );
+
+ return {
+ ...kibanaCommonTestsConfig.getAll(),
+
+ testRunner: PuppeteerTestRunner,
+
+ esArchiver: {
+ directory: resolve(__dirname, 'es_archives'),
+ },
+
+ screenshots: {
+ directory: resolve(__dirname, 'screenshots'),
+ },
+
+ esTestCluster: {
+ ...xpackFunctionalTestsConfig.get('esTestCluster'),
+ serverArgs: [...xpackFunctionalTestsConfig.get('esTestCluster.serverArgs')],
+ },
+
+ kbnTestServer: {
+ ...xpackFunctionalTestsConfig.get('kbnTestServer'),
+ },
+ };
+}
diff --git a/x-pack/test/page_load_metrics/es_archives/default/data.json.gz b/x-pack/test/page_load_metrics/es_archives/default/data.json.gz
new file mode 100644
index 0000000000000..5a5290ddf6447
Binary files /dev/null and b/x-pack/test/page_load_metrics/es_archives/default/data.json.gz differ
diff --git a/x-pack/test/page_load_metrics/es_archives/default/mappings.json b/x-pack/test/page_load_metrics/es_archives/default/mappings.json
new file mode 100644
index 0000000000000..c36f9576c4df1
--- /dev/null
+++ b/x-pack/test/page_load_metrics/es_archives/default/mappings.json
@@ -0,0 +1,2402 @@
+{
+ "type": "index",
+ "value": {
+ "aliases": {
+ ".kibana": {
+ }
+ },
+ "index": ".kibana_1",
+ "mappings": {
+ "_meta": {
+ "migrationMappingPropertyHashes": {
+ "action": "6e96ac5e648f57523879661ea72525b7",
+ "action_task_params": "a9d49f184ee89641044be0ca2950fa3a",
+ "alert": "7b44fba6773e37c806ce290ea9b7024e",
+ "apm-indices": "9bb9b2bf1fa636ed8619cbab5ce6a1dd",
+ "apm-telemetry": "3525d7c22c42bc80f5e6e9cb3f2b26a2",
+ "application_usage_totals": "c897e4310c5f24b07caaff3db53ae2c1",
+ "application_usage_transactional": "965839e75f809fefe04f92dc4d99722a",
+ "canvas-element": "7390014e1091044523666d97247392fc",
+ "canvas-workpad": "b0a1706d356228dbdcb4a17e6b9eb231",
+ "cases": "32aa96a6d3855ddda53010ae2048ac22",
+ "cases-comments": "c2061fb929f585df57425102fa928b4b",
+ "cases-configure": "42711cbb311976c0687853f4c1354572",
+ "cases-user-actions": "32277330ec6b721abe3b846cfd939a71",
+ "config": "ae24d22d5986d04124cc6568f771066f",
+ "dashboard": "d00f614b29a80360e1190193fd333bab",
+ "file-upload-telemetry": "0ed4d3e1983d1217a30982630897092e",
+ "graph-workspace": "cd7ba1330e6682e9cc00b78850874be1",
+ "index-pattern": "66eccb05066c5a89924f48a9e9736499",
+ "infrastructure-ui-source": "ddc0ecb18383f6b26101a2fadb2dab0c",
+ "inventory-view": "88fc7e12fd1b45b6f0787323ce4f18d2",
+ "kql-telemetry": "d12a98a6f19a2d273696597547e064ee",
+ "lens": "21c3ea0763beb1ecb0162529706b88c5",
+ "lens-ui-telemetry": "509bfa5978586998e05f9e303c07a327",
+ "map": "23d7aa4a720d4938ccde3983f87bd58d",
+ "maps-telemetry": "bfd39d88aadadb4be597ea984d433dbe",
+ "metrics-explorer-view": "428e319af3e822c80a84cf87123ca35c",
+ "migrationVersion": "4a1746014a75ade3a714e1db5763276f",
+ "ml-telemetry": "257fd1d4b4fdbb9cb4b8a3b27da201e9",
+ "namespace": "2f4316de49999235636386fe51dc06c1",
+ "namespaces": "2f4316de49999235636386fe51dc06c1",
+ "query": "11aaeb7f5f7fa5bb43f25e18ce26e7d9",
+ "references": "7997cf5a56cc02bdc9c93361bde732b0",
+ "sample-data-telemetry": "7d3cfeb915303c9641c59681967ffeb4",
+ "search": "181661168bbadd1eff5902361e2a0d5c",
+ "space": "c5ca8acafa0beaa4d08d014a97b6bc6b",
+ "telemetry": "36a616f7026dfa617d6655df850fe16d",
+ "timelion-sheet": "9a2a2748877c7a7b582fef201ab1d4cf",
+ "tsvb-validation-telemetry": "3a37ef6c8700ae6fc97d5c7da00e9215",
+ "type": "2f4316de49999235636386fe51dc06c1",
+ "ui-metric": "0d409297dc5ebe1e3a1da691c6ee32e3",
+ "updated_at": "00da57df13e94e9d98437d13ace4bfe0",
+ "upgrade-assistant-reindex-operation": "296a89039fc4260292be36b1b005d8f2",
+ "upgrade-assistant-telemetry": "56702cec857e0a9dacfb696655b4ff7b",
+ "uptime-dynamic-settings": "fcdb453a30092f022f2642db29523d80",
+ "url": "b675c3be8d76ecf029294d51dc7ec65d",
+ "visualization": "52d7a13ad68a150c4525b292d23e12cc"
+ }
+ },
+ "dynamic": "strict",
+ "properties": {
+ "action": {
+ "properties": {
+ "actionTypeId": {
+ "type": "keyword"
+ },
+ "config": {
+ "enabled": false,
+ "type": "object"
+ },
+ "name": {
+ "fields": {
+ "keyword": {
+ "type": "keyword"
+ }
+ },
+ "type": "text"
+ },
+ "secrets": {
+ "type": "binary"
+ }
+ }
+ },
+ "action_task_params": {
+ "properties": {
+ "actionId": {
+ "type": "keyword"
+ },
+ "apiKey": {
+ "type": "binary"
+ },
+ "params": {
+ "enabled": false,
+ "type": "object"
+ }
+ }
+ },
+ "alert": {
+ "properties": {
+ "actions": {
+ "properties": {
+ "actionRef": {
+ "type": "keyword"
+ },
+ "actionTypeId": {
+ "type": "keyword"
+ },
+ "group": {
+ "type": "keyword"
+ },
+ "params": {
+ "enabled": false,
+ "type": "object"
+ }
+ },
+ "type": "nested"
+ },
+ "alertTypeId": {
+ "type": "keyword"
+ },
+ "apiKey": {
+ "type": "binary"
+ },
+ "apiKeyOwner": {
+ "type": "keyword"
+ },
+ "consumer": {
+ "type": "keyword"
+ },
+ "createdAt": {
+ "type": "date"
+ },
+ "createdBy": {
+ "type": "keyword"
+ },
+ "enabled": {
+ "type": "boolean"
+ },
+ "muteAll": {
+ "type": "boolean"
+ },
+ "mutedInstanceIds": {
+ "type": "keyword"
+ },
+ "name": {
+ "fields": {
+ "keyword": {
+ "type": "keyword"
+ }
+ },
+ "type": "text"
+ },
+ "params": {
+ "enabled": false,
+ "type": "object"
+ },
+ "schedule": {
+ "properties": {
+ "interval": {
+ "type": "keyword"
+ }
+ }
+ },
+ "scheduledTaskId": {
+ "type": "keyword"
+ },
+ "tags": {
+ "type": "keyword"
+ },
+ "throttle": {
+ "type": "keyword"
+ },
+ "updatedBy": {
+ "type": "keyword"
+ }
+ }
+ },
+ "apm-indices": {
+ "properties": {
+ "apm_oss": {
+ "properties": {
+ "errorIndices": {
+ "type": "keyword"
+ },
+ "metricsIndices": {
+ "type": "keyword"
+ },
+ "onboardingIndices": {
+ "type": "keyword"
+ },
+ "sourcemapIndices": {
+ "type": "keyword"
+ },
+ "spanIndices": {
+ "type": "keyword"
+ },
+ "transactionIndices": {
+ "type": "keyword"
+ }
+ }
+ }
+ }
+ },
+ "apm-telemetry": {
+ "properties": {
+ "agents": {
+ "properties": {
+ "dotnet": {
+ "properties": {
+ "agent": {
+ "properties": {
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "service": {
+ "properties": {
+ "framework": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "language": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "runtime": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "go": {
+ "properties": {
+ "agent": {
+ "properties": {
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "service": {
+ "properties": {
+ "framework": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "language": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "runtime": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "java": {
+ "properties": {
+ "agent": {
+ "properties": {
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "service": {
+ "properties": {
+ "framework": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "language": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "runtime": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "js-base": {
+ "properties": {
+ "agent": {
+ "properties": {
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "service": {
+ "properties": {
+ "framework": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "language": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "runtime": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "nodejs": {
+ "properties": {
+ "agent": {
+ "properties": {
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "service": {
+ "properties": {
+ "framework": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "language": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "runtime": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "python": {
+ "properties": {
+ "agent": {
+ "properties": {
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "service": {
+ "properties": {
+ "framework": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "language": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "runtime": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "ruby": {
+ "properties": {
+ "agent": {
+ "properties": {
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "service": {
+ "properties": {
+ "framework": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "language": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "runtime": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "rum-js": {
+ "properties": {
+ "agent": {
+ "properties": {
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "service": {
+ "properties": {
+ "framework": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "language": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ },
+ "runtime": {
+ "properties": {
+ "composite": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "name": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ },
+ "version": {
+ "ignore_above": 1024,
+ "type": "keyword"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "cardinality": {
+ "properties": {
+ "transaction": {
+ "properties": {
+ "name": {
+ "properties": {
+ "all_agents": {
+ "properties": {
+ "1d": {
+ "type": "long"
+ }
+ }
+ },
+ "rum": {
+ "properties": {
+ "1d": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "user_agent": {
+ "properties": {
+ "original": {
+ "properties": {
+ "all_agents": {
+ "properties": {
+ "1d": {
+ "type": "long"
+ }
+ }
+ },
+ "rum": {
+ "properties": {
+ "1d": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "counts": {
+ "properties": {
+ "agent_configuration": {
+ "properties": {
+ "all": {
+ "type": "long"
+ }
+ }
+ },
+ "error": {
+ "properties": {
+ "1d": {
+ "type": "long"
+ },
+ "all": {
+ "type": "long"
+ }
+ }
+ },
+ "max_error_groups_per_service": {
+ "properties": {
+ "1d": {
+ "type": "long"
+ }
+ }
+ },
+ "max_transaction_groups_per_service": {
+ "properties": {
+ "1d": {
+ "type": "long"
+ }
+ }
+ },
+ "metric": {
+ "properties": {
+ "1d": {
+ "type": "long"
+ },
+ "all": {
+ "type": "long"
+ }
+ }
+ },
+ "onboarding": {
+ "properties": {
+ "1d": {
+ "type": "long"
+ },
+ "all": {
+ "type": "long"
+ }
+ }
+ },
+ "services": {
+ "properties": {
+ "1d": {
+ "type": "long"
+ }
+ }
+ },
+ "sourcemap": {
+ "properties": {
+ "1d": {
+ "type": "long"
+ },
+ "all": {
+ "type": "long"
+ }
+ }
+ },
+ "span": {
+ "properties": {
+ "1d": {
+ "type": "long"
+ },
+ "all": {
+ "type": "long"
+ }
+ }
+ },
+ "traces": {
+ "properties": {
+ "1d": {
+ "type": "long"
+ }
+ }
+ },
+ "transaction": {
+ "properties": {
+ "1d": {
+ "type": "long"
+ },
+ "all": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ },
+ "has_any_services": {
+ "type": "boolean"
+ },
+ "indices": {
+ "properties": {
+ "all": {
+ "properties": {
+ "total": {
+ "properties": {
+ "docs": {
+ "properties": {
+ "count": {
+ "type": "long"
+ }
+ }
+ },
+ "store": {
+ "properties": {
+ "size_in_bytes": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "shards": {
+ "properties": {
+ "total": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ },
+ "integrations": {
+ "properties": {
+ "ml": {
+ "properties": {
+ "all_jobs_count": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ },
+ "retainment": {
+ "properties": {
+ "error": {
+ "properties": {
+ "ms": {
+ "type": "long"
+ }
+ }
+ },
+ "metric": {
+ "properties": {
+ "ms": {
+ "type": "long"
+ }
+ }
+ },
+ "onboarding": {
+ "properties": {
+ "ms": {
+ "type": "long"
+ }
+ }
+ },
+ "span": {
+ "properties": {
+ "ms": {
+ "type": "long"
+ }
+ }
+ },
+ "transaction": {
+ "properties": {
+ "ms": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ },
+ "services_per_agent": {
+ "properties": {
+ "dotnet": {
+ "null_value": 0,
+ "type": "long"
+ },
+ "go": {
+ "null_value": 0,
+ "type": "long"
+ },
+ "java": {
+ "null_value": 0,
+ "type": "long"
+ },
+ "js-base": {
+ "null_value": 0,
+ "type": "long"
+ },
+ "nodejs": {
+ "null_value": 0,
+ "type": "long"
+ },
+ "python": {
+ "null_value": 0,
+ "type": "long"
+ },
+ "ruby": {
+ "null_value": 0,
+ "type": "long"
+ },
+ "rum-js": {
+ "null_value": 0,
+ "type": "long"
+ }
+ }
+ },
+ "tasks": {
+ "properties": {
+ "agent_configuration": {
+ "properties": {
+ "took": {
+ "properties": {
+ "ms": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ },
+ "agents": {
+ "properties": {
+ "took": {
+ "properties": {
+ "ms": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ },
+ "cardinality": {
+ "properties": {
+ "took": {
+ "properties": {
+ "ms": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ },
+ "groupings": {
+ "properties": {
+ "took": {
+ "properties": {
+ "ms": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ },
+ "indices_stats": {
+ "properties": {
+ "took": {
+ "properties": {
+ "ms": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ },
+ "integrations": {
+ "properties": {
+ "took": {
+ "properties": {
+ "ms": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ },
+ "processor_events": {
+ "properties": {
+ "took": {
+ "properties": {
+ "ms": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ },
+ "services": {
+ "properties": {
+ "took": {
+ "properties": {
+ "ms": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ },
+ "versions": {
+ "properties": {
+ "took": {
+ "properties": {
+ "ms": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "version": {
+ "properties": {
+ "apm_server": {
+ "properties": {
+ "major": {
+ "type": "long"
+ },
+ "minor": {
+ "type": "long"
+ },
+ "patch": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ }
+ }
+ },
+ "application_usage_totals": {
+ "properties": {
+ "appId": {
+ "type": "keyword"
+ },
+ "minutesOnScreen": {
+ "type": "float"
+ },
+ "numberOfClicks": {
+ "type": "long"
+ }
+ }
+ },
+ "application_usage_transactional": {
+ "properties": {
+ "appId": {
+ "type": "keyword"
+ },
+ "minutesOnScreen": {
+ "type": "float"
+ },
+ "numberOfClicks": {
+ "type": "long"
+ },
+ "timestamp": {
+ "type": "date"
+ }
+ }
+ },
+ "canvas-element": {
+ "dynamic": "false",
+ "properties": {
+ "@created": {
+ "type": "date"
+ },
+ "@timestamp": {
+ "type": "date"
+ },
+ "content": {
+ "type": "text"
+ },
+ "help": {
+ "type": "text"
+ },
+ "image": {
+ "type": "text"
+ },
+ "name": {
+ "fields": {
+ "keyword": {
+ "type": "keyword"
+ }
+ },
+ "type": "text"
+ }
+ }
+ },
+ "canvas-workpad": {
+ "dynamic": "false",
+ "properties": {
+ "@created": {
+ "type": "date"
+ },
+ "@timestamp": {
+ "type": "date"
+ },
+ "name": {
+ "fields": {
+ "keyword": {
+ "type": "keyword"
+ }
+ },
+ "type": "text"
+ }
+ }
+ },
+ "cases": {
+ "properties": {
+ "closed_at": {
+ "type": "date"
+ },
+ "closed_by": {
+ "properties": {
+ "email": {
+ "type": "keyword"
+ },
+ "full_name": {
+ "type": "keyword"
+ },
+ "username": {
+ "type": "keyword"
+ }
+ }
+ },
+ "connector_id": {
+ "type": "keyword"
+ },
+ "created_at": {
+ "type": "date"
+ },
+ "created_by": {
+ "properties": {
+ "email": {
+ "type": "keyword"
+ },
+ "full_name": {
+ "type": "keyword"
+ },
+ "username": {
+ "type": "keyword"
+ }
+ }
+ },
+ "description": {
+ "type": "text"
+ },
+ "external_service": {
+ "properties": {
+ "connector_id": {
+ "type": "keyword"
+ },
+ "connector_name": {
+ "type": "keyword"
+ },
+ "external_id": {
+ "type": "keyword"
+ },
+ "external_title": {
+ "type": "text"
+ },
+ "external_url": {
+ "type": "text"
+ },
+ "pushed_at": {
+ "type": "date"
+ },
+ "pushed_by": {
+ "properties": {
+ "email": {
+ "type": "keyword"
+ },
+ "full_name": {
+ "type": "keyword"
+ },
+ "username": {
+ "type": "keyword"
+ }
+ }
+ }
+ }
+ },
+ "status": {
+ "type": "keyword"
+ },
+ "tags": {
+ "type": "keyword"
+ },
+ "title": {
+ "type": "keyword"
+ },
+ "updated_at": {
+ "type": "date"
+ },
+ "updated_by": {
+ "properties": {
+ "email": {
+ "type": "keyword"
+ },
+ "full_name": {
+ "type": "keyword"
+ },
+ "username": {
+ "type": "keyword"
+ }
+ }
+ }
+ }
+ },
+ "cases-comments": {
+ "properties": {
+ "comment": {
+ "type": "text"
+ },
+ "created_at": {
+ "type": "date"
+ },
+ "created_by": {
+ "properties": {
+ "email": {
+ "type": "keyword"
+ },
+ "full_name": {
+ "type": "keyword"
+ },
+ "username": {
+ "type": "keyword"
+ }
+ }
+ },
+ "pushed_at": {
+ "type": "date"
+ },
+ "pushed_by": {
+ "properties": {
+ "email": {
+ "type": "keyword"
+ },
+ "full_name": {
+ "type": "keyword"
+ },
+ "username": {
+ "type": "keyword"
+ }
+ }
+ },
+ "updated_at": {
+ "type": "date"
+ },
+ "updated_by": {
+ "properties": {
+ "email": {
+ "type": "keyword"
+ },
+ "full_name": {
+ "type": "keyword"
+ },
+ "username": {
+ "type": "keyword"
+ }
+ }
+ }
+ }
+ },
+ "cases-configure": {
+ "properties": {
+ "closure_type": {
+ "type": "keyword"
+ },
+ "connector_id": {
+ "type": "keyword"
+ },
+ "connector_name": {
+ "type": "keyword"
+ },
+ "created_at": {
+ "type": "date"
+ },
+ "created_by": {
+ "properties": {
+ "email": {
+ "type": "keyword"
+ },
+ "full_name": {
+ "type": "keyword"
+ },
+ "username": {
+ "type": "keyword"
+ }
+ }
+ },
+ "updated_at": {
+ "type": "date"
+ },
+ "updated_by": {
+ "properties": {
+ "email": {
+ "type": "keyword"
+ },
+ "full_name": {
+ "type": "keyword"
+ },
+ "username": {
+ "type": "keyword"
+ }
+ }
+ }
+ }
+ },
+ "cases-user-actions": {
+ "properties": {
+ "action": {
+ "type": "keyword"
+ },
+ "action_at": {
+ "type": "date"
+ },
+ "action_by": {
+ "properties": {
+ "email": {
+ "type": "keyword"
+ },
+ "full_name": {
+ "type": "keyword"
+ },
+ "username": {
+ "type": "keyword"
+ }
+ }
+ },
+ "action_field": {
+ "type": "keyword"
+ },
+ "new_value": {
+ "type": "text"
+ },
+ "old_value": {
+ "type": "text"
+ }
+ }
+ },
+ "config": {
+ "dynamic": "true",
+ "properties": {
+ "buildNum": {
+ "type": "keyword"
+ },
+ "defaultIndex": {
+ "fields": {
+ "keyword": {
+ "ignore_above": 256,
+ "type": "keyword"
+ }
+ },
+ "type": "text"
+ }
+ }
+ },
+ "dashboard": {
+ "properties": {
+ "description": {
+ "type": "text"
+ },
+ "hits": {
+ "type": "integer"
+ },
+ "kibanaSavedObjectMeta": {
+ "properties": {
+ "searchSourceJSON": {
+ "type": "text"
+ }
+ }
+ },
+ "optionsJSON": {
+ "type": "text"
+ },
+ "panelsJSON": {
+ "type": "text"
+ },
+ "refreshInterval": {
+ "properties": {
+ "display": {
+ "type": "keyword"
+ },
+ "pause": {
+ "type": "boolean"
+ },
+ "section": {
+ "type": "integer"
+ },
+ "value": {
+ "type": "integer"
+ }
+ }
+ },
+ "timeFrom": {
+ "type": "keyword"
+ },
+ "timeRestore": {
+ "type": "boolean"
+ },
+ "timeTo": {
+ "type": "keyword"
+ },
+ "title": {
+ "type": "text"
+ },
+ "version": {
+ "type": "integer"
+ }
+ }
+ },
+ "file-upload-telemetry": {
+ "properties": {
+ "filesUploadedTotalCount": {
+ "type": "long"
+ }
+ }
+ },
+ "graph-workspace": {
+ "properties": {
+ "description": {
+ "type": "text"
+ },
+ "kibanaSavedObjectMeta": {
+ "properties": {
+ "searchSourceJSON": {
+ "type": "text"
+ }
+ }
+ },
+ "numLinks": {
+ "type": "integer"
+ },
+ "numVertices": {
+ "type": "integer"
+ },
+ "title": {
+ "type": "text"
+ },
+ "version": {
+ "type": "integer"
+ },
+ "wsState": {
+ "type": "text"
+ }
+ }
+ },
+ "index-pattern": {
+ "properties": {
+ "fieldFormatMap": {
+ "type": "text"
+ },
+ "fields": {
+ "type": "text"
+ },
+ "intervalName": {
+ "type": "keyword"
+ },
+ "notExpandable": {
+ "type": "boolean"
+ },
+ "sourceFilters": {
+ "type": "text"
+ },
+ "timeFieldName": {
+ "type": "keyword"
+ },
+ "title": {
+ "type": "text"
+ },
+ "type": {
+ "type": "keyword"
+ },
+ "typeMeta": {
+ "type": "keyword"
+ }
+ }
+ },
+ "infrastructure-ui-source": {
+ "properties": {
+ "description": {
+ "type": "text"
+ },
+ "fields": {
+ "properties": {
+ "container": {
+ "type": "keyword"
+ },
+ "host": {
+ "type": "keyword"
+ },
+ "pod": {
+ "type": "keyword"
+ },
+ "tiebreaker": {
+ "type": "keyword"
+ },
+ "timestamp": {
+ "type": "keyword"
+ }
+ }
+ },
+ "logAlias": {
+ "type": "keyword"
+ },
+ "logColumns": {
+ "properties": {
+ "fieldColumn": {
+ "properties": {
+ "field": {
+ "type": "keyword"
+ },
+ "id": {
+ "type": "keyword"
+ }
+ }
+ },
+ "messageColumn": {
+ "properties": {
+ "id": {
+ "type": "keyword"
+ }
+ }
+ },
+ "timestampColumn": {
+ "properties": {
+ "id": {
+ "type": "keyword"
+ }
+ }
+ }
+ },
+ "type": "nested"
+ },
+ "metricAlias": {
+ "type": "keyword"
+ },
+ "name": {
+ "type": "text"
+ }
+ }
+ },
+ "inventory-view": {
+ "properties": {
+ "accountId": {
+ "type": "keyword"
+ },
+ "autoBounds": {
+ "type": "boolean"
+ },
+ "autoReload": {
+ "type": "boolean"
+ },
+ "boundsOverride": {
+ "properties": {
+ "max": {
+ "type": "integer"
+ },
+ "min": {
+ "type": "integer"
+ }
+ }
+ },
+ "customMetrics": {
+ "properties": {
+ "aggregation": {
+ "type": "keyword"
+ },
+ "field": {
+ "type": "keyword"
+ },
+ "id": {
+ "type": "keyword"
+ },
+ "label": {
+ "type": "keyword"
+ },
+ "type": {
+ "type": "keyword"
+ }
+ },
+ "type": "nested"
+ },
+ "customOptions": {
+ "properties": {
+ "field": {
+ "type": "keyword"
+ },
+ "text": {
+ "type": "keyword"
+ }
+ },
+ "type": "nested"
+ },
+ "filterQuery": {
+ "properties": {
+ "expression": {
+ "type": "keyword"
+ },
+ "kind": {
+ "type": "keyword"
+ }
+ }
+ },
+ "groupBy": {
+ "properties": {
+ "field": {
+ "type": "keyword"
+ },
+ "label": {
+ "type": "keyword"
+ }
+ },
+ "type": "nested"
+ },
+ "legend": {
+ "properties": {
+ "palette": {
+ "type": "keyword"
+ },
+ "reverseColors": {
+ "type": "boolean"
+ },
+ "steps": {
+ "type": "long"
+ }
+ }
+ },
+ "metric": {
+ "properties": {
+ "aggregation": {
+ "type": "keyword"
+ },
+ "field": {
+ "type": "keyword"
+ },
+ "id": {
+ "type": "keyword"
+ },
+ "label": {
+ "type": "keyword"
+ },
+ "type": {
+ "type": "keyword"
+ }
+ }
+ },
+ "name": {
+ "type": "keyword"
+ },
+ "nodeType": {
+ "type": "keyword"
+ },
+ "region": {
+ "type": "keyword"
+ },
+ "sort": {
+ "properties": {
+ "by": {
+ "type": "keyword"
+ },
+ "direction": {
+ "type": "keyword"
+ }
+ }
+ },
+ "time": {
+ "type": "long"
+ },
+ "view": {
+ "type": "keyword"
+ }
+ }
+ },
+ "kql-telemetry": {
+ "properties": {
+ "optInCount": {
+ "type": "long"
+ },
+ "optOutCount": {
+ "type": "long"
+ }
+ }
+ },
+ "lens": {
+ "properties": {
+ "expression": {
+ "index": false,
+ "type": "keyword"
+ },
+ "state": {
+ "type": "flattened"
+ },
+ "title": {
+ "type": "text"
+ },
+ "visualizationType": {
+ "type": "keyword"
+ }
+ }
+ },
+ "lens-ui-telemetry": {
+ "properties": {
+ "count": {
+ "type": "integer"
+ },
+ "date": {
+ "type": "date"
+ },
+ "name": {
+ "type": "keyword"
+ },
+ "type": {
+ "type": "keyword"
+ }
+ }
+ },
+ "map": {
+ "properties": {
+ "bounds": {
+ "type": "geo_shape"
+ },
+ "description": {
+ "type": "text"
+ },
+ "layerListJSON": {
+ "type": "text"
+ },
+ "mapStateJSON": {
+ "type": "text"
+ },
+ "title": {
+ "type": "text"
+ },
+ "uiStateJSON": {
+ "type": "text"
+ },
+ "version": {
+ "type": "integer"
+ }
+ }
+ },
+ "maps-telemetry": {
+ "properties": {
+ "attributesPerMap": {
+ "properties": {
+ "dataSourcesCount": {
+ "properties": {
+ "avg": {
+ "type": "long"
+ },
+ "max": {
+ "type": "long"
+ },
+ "min": {
+ "type": "long"
+ }
+ }
+ },
+ "emsVectorLayersCount": {
+ "dynamic": "true",
+ "type": "object"
+ },
+ "layerTypesCount": {
+ "dynamic": "true",
+ "type": "object"
+ },
+ "layersCount": {
+ "properties": {
+ "avg": {
+ "type": "long"
+ },
+ "max": {
+ "type": "long"
+ },
+ "min": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ },
+ "indexPatternsWithGeoFieldCount": {
+ "type": "long"
+ },
+ "indexPatternsWithGeoPointFieldCount": {
+ "type": "long"
+ },
+ "indexPatternsWithGeoShapeFieldCount": {
+ "type": "long"
+ },
+ "mapsTotalCount": {
+ "type": "long"
+ },
+ "settings": {
+ "properties": {
+ "showMapVisualizationTypes": {
+ "type": "boolean"
+ }
+ }
+ },
+ "timeCaptured": {
+ "type": "date"
+ }
+ }
+ },
+ "metrics-explorer-view": {
+ "properties": {
+ "chartOptions": {
+ "properties": {
+ "stack": {
+ "type": "boolean"
+ },
+ "type": {
+ "type": "keyword"
+ },
+ "yAxisMode": {
+ "type": "keyword"
+ }
+ }
+ },
+ "currentTimerange": {
+ "properties": {
+ "from": {
+ "type": "keyword"
+ },
+ "interval": {
+ "type": "keyword"
+ },
+ "to": {
+ "type": "keyword"
+ }
+ }
+ },
+ "name": {
+ "type": "keyword"
+ },
+ "options": {
+ "properties": {
+ "aggregation": {
+ "type": "keyword"
+ },
+ "filterQuery": {
+ "type": "keyword"
+ },
+ "forceInterval": {
+ "type": "boolean"
+ },
+ "groupBy": {
+ "type": "keyword"
+ },
+ "limit": {
+ "type": "integer"
+ },
+ "metrics": {
+ "properties": {
+ "aggregation": {
+ "type": "keyword"
+ },
+ "color": {
+ "type": "keyword"
+ },
+ "field": {
+ "type": "keyword"
+ },
+ "label": {
+ "type": "keyword"
+ }
+ },
+ "type": "nested"
+ }
+ }
+ }
+ }
+ },
+ "migrationVersion": {
+ "dynamic": "true",
+ "properties": {
+ "index-pattern": {
+ "fields": {
+ "keyword": {
+ "ignore_above": 256,
+ "type": "keyword"
+ }
+ },
+ "type": "text"
+ },
+ "space": {
+ "fields": {
+ "keyword": {
+ "ignore_above": 256,
+ "type": "keyword"
+ }
+ },
+ "type": "text"
+ }
+ }
+ },
+ "ml-telemetry": {
+ "properties": {
+ "file_data_visualizer": {
+ "properties": {
+ "index_creation_count": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ },
+ "namespace": {
+ "type": "keyword"
+ },
+ "namespaces": {
+ "type": "keyword"
+ },
+ "query": {
+ "properties": {
+ "description": {
+ "type": "text"
+ },
+ "filters": {
+ "enabled": false,
+ "type": "object"
+ },
+ "query": {
+ "properties": {
+ "language": {
+ "type": "keyword"
+ },
+ "query": {
+ "index": false,
+ "type": "keyword"
+ }
+ }
+ },
+ "timefilter": {
+ "enabled": false,
+ "type": "object"
+ },
+ "title": {
+ "type": "text"
+ }
+ }
+ },
+ "references": {
+ "properties": {
+ "id": {
+ "type": "keyword"
+ },
+ "name": {
+ "type": "keyword"
+ },
+ "type": {
+ "type": "keyword"
+ }
+ },
+ "type": "nested"
+ },
+ "sample-data-telemetry": {
+ "properties": {
+ "installCount": {
+ "type": "long"
+ },
+ "unInstallCount": {
+ "type": "long"
+ }
+ }
+ },
+ "search": {
+ "properties": {
+ "columns": {
+ "type": "keyword"
+ },
+ "description": {
+ "type": "text"
+ },
+ "hits": {
+ "type": "integer"
+ },
+ "kibanaSavedObjectMeta": {
+ "properties": {
+ "searchSourceJSON": {
+ "type": "text"
+ }
+ }
+ },
+ "sort": {
+ "type": "keyword"
+ },
+ "title": {
+ "type": "text"
+ },
+ "version": {
+ "type": "integer"
+ }
+ }
+ },
+ "space": {
+ "properties": {
+ "_reserved": {
+ "type": "boolean"
+ },
+ "color": {
+ "type": "keyword"
+ },
+ "description": {
+ "type": "text"
+ },
+ "disabledFeatures": {
+ "type": "keyword"
+ },
+ "imageUrl": {
+ "index": false,
+ "type": "text"
+ },
+ "initials": {
+ "type": "keyword"
+ },
+ "name": {
+ "fields": {
+ "keyword": {
+ "ignore_above": 2048,
+ "type": "keyword"
+ }
+ },
+ "type": "text"
+ }
+ }
+ },
+ "telemetry": {
+ "properties": {
+ "allowChangingOptInStatus": {
+ "type": "boolean"
+ },
+ "enabled": {
+ "type": "boolean"
+ },
+ "lastReported": {
+ "type": "date"
+ },
+ "lastVersionChecked": {
+ "type": "keyword"
+ },
+ "reportFailureCount": {
+ "type": "integer"
+ },
+ "reportFailureVersion": {
+ "type": "keyword"
+ },
+ "sendUsageFrom": {
+ "type": "keyword"
+ },
+ "userHasSeenNotice": {
+ "type": "boolean"
+ }
+ }
+ },
+ "timelion-sheet": {
+ "properties": {
+ "description": {
+ "type": "text"
+ },
+ "hits": {
+ "type": "integer"
+ },
+ "kibanaSavedObjectMeta": {
+ "properties": {
+ "searchSourceJSON": {
+ "type": "text"
+ }
+ }
+ },
+ "timelion_chart_height": {
+ "type": "integer"
+ },
+ "timelion_columns": {
+ "type": "integer"
+ },
+ "timelion_interval": {
+ "type": "keyword"
+ },
+ "timelion_other_interval": {
+ "type": "keyword"
+ },
+ "timelion_rows": {
+ "type": "integer"
+ },
+ "timelion_sheet": {
+ "type": "text"
+ },
+ "title": {
+ "type": "text"
+ },
+ "version": {
+ "type": "integer"
+ }
+ }
+ },
+ "tsvb-validation-telemetry": {
+ "properties": {
+ "failedRequests": {
+ "type": "long"
+ }
+ }
+ },
+ "type": {
+ "type": "keyword"
+ },
+ "ui-metric": {
+ "properties": {
+ "count": {
+ "type": "integer"
+ }
+ }
+ },
+ "updated_at": {
+ "type": "date"
+ },
+ "upgrade-assistant-reindex-operation": {
+ "properties": {
+ "errorMessage": {
+ "type": "keyword"
+ },
+ "indexName": {
+ "type": "keyword"
+ },
+ "lastCompletedStep": {
+ "type": "integer"
+ },
+ "locked": {
+ "type": "date"
+ },
+ "newIndexName": {
+ "type": "keyword"
+ },
+ "reindexOptions": {
+ "properties": {
+ "openAndClose": {
+ "type": "boolean"
+ },
+ "queueSettings": {
+ "properties": {
+ "queuedAt": {
+ "type": "long"
+ },
+ "startedAt": {
+ "type": "long"
+ }
+ }
+ }
+ }
+ },
+ "reindexTaskId": {
+ "type": "keyword"
+ },
+ "reindexTaskPercComplete": {
+ "type": "float"
+ },
+ "runningReindexCount": {
+ "type": "integer"
+ },
+ "status": {
+ "type": "integer"
+ }
+ }
+ },
+ "upgrade-assistant-telemetry": {
+ "properties": {
+ "features": {
+ "properties": {
+ "deprecation_logging": {
+ "properties": {
+ "enabled": {
+ "null_value": true,
+ "type": "boolean"
+ }
+ }
+ }
+ }
+ },
+ "ui_open": {
+ "properties": {
+ "cluster": {
+ "null_value": 0,
+ "type": "long"
+ },
+ "indices": {
+ "null_value": 0,
+ "type": "long"
+ },
+ "overview": {
+ "null_value": 0,
+ "type": "long"
+ }
+ }
+ },
+ "ui_reindex": {
+ "properties": {
+ "close": {
+ "null_value": 0,
+ "type": "long"
+ },
+ "open": {
+ "null_value": 0,
+ "type": "long"
+ },
+ "start": {
+ "null_value": 0,
+ "type": "long"
+ },
+ "stop": {
+ "null_value": 0,
+ "type": "long"
+ }
+ }
+ }
+ }
+ },
+ "uptime-dynamic-settings": {
+ "properties": {
+ "certAgeThreshold": {
+ "type": "long"
+ },
+ "certExpirationThreshold": {
+ "type": "long"
+ },
+ "heartbeatIndices": {
+ "type": "keyword"
+ }
+ }
+ },
+ "url": {
+ "properties": {
+ "accessCount": {
+ "type": "long"
+ },
+ "accessDate": {
+ "type": "date"
+ },
+ "createDate": {
+ "type": "date"
+ },
+ "url": {
+ "fields": {
+ "keyword": {
+ "type": "keyword"
+ }
+ },
+ "type": "text"
+ }
+ }
+ },
+ "visualization": {
+ "properties": {
+ "description": {
+ "type": "text"
+ },
+ "kibanaSavedObjectMeta": {
+ "properties": {
+ "searchSourceJSON": {
+ "type": "text"
+ }
+ }
+ },
+ "savedSearchRefName": {
+ "type": "keyword"
+ },
+ "title": {
+ "type": "text"
+ },
+ "uiStateJSON": {
+ "type": "text"
+ },
+ "version": {
+ "type": "integer"
+ },
+ "visState": {
+ "type": "text"
+ }
+ }
+ }
+ }
+ },
+ "settings": {
+ "index": {
+ "auto_expand_replicas": "0-1",
+ "number_of_replicas": "0",
+ "number_of_shards": "1"
+ }
+ }
+ }
+}
+
+{
+ "type": "index",
+ "value": {
+ "aliases": {
+ },
+ "index": "test",
+ "mappings": {
+ "properties": {
+ "foo": {
+ "fields": {
+ "keyword": {
+ "ignore_above": 256,
+ "type": "keyword"
+ }
+ },
+ "type": "text"
+ }
+ }
+ },
+ "settings": {
+ "index": {
+ "number_of_replicas": "1",
+ "number_of_shards": "1"
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/x-pack/test/page_load_metrics/runner.ts b/x-pack/test/page_load_metrics/runner.ts
new file mode 100644
index 0000000000000..05f293730f843
--- /dev/null
+++ b/x-pack/test/page_load_metrics/runner.ts
@@ -0,0 +1,33 @@
+/*
+ * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
+ * or more contributor license agreements. Licensed under the Elastic License;
+ * you may not use this file except in compliance with the Elastic License.
+ */
+
+import { CiStatsReporter } from '@kbn/dev-utils';
+import { capturePageLoadMetrics } from '@kbn/test';
+// @ts-ignore not TS yet
+import getUrl from '../../../src/test_utils/get_url';
+
+import { FtrProviderContext } from './../functional/ftr_provider_context';
+
+export async function PuppeteerTestRunner({ getService }: FtrProviderContext) {
+ const log = getService('log');
+ const config = getService('config');
+ const esArchiver = getService('esArchiver');
+
+ await esArchiver.load('default');
+ const metrics = await capturePageLoadMetrics(log, {
+ headless: true,
+ appConfig: {
+ url: getUrl.baseUrl(config.get('servers.kibana')),
+ username: config.get('servers.kibana.username'),
+ password: config.get('servers.kibana.password'),
+ },
+ screenshotsDir: config.get('screenshots.directory'),
+ });
+ const reporter = CiStatsReporter.fromEnv(log);
+
+ log.debug('Report page load asset size');
+ await reporter.metrics(metrics);
+}
diff --git a/x-pack/test/pki_api_integration/config.ts b/x-pack/test/pki_api_integration/config.ts
index e67ab0c6197f6..5ce3111530dd9 100644
--- a/x-pack/test/pki_api_integration/config.ts
+++ b/x-pack/test/pki_api_integration/config.ts
@@ -10,7 +10,7 @@ import { CA_CERT_PATH, KBN_CERT_PATH, KBN_KEY_PATH } from '@kbn/dev-utils';
import { services } from './services';
export default async function ({ readConfigFile }: FtrConfigProviderContext) {
- const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.js'));
+ const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.ts'));
const servers = {
...xPackAPITestsConfig.get('servers'),
diff --git a/x-pack/test/saml_api_integration/config.ts b/x-pack/test/saml_api_integration/config.ts
index d2aef5561dd11..1bc85a803a7c2 100644
--- a/x-pack/test/saml_api_integration/config.ts
+++ b/x-pack/test/saml_api_integration/config.ts
@@ -11,7 +11,7 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) {
const kibanaAPITestsConfig = await readConfigFile(
require.resolve('../../../test/api_integration/config.js')
);
- const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.js'));
+ const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.ts'));
const kibanaPort = xPackAPITestsConfig.get('servers.kibana.port');
const idpPath = resolve(__dirname, '../../test/saml_api_integration/fixtures/idp_metadata.xml');
diff --git a/x-pack/test/saved_object_api_integration/common/config.ts b/x-pack/test/saved_object_api_integration/common/config.ts
index fc04a9774e023..378f27082d9e0 100644
--- a/x-pack/test/saved_object_api_integration/common/config.ts
+++ b/x-pack/test/saved_object_api_integration/common/config.ts
@@ -24,7 +24,7 @@ export function createTestConfig(name: string, options: CreateTestConfigOptions)
functional: await readConfigFile(require.resolve('../../../../test/functional/config.js')),
},
xpack: {
- api: await readConfigFile(require.resolve('../../api_integration/config.js')),
+ api: await readConfigFile(require.resolve('../../api_integration/config.ts')),
},
};
diff --git a/x-pack/test/spaces_api_integration/common/config.ts b/x-pack/test/spaces_api_integration/common/config.ts
index 27dc67b92b4e2..89a49c7d3d4fa 100644
--- a/x-pack/test/spaces_api_integration/common/config.ts
+++ b/x-pack/test/spaces_api_integration/common/config.ts
@@ -25,7 +25,7 @@ export function createTestConfig(name: string, options: CreateTestConfigOptions)
functional: await readConfigFile(require.resolve('../../../../test/functional/config.js')),
},
xpack: {
- api: await readConfigFile(require.resolve('../../api_integration/config.js')),
+ api: await readConfigFile(require.resolve('../../api_integration/config.ts')),
},
};
diff --git a/x-pack/test/token_api_integration/config.js b/x-pack/test/token_api_integration/config.js
index efb2813b489bb..31ec2f1bc6bfb 100644
--- a/x-pack/test/token_api_integration/config.js
+++ b/x-pack/test/token_api_integration/config.js
@@ -5,7 +5,7 @@
*/
export default async function ({ readConfigFile }) {
- const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.js'));
+ const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.ts'));
return {
testFiles: [require.resolve('./auth')],
diff --git a/x-pack/tsconfig.json b/x-pack/tsconfig.json
index 9bba90291b884..e0bf3b8f16946 100644
--- a/x-pack/tsconfig.json
+++ b/x-pack/tsconfig.json
@@ -27,9 +27,6 @@
"plugins/xpack_main/*": [
"x-pack/legacy/plugins/xpack_main/public/*"
],
- "plugins/security/*": [
- "x-pack/legacy/plugins/security/public/*"
- ],
"plugins/spaces/*": [
"x-pack/legacy/plugins/spaces/public/*"
],
diff --git a/x-pack/typings/hapi.d.ts b/x-pack/typings/hapi.d.ts
index 6af723101fc22..253b639a52ff2 100644
--- a/x-pack/typings/hapi.d.ts
+++ b/x-pack/typings/hapi.d.ts
@@ -7,7 +7,6 @@
import 'hapi';
import { XPackMainPlugin } from '../legacy/plugins/xpack_main/server/xpack_main';
-import { SecurityPlugin } from '../legacy/plugins/security';
import { ActionsPlugin, ActionsClient } from '../plugins/actions/server';
import { AlertingPlugin, AlertsClient } from '../plugins/alerts/server';
import { TaskManager } from '../plugins/task_manager/server';
@@ -19,7 +18,6 @@ declare module 'hapi' {
}
interface PluginProperties {
xpack_main: XPackMainPlugin;
- security?: SecurityPlugin;
actions?: ActionsPlugin;
alerts?: AlertingPlugin;
task_manager?: TaskManager;
diff --git a/yarn.lock b/yarn.lock
index 892fa1b5aa567..678ddfb052cd3 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -4630,6 +4630,13 @@
dependencies:
"@types/node" "*"
+"@types/puppeteer@^3.0.0":
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/@types/puppeteer/-/puppeteer-3.0.0.tgz#24cdcc131e319477608d893f0017e08befd70423"
+ integrity sha512-59+fkfHHXHzX5rgoXIMnZyzum7ZLx/Wc3fhsOduFThpTpKbzzdBHMZsrkKGLunimB4Ds/tI5lXTRLALK8Mmnhg==
+ dependencies:
+ "@types/node" "*"
+
"@types/q@^1.5.1":
version "1.5.2"
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8"
@@ -7695,6 +7702,15 @@ bl@^3.0.0:
dependencies:
readable-stream "^3.0.1"
+bl@^4.0.1:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/bl/-/bl-4.0.2.tgz#52b71e9088515d0606d9dd9cc7aa48dc1f98e73a"
+ integrity sha512-j4OH8f6Qg2bGuWfRiltT2HYGx0e1QcBTrK9KAHNMwMZdQnDZFk0ZSYIpADjYCB3U12nicC5tVJwSIhwOWjb4RQ==
+ dependencies:
+ buffer "^5.5.0"
+ inherits "^2.0.4"
+ readable-stream "^3.4.0"
+
blob@0.0.5:
version "0.0.5"
resolved "https://registry.yarnpkg.com/blob/-/blob-0.0.5.tgz#d680eeef25f8cd91ad533f5b01eed48e64caf683"
@@ -8208,6 +8224,14 @@ buffer@^5.1.0, buffer@^5.2.0:
base64-js "^1.0.2"
ieee754 "^1.1.4"
+buffer@^5.2.1, buffer@^5.5.0:
+ version "5.6.0"
+ resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.6.0.tgz#a31749dc7d81d84db08abf937b6b8c4033f62786"
+ integrity sha512-/gDYp/UtU0eA1ys8bOs9J6a+E/KWIY+DZ+Q2WESNUA0jFRsJOc0SNUO6xJ5SGA1xueg3NL65W6s+NY5l9cunuw==
+ dependencies:
+ base64-js "^1.0.2"
+ ieee754 "^1.1.4"
+
builtin-modules@^1.0.0:
version "1.1.1"
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
@@ -12707,10 +12731,10 @@ eslint-plugin-prettier@^3.1.3:
dependencies:
prettier-linter-helpers "^1.0.0"
-eslint-plugin-react-hooks@^2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-2.3.0.tgz#53e073961f1f5ccf8dd19558036c1fac8c29d99a"
- integrity sha512-gLKCa52G4ee7uXzdLiorca7JIQZPPXRAQDXV83J4bUEeUuc5pIEyZYAZ45Xnxe5IuupxEqHS+hUhSLIimK1EMw==
+eslint-plugin-react-hooks@^4.0.4:
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.0.4.tgz#aed33b4254a41b045818cacb047b81e6df27fa58"
+ integrity sha512-equAdEIsUETLFNCmmCkiCGq6rkSK5MoJhXFPFYeUebcjKgBmWWcgVOqZyQC8Bv1BwVCnTq9tBxgJFgAJTWoJtA==
eslint-plugin-react-perf@^3.2.3:
version "3.2.3"
@@ -16676,7 +16700,7 @@ inflight@^1.0.4:
once "^1.3.0"
wrappy "1"
-inherits@2, inherits@2.0.4, inherits@~2.0.3, inherits@~2.0.4:
+inherits@2, inherits@2.0.4, inherits@^2.0.4, inherits@~2.0.3, inherits@~2.0.4:
version "2.0.4"
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
@@ -20841,6 +20865,11 @@ mixin-object@^2.0.1:
for-in "^0.1.3"
is-extendable "^0.1.1"
+mkdirp-classic@^0.5.2:
+ version "0.5.3"
+ resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113"
+ integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==
+
mkdirp@0.5.1:
version "0.5.1"
resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.1.tgz#30057438eac6cf7f8c4767f38648d6697d75c903"
@@ -23967,6 +23996,22 @@ puppeteer@^2.0.0:
rimraf "^2.6.1"
ws "^6.1.0"
+puppeteer@^3.3.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/puppeteer/-/puppeteer-3.3.0.tgz#95839af9fdc0aa4de7e5ee073a4c0adeb9e2d3d7"
+ integrity sha512-23zNqRltZ1PPoK28uRefWJ/zKb5Jhnzbbwbpcna2o5+QMn17F0khq5s1bdH3vPlyj+J36pubccR8wiNA/VE0Vw==
+ dependencies:
+ debug "^4.1.0"
+ extract-zip "^2.0.0"
+ https-proxy-agent "^4.0.0"
+ mime "^2.0.3"
+ progress "^2.0.1"
+ proxy-from-env "^1.0.0"
+ rimraf "^3.0.2"
+ tar-fs "^2.0.0"
+ unbzip2-stream "^1.3.3"
+ ws "^7.2.3"
+
q@^1.1.2:
version "1.5.1"
resolved "https://registry.yarnpkg.com/q/-/q-1.5.1.tgz#7e32f75b41381291d04611f1bf14109ac00651d7"
@@ -26302,6 +26347,13 @@ rimraf@^2.5.4, rimraf@^2.7.1:
dependencies:
glob "^7.1.3"
+rimraf@^3.0.2:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"
+ integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==
+ dependencies:
+ glob "^7.1.3"
+
rimraf@~2.0.2:
version "2.0.3"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.0.3.tgz#f50a2965e7144e9afd998982f15df706730f56a9"
@@ -28654,6 +28706,16 @@ tar-fs@^1.16.3:
pump "^1.0.0"
tar-stream "^1.1.2"
+tar-fs@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.0.tgz#d1cdd121ab465ee0eb9ccde2d35049d3f3daf0d5"
+ integrity sha512-9uW5iDvrIMCVpvasdFHW0wJPez0K4JnMZtsuIeDI7HyMGJNxmDZDOCQROr7lXyS+iL/QMpj07qcjGYTSdRFXUg==
+ dependencies:
+ chownr "^1.1.1"
+ mkdirp-classic "^0.5.2"
+ pump "^3.0.0"
+ tar-stream "^2.0.0"
+
tar-stream@^1.1.2, tar-stream@^1.5.2:
version "1.5.5"
resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-1.5.5.tgz#5cad84779f45c83b1f2508d96b09d88c7218af55"
@@ -28664,6 +28726,17 @@ tar-stream@^1.1.2, tar-stream@^1.5.2:
readable-stream "^2.0.0"
xtend "^4.0.0"
+tar-stream@^2.0.0:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.1.2.tgz#6d5ef1a7e5783a95ff70b69b97455a5968dc1325"
+ integrity sha512-UaF6FoJ32WqALZGOIAApXx+OdxhekNMChu6axLJR85zMMjXKWFGjbIRe+J6P4UnRGg9rAwWvbTT0oI7hD/Un7Q==
+ dependencies:
+ bl "^4.0.1"
+ end-of-stream "^1.4.1"
+ fs-constants "^1.0.0"
+ inherits "^2.0.3"
+ readable-stream "^3.1.1"
+
tar-stream@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.1.0.tgz#d1aaa3661f05b38b5acc9b7020efdca5179a2cc3"
@@ -28962,7 +29035,7 @@ through2@~2.0.3:
readable-stream "~2.3.6"
xtend "~4.0.1"
-through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6, through@~2.3.4, through@~2.3.6, through@~2.3.8:
+through@2, "through@>=2.2.7 <3", through@^2.3.4, through@^2.3.6, through@^2.3.8, through@~2.3.4, through@~2.3.6, through@~2.3.8:
version "2.3.8"
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
@@ -30151,6 +30224,14 @@ unbzip2-stream@^1.0.9:
buffer "^3.0.1"
through "^2.3.6"
+unbzip2-stream@^1.3.3:
+ version "1.4.2"
+ resolved "https://registry.yarnpkg.com/unbzip2-stream/-/unbzip2-stream-1.4.2.tgz#84eb9e783b186d8fb397515fbb656f312f1a7dbf"
+ integrity sha512-pZMVAofMrrHX6Ik39hCk470kulCbmZ2SWfQLPmTWqfJV/oUm0gn1CblvHdUu4+54Je6Jq34x8kY6XjTy6dMkOg==
+ dependencies:
+ buffer "^5.2.1"
+ through "^2.3.8"
+
unc-path-regex@^0.1.2:
version "0.1.2"
resolved "https://registry.yarnpkg.com/unc-path-regex/-/unc-path-regex-0.1.2.tgz#e73dd3d7b0d7c5ed86fbac6b0ae7d8c6a69d50fa"
@@ -32015,6 +32096,11 @@ ws@^7.0.0:
dependencies:
async-limiter "^1.0.0"
+ws@^7.2.3:
+ version "7.3.0"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.0.tgz#4b2f7f219b3d3737bc1a2fbf145d825b94d38ffd"
+ integrity sha512-iFtXzngZVXPGgpTlP1rBqsUK82p9tKqsWRPg5L56egiljujJT3vGAYnHANvFxBieXrTFavhzhxW52jnaWV+w2w==
+
ws@~3.3.1:
version "3.3.3"
resolved "https://registry.yarnpkg.com/ws/-/ws-3.3.3.tgz#f1cf84fe2d5e901ebce94efaece785f187a228f2"