diff --git a/README.md b/README.md index 49a6f612469a..38849e176fa3 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ We officially began work on the new fork on January 21st, 2021. Since then, we'v ### Look for the label "help wanted" -If you're excited to jump in, we've tried to mark a few issues that would be good candidates to get started on. Look for the label "help wanted" to find them. https://github.com/opensearch-project/OpenSearch/labels/help%20wanted +If you're excited to jump in, we've tried to mark a few issues that would be good candidates to get started on. Look for the label "help wanted" to find them. https://github.com/opensearch-project/OpenSearch-Dashboards/labels/help%20wanted ### Watch the forum, there are a bunch of things we want to talk about diff --git a/package.json b/package.json index 7700674c0a6b..57ac8b1c8ea9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "opensearch-dashboards", - "description": "OpenSearch Dashboards is a browser based analytics and search dashboard for OpenSearch. OpeenSearch Dashboards is a snap to setup and start using. OpeenSearch Dashboards strives to be easy to get started with, while also being flexible and powerful, just like OpenSearch.", + "description": "OpenSearch Dashboards is a browser based analytics and search dashboard for OpenSearch. OpenSearch Dashboards is a snap to setup and start using. OpenSearch Dashboards strives to be easy to get started with, while also being flexible and powerful, just like OpenSearch.", "keywords": [ "opensearch-dashboards", "opensearch", @@ -11,7 +11,7 @@ "dashboarding" ], "private": true, - "version": "7.10.3", + "version": "7.10.2", "branch": "7.10", "types": "./opensearch_dashboards.d.ts", "tsdocMetadata": "./build/tsdoc-metadata.json", diff --git a/packages/osd-ace/src/ace/modes/lexer_rules/opensearch_sql_highlight_rules.ts b/packages/osd-ace/src/ace/modes/lexer_rules/opensearch_sql_highlight_rules.ts index ae038e6dd107..797b420ae546 100644 --- a/packages/osd-ace/src/ace/modes/lexer_rules/opensearch_sql_highlight_rules.ts +++ b/packages/osd-ace/src/ace/modes/lexer_rules/opensearch_sql_highlight_rules.ts @@ -22,14 +22,14 @@ const { TextHighlightRules } = ace.acequire('ace/mode/text_highlight_rules'); const oop = ace.acequire('ace/lib/oop'); export const OpenSearchSqlHighlightRules = function (this: any) { - // See https://www.elastic.co/guide/en/elasticsearch/reference/current/sql-commands.html + // See https://www.opensearch.co/guide/en/elasticsearch/reference/current/sql-commands.html const keywords = 'describe|between|in|like|not|and|or|desc|select|from|where|having|group|by|order' + 'asc|desc|pivot|for|in|as|show|columns|include|frozen|tables|escape|limit|rlike|all|distinct|is'; const builtinConstants = 'true|false'; - // See https://www.elastic.co/guide/en/elasticsearch/reference/current/sql-syntax-show-functions.html + // See https://www.opensearch.co/guide/en/elasticsearch/reference/current/sql-syntax-show-functions.html const builtinFunctions = 'avg|count|first|first_value|last|last_value|max|min|sum|kurtosis|mad|percentile|percentile_rank|skewness' + '|stddev_pop|sum_of_squares|var_pop|histogram|case|coalesce|greatest|ifnull|iif|isnull|least|nullif|nvl' + @@ -43,7 +43,7 @@ export const OpenSearchSqlHighlightRules = function (this: any) { '|ltrim|octet_length|position|repeat|replace|right|rtrim|space|substring|ucase|cast|convert|database|user|st_astext|st_aswkt' + '|st_distance|st_geometrytype|st_geomfromtext|st_wkttosql|st_x|st_y|st_z|score'; - // See https://www.elastic.co/guide/en/elasticsearch/reference/current/sql-data-types.html + // See https://www.opensearch.co/guide/en/elasticsearch/reference/current/sql-data-types.html const dataTypes = 'null|boolean|byte|short|integer|long|double|float|half_float|scaled_float|keyword|text|binary|date|ip|object|nested|time' + '|interval_year|interval_month|interval_day|interval_hour|interval_minute|interval_second|interval_year_to_month' + diff --git a/packages/osd-babel-preset/README.md b/packages/osd-babel-preset/README.md index b4ba0375cb52..e54050a21707 100644 --- a/packages/osd-babel-preset/README.md +++ b/packages/osd-babel-preset/README.md @@ -1,6 +1,6 @@ # @osd/babel-preset -This package contains the shared bits of babel config that we use for transpiling our source code to code compatible with Node.JS and the various [browsers we support](https://www.elastic.co/support/matrix#matrix_browsers). +This package contains the shared bits of babel config that we use for transpiling our source code to code compatible with Node.JS and the various [browsers we support](https://www.opensearch.co/support/matrix#matrix_browsers). ## usage diff --git a/packages/osd-config/src/env.test.ts b/packages/osd-config/src/env.test.ts index 4b9a3e0018b6..ec5a7617aa69 100644 --- a/packages/osd-config/src/env.test.ts +++ b/packages/osd-config/src/env.test.ts @@ -150,7 +150,6 @@ test('correctly creates environment with constructor.', () => { expect(env).toMatchSnapshot('env properties'); }); - test('pluginSearchPaths contains examples plugins path if --run-examples flag is true', () => { const env = new Env( '/some/home/dir', diff --git a/packages/osd-dev-utils/certs/README.md b/packages/osd-dev-utils/certs/README.md index 9e25ed0fd6c6..8621d69c4e47 100644 --- a/packages/osd-dev-utils/certs/README.md +++ b/packages/osd-dev-utils/certs/README.md @@ -28,7 +28,7 @@ The password used for both of these is "storepass". Other copies are also provid ## Certificate generation -[OpenSearch cert-util](https://www.elastic.co/guide/en/elasticsearch/reference/current/certutil.html) and [OpenSSL](https://www.openssl.org/) were used to generate these certificates. The following commands were used from the root directory of OpenSearch: +[OpenSearch cert-util](https://www.opensearch.co/guide/en/elasticsearch/reference/current/certutil.html) and [OpenSSL](https://www.openssl.org/) were used to generate these certificates. The following commands were used from the root directory of OpenSearch: ``` # Generate the PKCS #12 keystore for a CA, valid for 50 years diff --git a/packages/osd-logging/README.md b/packages/osd-logging/README.md index ef028730a561..5d0fbaa1030f 100644 --- a/packages/osd-logging/README.md +++ b/packages/osd-logging/README.md @@ -10,7 +10,7 @@ is still in `core` for now. - [Log level](#log-level) - [Layouts](#layouts) -The way logging works in OpenSearch Dashboards is inspired by `log4j 2` logging framework used by [Elasticsearch](https://www.elastic.co/guide/en/elasticsearch/reference/current/settings.html#logging). +The way logging works in OpenSearch Dashboards is inspired by `log4j 2` logging framework used by [Elasticsearch](https://www.opensearch.co/guide/en/elasticsearch/reference/current/settings.html#logging). The main idea is to have consistent logging behaviour (configuration, log format etc.) across the entire Elastic Stack where possible. diff --git a/packages/osd-spec-to-console/test/fixtures/cluster_health_autocomplete.json b/packages/osd-spec-to-console/test/fixtures/cluster_health_autocomplete.json index 64ede603c0e0..2e505cbb6a10 100644 --- a/packages/osd-spec-to-console/test/fixtures/cluster_health_autocomplete.json +++ b/packages/osd-spec-to-console/test/fixtures/cluster_health_autocomplete.json @@ -40,6 +40,6 @@ "_cluster/health", "_cluster/health/{indices}" ], - "documentation": "https://www.elastic.co/guide/en/elasticsearch/reference/master/cluster-health.html" + "documentation": "https://www.opensearch.co/guide/en/elasticsearch/reference/master/cluster-health.html" } } diff --git a/packages/osd-spec-to-console/test/fixtures/cluster_health_spec.json b/packages/osd-spec-to-console/test/fixtures/cluster_health_spec.json index 7911a8e24421..3bf815487778 100644 --- a/packages/osd-spec-to-console/test/fixtures/cluster_health_spec.json +++ b/packages/osd-spec-to-console/test/fixtures/cluster_health_spec.json @@ -1,7 +1,7 @@ { "cluster.health":{ "documentation":{ - "url":"https://www.elastic.co/guide/en/elasticsearch/reference/master/cluster-health.html", + "url":"https://www.opensearch.co/guide/en/elasticsearch/reference/master/cluster-health.html", "description":"Returns basic information about the health of the cluster." }, "stability":"stable", diff --git a/packages/osd-test/src/failed_tests_reporter/__fixtures__/mocha_report.xml b/packages/osd-test/src/failed_tests_reporter/__fixtures__/mocha_report.xml index 1eb18ebdf337..0b561cf7accb 100644 --- a/packages/osd-test/src/failed_tests_reporter/__fixtures__/mocha_report.xml +++ b/packages/osd-test/src/failed_tests_reporter/__fixtures__/mocha_report.xml @@ -6,7 +6,7 @@ - 503 Service Temporarily Unavailable diff --git a/packages/osd-test/src/failed_tests_reporter/add_messages_to_report.test.ts b/packages/osd-test/src/failed_tests_reporter/add_messages_to_report.test.ts index acfd7ddeb6c6..edc6b0ea6845 100644 --- a/packages/osd-test/src/failed_tests_reporter/add_messages_to_report.test.ts +++ b/packages/osd-test/src/failed_tests_reporter/add_messages_to_report.test.ts @@ -226,9 +226,9 @@ it('rewrites mocha reports with minimal changes', async () => { + ‹/system-out› - ‹failure› - - ‹![CDATA[Error: Unable to read artifact info from https://artifacts-api.elastic.co/v1/versions/8.0.0-SNAPSHOT/builds/latest/projects/elasticsearch: Service Temporarily Unavailable + - ‹![CDATA[Error: Unable to read artifact info from https://artifacts-api.opensearch.co/v1/versions/8.0.0-SNAPSHOT/builds/latest/projects/elasticsearch: Service Temporarily Unavailable + ‹failure›‹![CDATA[ - + Error: Unable to read artifact info from https://artifacts-api.elastic.co/v1/versions/8.0.0-SNAPSHOT/builds/latest/projects/elasticsearch: Service Temporarily Unavailable + + Error: Unable to read artifact info from https://artifacts-api.opensearch.co/v1/versions/8.0.0-SNAPSHOT/builds/latest/projects/elasticsearch: Service Temporarily Unavailable ‹html› ‹head›‹title›503 Service Temporarily Unavailable‹/title›‹/head› ‹body bgcolor="white"› diff --git a/packages/osd-test/src/failed_tests_reporter/get_failures.test.ts b/packages/osd-test/src/failed_tests_reporter/get_failures.test.ts index 932834ec4a70..1a4bf11cc602 100644 --- a/packages/osd-test/src/failed_tests_reporter/get_failures.test.ts +++ b/packages/osd-test/src/failed_tests_reporter/get_failures.test.ts @@ -92,7 +92,7 @@ it('discovers failures in mocha report', async () => { Object { "classname": "X-Pack Mocha Tests.x-pack/legacy/plugins/code/server/__tests__/multi_node·ts", "failure": " - Error: Unable to read artifact info from https://artifacts-api.elastic.co/v1/versions/8.0.0-SNAPSHOT/builds/latest/projects/elasticsearch: Service Temporarily Unavailable + Error: Unable to read artifact info from https://artifacts-api.opensearch.co/v1/versions/8.0.0-SNAPSHOT/builds/latest/projects/elasticsearch: Service Temporarily Unavailable 503 Service Temporarily Unavailable diff --git a/packages/osd-ui-framework/doc_site/src/components/guide_nav/guide_nav.js b/packages/osd-ui-framework/doc_site/src/components/guide_nav/guide_nav.js index c9b379f4e19d..f84ec553072c 100644 --- a/packages/osd-ui-framework/doc_site/src/components/guide_nav/guide_nav.js +++ b/packages/osd-ui-framework/doc_site/src/components/guide_nav/guide_nav.js @@ -158,7 +158,7 @@ export class GuideNav extends Component { {this.props.version} diff --git a/src/core/server/saved_objects/migrations/README.md b/src/core/server/saved_objects/migrations/README.md index 5e7e59bdaf39..af02972b2c33 100644 --- a/src/core/server/saved_objects/migrations/README.md +++ b/src/core/server/saved_objects/migrations/README.md @@ -99,7 +99,7 @@ If a plugin is disbled, all of its documents are retained in the OpenSearch Dash OpenSearch Dashboards index migrations expose a few config settings which might be tweaked: - `migrations.scrollDuration` - The - [scroll](https://www.elastic.co/guide/en/elasticsearch/reference/current/search-request-scroll.html#scroll-search-context) + [scroll](https://www.opensearch.co/guide/en/elasticsearch/reference/current/search-request-scroll.html#scroll-search-context) value used to read batches of documents from the source index. Defaults to `15m`. - `migrations.batchSize` - The number of documents to read / transform / write diff --git a/src/dev/build/tasks/os_packages/docker_generator/templates/Dockerfile b/src/dev/build/tasks/os_packages/docker_generator/templates/Dockerfile index c8f432e01fbf..c787ad699050 100644 --- a/src/dev/build/tasks/os_packages/docker_generator/templates/Dockerfile +++ b/src/dev/build/tasks/os_packages/docker_generator/templates/Dockerfile @@ -73,7 +73,7 @@ COPY --from=builder --chown=1000:0 /usr/share/kibana /usr/share/kibana WORKDIR /usr/share/kibana RUN ln -s /usr/share/kibana /opt/kibana -ENV ELASTIC_CONTAINER true +ENV OPENSEARCH_CONTAINER true ENV PATH=/usr/share/kibana/bin:$PATH # Set some Kibana configuration defaults. diff --git a/src/plugins/timeline/public/directives/timeline_help/timeline_help.html b/src/plugins/timeline/public/directives/timeline_help/timeline_help.html index a4ed199a4203..04097dd408f0 100644 --- a/src/plugins/timeline/public/directives/timeline_help/timeline_help.html +++ b/src/plugins/timeline/public/directives/timeline_help/timeline_help.html @@ -185,7 +185,7 @@

- -