From 12e214abbde0f46ea7dd65ebbd40d9b2491c8bd8 Mon Sep 17 00:00:00 2001 From: Anan Zhuang Date: Tue, 2 May 2023 23:19:55 +0000 Subject: [PATCH] remove ftr Signed-off-by: Anan Zhuang --- .../with-security/check_advanced_settings.js | 7 -- .../with-security/helpers/generate_data.js | 3 - .../check_advanced_settings.js | 7 -- .../without-security/helpers/generate_data.js | 3 - src/plugins/telemetry/schema/oss_plugins.json | 7 -- .../basic_opensearch_dashboards/mappings.json | 41 ------ .../saved_objects/relationships/mappings.json | 43 +------ .../saved_objects/search/mappings.json | 43 +------ .../saved_objects/10k/mappings.json | 41 ------ .../saved_objects/basic/mappings.json | 43 +------ .../find_edgecases/mappings.json | 41 ------ .../search/count/mappings.json | 44 +------ .../apps/dashboard/dashboard_filtering.js | 10 -- .../apps/timeline/_expression_typeahead.js | 119 ------------------ test/functional/apps/timeline/index.js | 49 -------- test/functional/config.js | 4 - .../opensearch_dashboards/mappings.json | 44 +------ .../dashboard/legacy/mappings.json | 44 +------ .../discover/mappings.json | 42 ------- .../empty_opensearch_dashboards/mappings.json | 42 ------- .../opensearch_archiver/hamlet/mappings.json | 44 +------ .../invalid_scripted_field/mappings.json | 43 +------ .../management/mappings.json | 44 +------ .../opensearch_archiver/mgmt/mappings.json | 43 +------ .../mappings.json | 44 +------ .../saved_objects_imports/mappings.json | 44 +------ .../edit_saved_object/mappings.json | 43 +------ .../timeline/mappings.json | 44 +------ .../visualize/mappings.json | 42 ------- .../visualize_embedding/mappings.json | 44 +------ .../visualize_source-filters/mappings.json | 44 +------ .../visualize_source_filters/mappings.json | 44 +------ test/functional/page_objects/index.ts | 2 - test/functional/page_objects/timeline_page.ts | 106 ---------------- .../opensearch_dashboards/mappings.json | 44 +------ 35 files changed, 18 insertions(+), 1334 deletions(-) delete mode 100644 test/functional/apps/timeline/_expression_typeahead.js delete mode 100644 test/functional/apps/timeline/index.js delete mode 100644 test/functional/page_objects/timeline_page.ts diff --git a/cypress/integration/with-security/check_advanced_settings.js b/cypress/integration/with-security/check_advanced_settings.js index 502ee150a33f..9ca41207724e 100644 --- a/cypress/integration/with-security/check_advanced_settings.js +++ b/cypress/integration/with-security/check_advanced_settings.js @@ -25,13 +25,6 @@ describe('verify the advanced settings are saved', () => { .should('eq', 'true'); }); - it('the Timeline default columns field is set to 4', () => { - cy.get('[data-test-subj="advancedSetting-editField-timeline:default_columns"]').should( - 'have.value', - 4 - ); - }); - it('the Timeline Maximum buckets field is set to 4', () => { cy.get('[data-test-subj="advancedSetting-editField-timeline:max_buckets"]').should( 'have.value', diff --git a/cypress/integration/with-security/helpers/generate_data.js b/cypress/integration/with-security/helpers/generate_data.js index 1509dca7b012..4833a81a1398 100755 --- a/cypress/integration/with-security/helpers/generate_data.js +++ b/cypress/integration/with-security/helpers/generate_data.js @@ -31,9 +31,6 @@ describe('Generating BWC test data with security', () => { it('adds advanced settings', () => { miscUtils.visitPage('app/management/opensearch-dashboards/settings'); cy.get('[data-test-subj="advancedSetting-editField-theme:darkMode"]').click(); - cy.get('[data-test-subj="advancedSetting-editField-timeline:default_columns"]').type( - '{selectAll}4' - ); cy.get('[data-test-subj="advancedSetting-editField-timeline:max_buckets"]').type( '{selectAll}4' ); diff --git a/cypress/integration/without-security/check_advanced_settings.js b/cypress/integration/without-security/check_advanced_settings.js index 474a8178441a..9268d86a16e5 100644 --- a/cypress/integration/without-security/check_advanced_settings.js +++ b/cypress/integration/without-security/check_advanced_settings.js @@ -18,13 +18,6 @@ describe('verify the advanced settings are saved', () => { .should('eq', 'true'); }); - it('the Timeline default columns field is set to 4', () => { - cy.get('[data-test-subj="advancedSetting-editField-timeline:default_columns"]').should( - 'have.value', - 4 - ); - }); - it('the Timeline Maximum buckets field is set to 4', () => { cy.get('[data-test-subj="advancedSetting-editField-timeline:max_buckets"]').should( 'have.value', diff --git a/cypress/integration/without-security/helpers/generate_data.js b/cypress/integration/without-security/helpers/generate_data.js index f792a9b304a1..4f2962769c16 100755 --- a/cypress/integration/without-security/helpers/generate_data.js +++ b/cypress/integration/without-security/helpers/generate_data.js @@ -14,9 +14,6 @@ describe('Generating BWC test data without security', () => { it('adds advanced settings', () => { miscUtils.visitPage('app/management/opensearch-dashboards/settings'); cy.get('[data-test-subj="advancedSetting-editField-theme:darkMode"]').click(); - cy.get('[data-test-subj="advancedSetting-editField-timeline:default_columns"]').type( - '{selectAll}4' - ); cy.get('[data-test-subj="advancedSetting-editField-timeline:max_buckets"]').type( '{selectAll}4' ); diff --git a/src/plugins/telemetry/schema/oss_plugins.json b/src/plugins/telemetry/schema/oss_plugins.json index 01155ce8d557..f8dc8b7b8ae9 100644 --- a/src/plugins/telemetry/schema/oss_plugins.json +++ b/src/plugins/telemetry/schema/oss_plugins.json @@ -1314,13 +1314,6 @@ "type": "long" } } - }, - "timeline_sheet": { - "properties": { - "total": { - "type": "long" - } - } } } }, diff --git a/test/api_integration/fixtures/opensearch_archiver/index_patterns/basic_opensearch_dashboards/mappings.json b/test/api_integration/fixtures/opensearch_archiver/index_patterns/basic_opensearch_dashboards/mappings.json index c357464ef7ad..df28b3f143eb 100644 --- a/test/api_integration/fixtures/opensearch_archiver/index_patterns/basic_opensearch_dashboards/mappings.json +++ b/test/api_integration/fixtures/opensearch_archiver/index_patterns/basic_opensearch_dashboards/mappings.json @@ -146,47 +146,6 @@ } } }, - "timeline-sheet": { - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "namespace": { "type": "keyword" }, diff --git a/test/api_integration/fixtures/opensearch_archiver/management/saved_objects/relationships/mappings.json b/test/api_integration/fixtures/opensearch_archiver/management/saved_objects/relationships/mappings.json index f12e6a07b7e1..0f850ee15352 100644 --- a/test/api_integration/fixtures/opensearch_archiver/management/saved_objects/relationships/mappings.json +++ b/test/api_integration/fixtures/opensearch_archiver/management/saved_objects/relationships/mappings.json @@ -179,47 +179,6 @@ } } }, - "timeline-sheet": { - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "type": { "type": "keyword" }, @@ -280,4 +239,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/api_integration/fixtures/opensearch_archiver/management/saved_objects/search/mappings.json b/test/api_integration/fixtures/opensearch_archiver/management/saved_objects/search/mappings.json index f12e6a07b7e1..0f850ee15352 100644 --- a/test/api_integration/fixtures/opensearch_archiver/management/saved_objects/search/mappings.json +++ b/test/api_integration/fixtures/opensearch_archiver/management/saved_objects/search/mappings.json @@ -179,47 +179,6 @@ } } }, - "timeline-sheet": { - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "type": { "type": "keyword" }, @@ -280,4 +239,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/api_integration/fixtures/opensearch_archiver/saved_objects/10k/mappings.json b/test/api_integration/fixtures/opensearch_archiver/saved_objects/10k/mappings.json index c357464ef7ad..df28b3f143eb 100644 --- a/test/api_integration/fixtures/opensearch_archiver/saved_objects/10k/mappings.json +++ b/test/api_integration/fixtures/opensearch_archiver/saved_objects/10k/mappings.json @@ -146,47 +146,6 @@ } } }, - "timeline-sheet": { - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "namespace": { "type": "keyword" }, diff --git a/test/api_integration/fixtures/opensearch_archiver/saved_objects/basic/mappings.json b/test/api_integration/fixtures/opensearch_archiver/saved_objects/basic/mappings.json index 5777475bbfc4..df28b3f143eb 100644 --- a/test/api_integration/fixtures/opensearch_archiver/saved_objects/basic/mappings.json +++ b/test/api_integration/fixtures/opensearch_archiver/saved_objects/basic/mappings.json @@ -146,47 +146,6 @@ } } }, - "timeline-sheet": { - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "namespace": { "type": "keyword" }, @@ -250,4 +209,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/api_integration/fixtures/opensearch_archiver/saved_objects/find_edgecases/mappings.json b/test/api_integration/fixtures/opensearch_archiver/saved_objects/find_edgecases/mappings.json index 5bfb286b5ea6..7ff2743fc4a6 100644 --- a/test/api_integration/fixtures/opensearch_archiver/saved_objects/find_edgecases/mappings.json +++ b/test/api_integration/fixtures/opensearch_archiver/saved_objects/find_edgecases/mappings.json @@ -146,47 +146,6 @@ } } }, - "timeline-sheet": { - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "namespace": { "type": "keyword" }, diff --git a/test/api_integration/fixtures/opensearch_archiver/search/count/mappings.json b/test/api_integration/fixtures/opensearch_archiver/search/count/mappings.json index da1e59e86d90..d9638ae749a4 100644 --- a/test/api_integration/fixtures/opensearch_archiver/search/count/mappings.json +++ b/test/api_integration/fixtures/opensearch_archiver/search/count/mappings.json @@ -36,48 +36,6 @@ } } }, - "timeline-sheet": { - "dynamic": "strict", - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "visualization": { "dynamic": "strict", "properties": { @@ -293,4 +251,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/apps/dashboard/dashboard_filtering.js b/test/functional/apps/dashboard/dashboard_filtering.js index deb2ae399240..b3ff62c8b9da 100644 --- a/test/functional/apps/dashboard/dashboard_filtering.js +++ b/test/functional/apps/dashboard/dashboard_filtering.js @@ -126,11 +126,6 @@ export default function ({ getService, getPageObjects }) { await dashboardExpect.savedSearchRowCount(0); }); - // TODO: Uncomment once https://github.com/elastic/kibana/issues/22561 is fixed - // it('timeline is filtered', async () => { - // await dashboardExpect.timelineLegendCount(0); - // }); - it('vega is filtered', async () => { await dashboardExpect.vegaTextsDoNotExist(['5,000']); }); @@ -179,11 +174,6 @@ export default function ({ getService, getPageObjects }) { await dashboardExpect.savedSearchRowCount(0); }); - // TODO: Uncomment once https://github.com/elastic/kibana/issues/22561 is fixed - // it('timeline is filtered', async () => { - // await dashboardExpect.timelineLegendCount(0); - // }); - it('vega is filtered', async () => { await dashboardExpect.vegaTextsDoNotExist(['5,000']); }); diff --git a/test/functional/apps/timeline/_expression_typeahead.js b/test/functional/apps/timeline/_expression_typeahead.js deleted file mode 100644 index 5e395ec28a71..000000000000 --- a/test/functional/apps/timeline/_expression_typeahead.js +++ /dev/null @@ -1,119 +0,0 @@ -/* - * SPDX-License-Identifier: Apache-2.0 - * - * The OpenSearch Contributors require contributions made to - * this file be licensed under the Apache-2.0 license or a - * compatible open source license. - * - * Any modifications Copyright OpenSearch Contributors. See - * GitHub history for details. - */ - -/* - * 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 expect from '@osd/expect'; - -export default function ({ getPageObjects }) { - const PageObjects = getPageObjects(['common', 'timeline', 'settings', 'timePicker']); - - describe('expression typeahead', () => { - before(async () => { - await PageObjects.timeline.initTests(); - await PageObjects.timePicker.setDefaultAbsoluteRange(); - }); - - it('should display function suggestions filtered by function name', async () => { - await PageObjects.timeline.setExpression('.opensearch'); - const suggestions = await PageObjects.timeline.getSuggestionItemsText(); - expect(suggestions.length).to.eql(1); - expect(suggestions[0].includes('.opensearch()')).to.eql(true); - }); - - it('should show argument suggestions when function suggestion is selected', async () => { - await PageObjects.timeline.setExpression('.opensearch'); - await PageObjects.timeline.clickSuggestion(); - const suggestions = await PageObjects.timeline.getSuggestionItemsText(); - expect(suggestions.length).to.eql(10); - expect(suggestions[0].includes('fit=')).to.eql(true); - }); - - it('should show argument value suggestions when argument is selected', async () => { - await PageObjects.timeline.setExpression('.legend'); - await PageObjects.timeline.clickSuggestion(); - const argumentSuggestions = await PageObjects.timeline.getSuggestionItemsText(); - expect(argumentSuggestions.length).to.eql(4); - expect(argumentSuggestions[1].includes('position=')).to.eql(true); - await PageObjects.timeline.clickSuggestion(1); - const valueSuggestions = await PageObjects.timeline.getSuggestionItemsText(); - expect(valueSuggestions.length).to.eql(5); - expect(valueSuggestions[0].includes('disable legend')).to.eql(true); - expect(valueSuggestions[1].includes('place legend in north east corner')).to.eql(true); - }); - - // TODO: [RENAMEME] the index is not being loaded with the default data. - // While navigating creating an index pattern this would works. - // Need to fix why it's not loading prior to text run. - xdescribe('dynamic suggestions for argument values', () => { - describe('.opensearch()', () => { - before(async () => { - await PageObjects.timeline.setExpression('.opensearch'); - await PageObjects.timeline.clickSuggestion(); - }); - - it('should show index pattern suggestions for index argument', async () => { - await PageObjects.timeline.updateExpression('index'); - await PageObjects.timeline.clickSuggestion(); - const suggestions = await PageObjects.timeline.getSuggestionItemsText(); - expect(suggestions.length).to.eql(1); - expect(suggestions[0].includes('logstash-*')).to.eql(true); - await PageObjects.timeline.clickSuggestion(); - }); - - it('should show field suggestions for timefield argument when index pattern set', async () => { - await PageObjects.timeline.updateExpression(',timefield'); - await PageObjects.timeline.clickSuggestion(); - const suggestions = await PageObjects.timeline.getSuggestionItemsText(); - expect(suggestions.length).to.eql(4); - expect(suggestions[0].includes('@timestamp')).to.eql(true); - await PageObjects.timeline.clickSuggestion(); - }); - - it('should show field suggestions for split argument when index pattern set', async () => { - await PageObjects.timeline.updateExpression(',split'); - await PageObjects.timeline.clickSuggestion(); - const suggestions = await PageObjects.timeline.getSuggestionItemsText(); - expect(suggestions.length).to.eql(52); - expect(suggestions[0].includes('@message.raw')).to.eql(true); - await PageObjects.timeline.clickSuggestion(10); - }); - - it('should show field suggestions for metric argument when index pattern set', async () => { - await PageObjects.timeline.updateExpression(',metric'); - await PageObjects.timeline.clickSuggestion(); - await PageObjects.timeline.updateExpression('avg:'); - await PageObjects.timeline.clickSuggestion(); - const suggestions = await PageObjects.timeline.getSuggestionItemsText(); - expect(suggestions.length).to.eql(2); - expect(suggestions[0].includes('avg:bytes')).to.eql(true); - }); - }); - }); - }); -} diff --git a/test/functional/apps/timeline/index.js b/test/functional/apps/timeline/index.js deleted file mode 100644 index d89ffce2eda7..000000000000 --- a/test/functional/apps/timeline/index.js +++ /dev/null @@ -1,49 +0,0 @@ -/* - * SPDX-License-Identifier: Apache-2.0 - * - * The OpenSearch Contributors require contributions made to - * this file be licensed under the Apache-2.0 license or a - * compatible open source license. - * - * Any modifications Copyright OpenSearch Contributors. See - * GitHub history for details. - */ - -/* - * 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 default function ({ getService, loadTestFile }) { - const browser = getService('browser'); - const log = getService('log'); - const opensearchArchiver = getService('opensearchArchiver'); - const opensearchDashboardsServer = getService('opensearchDashboardsServer'); - - describe('timeline app', function () { - this.tags('ciGroup1'); - - before(async function () { - log.debug('Starting timeline before method'); - await browser.setWindowSize(1280, 800); - await opensearchArchiver.loadIfNeeded('logstash_functional'); - await opensearchDashboardsServer.uiSettings.replace({ defaultIndex: 'logstash-*' }); - }); - - loadTestFile(require.resolve('./_expression_typeahead')); - }); -} diff --git a/test/functional/config.js b/test/functional/config.js index 9485225dc8ca..d927aea2966f 100644 --- a/test/functional/config.js +++ b/test/functional/config.js @@ -46,7 +46,6 @@ export default async function ({ readConfigFile }) { require.resolve('./apps/management'), require.resolve('./apps/saved_objects_management'), require.resolve('./apps/status_page'), - require.resolve('./apps/timeline'), require.resolve('./apps/visualize'), require.resolve('./apps/vis_builder'), ], @@ -107,9 +106,6 @@ export default async function ({ readConfigFile }) { settings: { pathname: '/app/management', }, - timeline: { - pathname: '/app/timeline', - }, console: { pathname: '/app/dev_tools', hash: '/console', diff --git a/test/functional/fixtures/opensearch_archiver/dashboard/current/opensearch_dashboards/mappings.json b/test/functional/fixtures/opensearch_archiver/dashboard/current/opensearch_dashboards/mappings.json index 8ba03cf35876..c7fb3a03d629 100644 --- a/test/functional/fixtures/opensearch_archiver/dashboard/current/opensearch_dashboards/mappings.json +++ b/test/functional/fixtures/opensearch_archiver/dashboard/current/opensearch_dashboards/mappings.json @@ -23,7 +23,6 @@ "sample-data-telemetry": "7d3cfeb915303c9641c59681967ffeb4", "search": "181661168bbadd1eff5902361e2a0d5c", "telemetry": "36a616f7026dfa617d6655df850fe16d", - "timelion-sheet": "9a2a2748877c7a7b582fef201ab1d4cf", "tsvb-validation-telemetry": "3a37ef6c8700ae6fc97d5c7da00e9215", "type": "2f4316de49999235636386fe51dc06c1", "ui-metric": "0d409297dc5ebe1e3a1da691c6ee32e3", @@ -366,47 +365,6 @@ } } }, - "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": { @@ -487,4 +445,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/opensearch_archiver/dashboard/legacy/mappings.json b/test/functional/fixtures/opensearch_archiver/dashboard/legacy/mappings.json index 9ca92fc2b55d..afeb0422eb97 100644 --- a/test/functional/fixtures/opensearch_archiver/dashboard/legacy/mappings.json +++ b/test/functional/fixtures/opensearch_archiver/dashboard/legacy/mappings.json @@ -134,48 +134,6 @@ } } }, - "timeline-sheet": { - "dynamic": "strict", - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "type": { "type": "keyword" }, @@ -241,4 +199,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/opensearch_archiver/discover/mappings.json b/test/functional/fixtures/opensearch_archiver/discover/mappings.json index 2f24917b04fc..df2768093b7e 100644 --- a/test/functional/fixtures/opensearch_archiver/discover/mappings.json +++ b/test/functional/fixtures/opensearch_archiver/discover/mappings.json @@ -134,48 +134,6 @@ } } }, - "timeline-sheet": { - "dynamic": "strict", - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "type": { "type": "keyword" }, diff --git a/test/functional/fixtures/opensearch_archiver/empty_opensearch_dashboards/mappings.json b/test/functional/fixtures/opensearch_archiver/empty_opensearch_dashboards/mappings.json index a3a005fe8075..ad23c9028344 100644 --- a/test/functional/fixtures/opensearch_archiver/empty_opensearch_dashboards/mappings.json +++ b/test/functional/fixtures/opensearch_archiver/empty_opensearch_dashboards/mappings.json @@ -143,48 +143,6 @@ } } }, - "timeline-sheet": { - "dynamic": "strict", - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "type": { "type": "keyword" }, diff --git a/test/functional/fixtures/opensearch_archiver/hamlet/mappings.json b/test/functional/fixtures/opensearch_archiver/hamlet/mappings.json index 396bbadc30ba..d50b6c58bf99 100644 --- a/test/functional/fixtures/opensearch_archiver/hamlet/mappings.json +++ b/test/functional/fixtures/opensearch_archiver/hamlet/mappings.json @@ -19,7 +19,6 @@ "sample-data-telemetry": "7d3cfeb915303c9641c59681967ffeb4", "search": "181661168bbadd1eff5902361e2a0d5c", "server": "ec97f1c5da1a19609a60874e5af1100c", - "timeline-sheet": "9a2a2748877c7a7b582fef201ab1d4cf", "type": "2f4316de49999235636386fe51dc06c1", "ui-metric": "0d409297dc5ebe1e3a1da691c6ee32e3", "updated_at": "00da57df13e94e9d98437d13ace4bfe0", @@ -230,47 +229,6 @@ } } }, - "timeline-sheet": { - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "type": { "type": "keyword" }, @@ -373,4 +331,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/opensearch_archiver/invalid_scripted_field/mappings.json b/test/functional/fixtures/opensearch_archiver/invalid_scripted_field/mappings.json index 592b4cde4751..19c0d074f96d 100644 --- a/test/functional/fixtures/opensearch_archiver/invalid_scripted_field/mappings.json +++ b/test/functional/fixtures/opensearch_archiver/invalid_scripted_field/mappings.json @@ -140,47 +140,6 @@ } } }, - "timeline-sheet": { - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "type": { "type": "keyword" }, @@ -247,4 +206,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/opensearch_archiver/management/mappings.json b/test/functional/fixtures/opensearch_archiver/management/mappings.json index 9ca92fc2b55d..afeb0422eb97 100644 --- a/test/functional/fixtures/opensearch_archiver/management/mappings.json +++ b/test/functional/fixtures/opensearch_archiver/management/mappings.json @@ -134,48 +134,6 @@ } } }, - "timeline-sheet": { - "dynamic": "strict", - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "type": { "type": "keyword" }, @@ -241,4 +199,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/opensearch_archiver/mgmt/mappings.json b/test/functional/fixtures/opensearch_archiver/mgmt/mappings.json index c7c440ac42e8..35948f59d0e8 100644 --- a/test/functional/fixtures/opensearch_archiver/mgmt/mappings.json +++ b/test/functional/fixtures/opensearch_archiver/mgmt/mappings.json @@ -171,47 +171,6 @@ } } }, - "timeline-sheet": { - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "type": { "type": "keyword" }, @@ -279,4 +238,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/opensearch_archiver/opensearch_dashboards_sample_data_flights_index_pattern/mappings.json b/test/functional/fixtures/opensearch_archiver/opensearch_dashboards_sample_data_flights_index_pattern/mappings.json index e404d68391c8..2f7eaf05472c 100644 --- a/test/functional/fixtures/opensearch_archiver/opensearch_dashboards_sample_data_flights_index_pattern/mappings.json +++ b/test/functional/fixtures/opensearch_archiver/opensearch_dashboards_sample_data_flights_index_pattern/mappings.json @@ -19,7 +19,6 @@ "sample-data-telemetry": "7d3cfeb915303c9641c59681967ffeb4", "search": "181661168bbadd1eff5902361e2a0d5c", "server": "ec97f1c5da1a19609a60874e5af1100c", - "timeline-sheet": "9a2a2748877c7a7b582fef201ab1d4cf", "type": "2f4316de49999235636386fe51dc06c1", "ui-metric": "0d409297dc5ebe1e3a1da691c6ee32e3", "updated_at": "00da57df13e94e9d98437d13ace4bfe0", @@ -245,47 +244,6 @@ } } }, - "timeline-sheet": { - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "type": { "type": "keyword" }, @@ -461,4 +419,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/opensearch_archiver/saved_objects_imports/mappings.json b/test/functional/fixtures/opensearch_archiver/saved_objects_imports/mappings.json index 9ca92fc2b55d..afeb0422eb97 100644 --- a/test/functional/fixtures/opensearch_archiver/saved_objects_imports/mappings.json +++ b/test/functional/fixtures/opensearch_archiver/saved_objects_imports/mappings.json @@ -134,48 +134,6 @@ } } }, - "timeline-sheet": { - "dynamic": "strict", - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "type": { "type": "keyword" }, @@ -241,4 +199,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/opensearch_archiver/saved_objects_management/edit_saved_object/mappings.json b/test/functional/fixtures/opensearch_archiver/saved_objects_management/edit_saved_object/mappings.json index 3c2fcb67bd57..b2a66e47c403 100644 --- a/test/functional/fixtures/opensearch_archiver/saved_objects_management/edit_saved_object/mappings.json +++ b/test/functional/fixtures/opensearch_archiver/saved_objects_management/edit_saved_object/mappings.json @@ -355,47 +355,6 @@ } } }, - "timeline-sheet": { - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "type": { "type": "keyword" }, @@ -456,4 +415,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/opensearch_archiver/timeline/mappings.json b/test/functional/fixtures/opensearch_archiver/timeline/mappings.json index 561ed8b85848..afeb0422eb97 100644 --- a/test/functional/fixtures/opensearch_archiver/timeline/mappings.json +++ b/test/functional/fixtures/opensearch_archiver/timeline/mappings.json @@ -134,48 +134,6 @@ } } }, - "timelion-sheet": { - "dynamic": "strict", - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timelion_chart_height": { - "type": "integer" - }, - "timeline_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" - } - } - }, "type": { "type": "keyword" }, @@ -241,4 +199,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/opensearch_archiver/visualize/mappings.json b/test/functional/fixtures/opensearch_archiver/visualize/mappings.json index f93bab96c263..4046784ca4be 100644 --- a/test/functional/fixtures/opensearch_archiver/visualize/mappings.json +++ b/test/functional/fixtures/opensearch_archiver/visualize/mappings.json @@ -134,48 +134,6 @@ } } }, - "timeline-sheet": { - "dynamic": "strict", - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "type": { "type": "keyword" }, diff --git a/test/functional/fixtures/opensearch_archiver/visualize_embedding/mappings.json b/test/functional/fixtures/opensearch_archiver/visualize_embedding/mappings.json index 9ca92fc2b55d..afeb0422eb97 100644 --- a/test/functional/fixtures/opensearch_archiver/visualize_embedding/mappings.json +++ b/test/functional/fixtures/opensearch_archiver/visualize_embedding/mappings.json @@ -134,48 +134,6 @@ } } }, - "timeline-sheet": { - "dynamic": "strict", - "properties": { - "description": { - "type": "text" - }, - "hits": { - "type": "integer" - }, - "kibanaSavedObjectMeta": { - "properties": { - "searchSourceJSON": { - "type": "text" - } - } - }, - "timeline_chart_height": { - "type": "integer" - }, - "timeline_columns": { - "type": "integer" - }, - "timeline_interval": { - "type": "keyword" - }, - "timeline_other_interval": { - "type": "keyword" - }, - "timeline_rows": { - "type": "integer" - }, - "timeline_sheet": { - "type": "text" - }, - "title": { - "type": "text" - }, - "version": { - "type": "integer" - } - } - }, "type": { "type": "keyword" }, @@ -241,4 +199,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/opensearch_archiver/visualize_source-filters/mappings.json b/test/functional/fixtures/opensearch_archiver/visualize_source-filters/mappings.json index a89fe1dfacfc..afeb0422eb97 100644 --- a/test/functional/fixtures/opensearch_archiver/visualize_source-filters/mappings.json +++ b/test/functional/fixtures/opensearch_archiver/visualize_source-filters/mappings.json @@ -134,48 +134,6 @@ } } }, - "timelion-sheet": { - "dynamic": "strict", - "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" - } - } - }, "type": { "type": "keyword" }, @@ -241,4 +199,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/fixtures/opensearch_archiver/visualize_source_filters/mappings.json b/test/functional/fixtures/opensearch_archiver/visualize_source_filters/mappings.json index 0f17621dbf52..b85e54477f8e 100644 --- a/test/functional/fixtures/opensearch_archiver/visualize_source_filters/mappings.json +++ b/test/functional/fixtures/opensearch_archiver/visualize_source_filters/mappings.json @@ -152,48 +152,6 @@ } } }, - "timelion-sheet": { - "dynamic": "strict", - "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" - } - } - }, "type": { "type": "keyword" }, @@ -259,4 +217,4 @@ } } } -} \ No newline at end of file +} diff --git a/test/functional/page_objects/index.ts b/test/functional/page_objects/index.ts index 63cd990c445b..2820f33a226f 100644 --- a/test/functional/page_objects/index.ts +++ b/test/functional/page_objects/index.ts @@ -41,7 +41,6 @@ import { SettingsPageProvider } from './settings_page'; import { SharePageProvider } from './share_page'; import { LoginPageProvider } from './login_page'; import { TimePickerProvider } from './time_picker'; -import { TimelinePageProvider } from './timeline_page'; import { VisualBuilderPageProvider } from './visual_builder_page'; import { VisualizePageProvider } from './visualize_page'; import { VisBuilderPageProvider } from './vis_builder_page'; @@ -65,7 +64,6 @@ export const pageObjects = { settings: SettingsPageProvider, share: SharePageProvider, login: LoginPageProvider, - timeline: TimelinePageProvider, timePicker: TimePickerProvider, visualBuilder: VisualBuilderPageProvider, visualize: VisualizePageProvider, diff --git a/test/functional/page_objects/timeline_page.ts b/test/functional/page_objects/timeline_page.ts deleted file mode 100644 index ee89665e4c01..000000000000 --- a/test/functional/page_objects/timeline_page.ts +++ /dev/null @@ -1,106 +0,0 @@ -/* - * SPDX-License-Identifier: Apache-2.0 - * - * The OpenSearch Contributors require contributions made to - * this file be licensed under the Apache-2.0 license or a - * compatible open source license. - * - * Any modifications Copyright OpenSearch Contributors. See - * GitHub history for details. - */ - -/* - * 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 { FtrProviderContext } from '../ftr_provider_context'; - -export function TimelinePageProvider({ getService, getPageObjects }: FtrProviderContext) { - const testSubjects = getService('testSubjects'); - const log = getService('log'); - const PageObjects = getPageObjects(['common', 'header']); - const opensearchArchiver = getService('opensearchArchiver'); - const opensearchDashboardsServer = getService('opensearchDashboardsServer'); - - class TimelinePage { - public async initTests() { - await opensearchDashboardsServer.uiSettings.replace({ - defaultIndex: 'logstash-*', - }); - - log.debug('load opensearch-dashboards index'); - await opensearchArchiver.load('timeline'); - - await PageObjects.common.navigateToApp('timelion'); - } - - public async setExpression(expression: string) { - const input = await testSubjects.find('timelineExpressionTextArea'); - await input.clearValue(); - await input.type(expression); - } - - public async updateExpression(updates: string) { - const input = await testSubjects.find('timelineExpressionTextArea'); - await input.type(updates); - await PageObjects.common.sleep(1000); - } - - public async getExpression() { - const input = await testSubjects.find('timelineExpressionTextArea'); - return input.getVisibleText(); - } - - public async getSuggestionItemsText() { - const elements = await testSubjects.findAll('timelineSuggestionListItem'); - return await Promise.all(elements.map(async (element) => await element.getVisibleText())); - } - - public async clickSuggestion(suggestionIndex = 0, waitTime = 1000) { - const elements = await testSubjects.findAll('timelineSuggestionListItem'); - if (suggestionIndex > elements.length) { - throw new Error( - `Unable to select suggestion ${suggestionIndex}, only ${elements.length} suggestions available.` - ); - } - await elements[suggestionIndex].click(); - // Wait for timeline expression to be updated after clicking suggestions - await PageObjects.common.sleep(waitTime); - } - - public async saveTimelineSheet() { - await testSubjects.click('timelineSaveButton'); - await testSubjects.click('timelineSaveAsSheetButton'); - await testSubjects.click('timelineFinishSaveButton'); - await testSubjects.existOrFail('timelineSaveSuccessToast'); - await testSubjects.waitForDeleted('timelineSaveSuccessToast'); - } - - public async expectWriteControls() { - await testSubjects.existOrFail('timelineSaveButton'); - await testSubjects.existOrFail('timelineDeleteButton'); - } - - public async expectMissingWriteControls() { - await testSubjects.missingOrFail('timelineSaveButton'); - await testSubjects.missingOrFail('timelineDeleteButton'); - } - } - - return new TimelinePage(); -} diff --git a/test/new_visualize_flow/fixtures/opensearch_archiver/opensearch_dashboards/mappings.json b/test/new_visualize_flow/fixtures/opensearch_archiver/opensearch_dashboards/mappings.json index 8ba03cf35876..c7fb3a03d629 100644 --- a/test/new_visualize_flow/fixtures/opensearch_archiver/opensearch_dashboards/mappings.json +++ b/test/new_visualize_flow/fixtures/opensearch_archiver/opensearch_dashboards/mappings.json @@ -23,7 +23,6 @@ "sample-data-telemetry": "7d3cfeb915303c9641c59681967ffeb4", "search": "181661168bbadd1eff5902361e2a0d5c", "telemetry": "36a616f7026dfa617d6655df850fe16d", - "timelion-sheet": "9a2a2748877c7a7b582fef201ab1d4cf", "tsvb-validation-telemetry": "3a37ef6c8700ae6fc97d5c7da00e9215", "type": "2f4316de49999235636386fe51dc06c1", "ui-metric": "0d409297dc5ebe1e3a1da691c6ee32e3", @@ -366,47 +365,6 @@ } } }, - "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": { @@ -487,4 +445,4 @@ } } } -} \ No newline at end of file +}