forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ML] Add tests for anomaly embeddables migrations (elastic#116520) (e…
…lastic#117430) * [ML] Add tests for anomaly charts embeddable migrations * [ML] Broaden tests for anomaly swimlane as well * [ML] Fix function rename * [ML] Update tests to use bulk api * [ML] Remove override Co-authored-by: Kibana Machine <[email protected]> Co-authored-by: Quynh Nguyen <[email protected]>
- Loading branch information
1 parent
c7998c0
commit 2f2c8d6
Showing
7 changed files
with
198 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
118 changes: 118 additions & 0 deletions
118
x-pack/test/functional/apps/ml/embeddables/anomaly_embeddables_migration.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import { FtrProviderContext } from '../../../ftr_provider_context'; | ||
import { JOB_CONFIG, DATAFEED_CONFIG, ML_EMBEDDABLE_TYPES } from './constants'; | ||
|
||
const testDataList = [ | ||
{ | ||
type: ML_EMBEDDABLE_TYPES.ANOMALY_SWIMLANE, | ||
panelTitle: 'ML anomaly swim lane', | ||
dashboardSavedObject: { | ||
type: 'dashboard', | ||
attributes: { | ||
title: `7.15.2 ML anomaly swimlane dashboard ${Date.now()}`, | ||
description: '', | ||
panelsJSON: `[{"version":"7.15.2","type":"ml_anomaly_swimlane","gridData":{"x":0,"y":0,"w":24,"h":15,"i":"c177ed0a-dea0-40f8-8980-cfb0c6bc13a8"},"panelIndex":"c177ed0a-dea0-40f8-8980-cfb0c6bc13a8","embeddableConfig":{"jobIds":["fq_multi_1_ae"],"swimlaneType":"viewBy","viewBy":"airline","enhancements":{}},"title":"ML anomaly swim lane"}]`, | ||
optionsJSON: '{"useMargins":true,"syncColors":false,"hidePanelTitles":false}', | ||
timeRestore: true, | ||
timeTo: '2016-02-11T00:00:00.000Z', | ||
timeFrom: '2016-02-07T00:00:00.000Z', | ||
refreshInterval: { | ||
pause: true, | ||
value: 0, | ||
}, | ||
kibanaSavedObjectMeta: { | ||
searchSourceJSON: '{"query":{"query":"","language":"kuery"},"filter":[]}', | ||
}, | ||
}, | ||
coreMigrationVersion: '7.15.2', | ||
}, | ||
}, | ||
{ | ||
type: ML_EMBEDDABLE_TYPES.ANOMALY_CHARTS, | ||
panelTitle: 'ML anomaly charts', | ||
dashboardSavedObject: { | ||
type: 'dashboard', | ||
attributes: { | ||
title: `7.15.2 ML anomaly charts dashboard ${Date.now()}`, | ||
description: '', | ||
panelsJSON: | ||
'[{"version":"7.15.2","type":"ml_anomaly_charts","gridData":{"x":0,"y":0,"w":38,"h":21,"i":"1155890b-c19c-4d98-8153-50e6434612f1"},"panelIndex":"1155890b-c19c-4d98-8153-50e6434612f1","embeddableConfig":{"jobIds":["fq_multi_1_ae"],"maxSeriesToPlot":6,"severityThreshold":0,"enhancements":{}},"title":"ML anomaly charts"}]', | ||
optionsJSON: '{"useMargins":true,"syncColors":false,"hidePanelTitles":false}', | ||
timeRestore: true, | ||
timeTo: '2016-02-11T00:00:00.000Z', | ||
timeFrom: '2016-02-07T00:00:00.000Z', | ||
refreshInterval: { | ||
pause: true, | ||
value: 0, | ||
}, | ||
kibanaSavedObjectMeta: { | ||
searchSourceJSON: '{"query":{"query":"","language":"kuery"},"filter":[]}', | ||
}, | ||
}, | ||
coreMigrationVersion: '7.15.2', | ||
}, | ||
}, | ||
]; | ||
|
||
export default function ({ getService, getPageObjects }: FtrProviderContext) { | ||
const esArchiver = getService('esArchiver'); | ||
const ml = getService('ml'); | ||
const PageObjects = getPageObjects(['common', 'timePicker', 'dashboard']); | ||
|
||
describe('anomaly embeddables migration in Dashboard', function () { | ||
this.tags(['mlqa']); | ||
|
||
before(async () => { | ||
await esArchiver.loadIfNeeded('x-pack/test/functional/es_archives/ml/farequote'); | ||
await ml.testResources.createIndexPatternIfNeeded('ft_farequote', '@timestamp'); | ||
await ml.testResources.setKibanaTimeZoneToUTC(); | ||
await ml.securityUI.loginAsMlPowerUser(); | ||
|
||
await ml.api.createAndRunAnomalyDetectionLookbackJob(JOB_CONFIG, DATAFEED_CONFIG); | ||
// Using bulk API because create API might return 400 for conflict errors | ||
await ml.testResources.createBulkSavedObjects( | ||
testDataList.map((d) => d.dashboardSavedObject) | ||
); | ||
|
||
await PageObjects.common.navigateToApp('dashboard'); | ||
}); | ||
|
||
after(async () => { | ||
await ml.api.cleanMlIndices(); | ||
}); | ||
|
||
for (const testData of testDataList) { | ||
const { dashboardSavedObject, panelTitle, type } = testData; | ||
describe(`for ${panelTitle}`, function () { | ||
before(async () => { | ||
await PageObjects.common.navigateToApp('dashboard'); | ||
}); | ||
|
||
after(async () => { | ||
await ml.testResources.deleteDashboardByTitle(dashboardSavedObject.attributes.title); | ||
}); | ||
|
||
it(`loads saved dashboard from version ${dashboardSavedObject.coreMigrationVersion}`, async () => { | ||
await PageObjects.dashboard.loadSavedDashboard(dashboardSavedObject.attributes.title); | ||
|
||
await ml.dashboardEmbeddables.assertDashboardPanelExists(panelTitle); | ||
|
||
if (type === ML_EMBEDDABLE_TYPES.ANOMALY_CHARTS) { | ||
await ml.dashboardEmbeddables.assertAnomalyChartsSeverityThresholdControlExists(); | ||
await ml.dashboardEmbeddables.assertAnomalyChartsExists(); | ||
} | ||
|
||
if (type === ML_EMBEDDABLE_TYPES.ANOMALY_SWIMLANE) { | ||
await ml.dashboardEmbeddables.assertAnomalySwimlaneExists(); | ||
} | ||
}); | ||
}); | ||
} | ||
}); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License | ||
* 2.0; you may not use this file except in compliance with the Elastic License | ||
* 2.0. | ||
*/ | ||
|
||
import { Datafeed, Job } from '../../../../../plugins/ml/common/types/anomaly_detection_jobs'; | ||
|
||
// @ts-expect-error not full interface | ||
export const JOB_CONFIG: Job = { | ||
job_id: `fq_multi_1_ae`, | ||
description: | ||
'mean/min/max(responsetime) partition=airline on farequote dataset with 1h bucket span', | ||
groups: ['farequote', 'automated', 'multi-metric'], | ||
analysis_config: { | ||
bucket_span: '1h', | ||
influencers: ['airline'], | ||
detectors: [ | ||
{ function: 'mean', field_name: 'responsetime', partition_field_name: 'airline' }, | ||
{ function: 'min', field_name: 'responsetime', partition_field_name: 'airline' }, | ||
{ function: 'max', field_name: 'responsetime', partition_field_name: 'airline' }, | ||
], | ||
}, | ||
data_description: { time_field: '@timestamp' }, | ||
analysis_limits: { model_memory_limit: '20mb' }, | ||
model_plot_config: { enabled: true }, | ||
}; | ||
|
||
// @ts-expect-error not full interface | ||
export const DATAFEED_CONFIG: Datafeed = { | ||
datafeed_id: 'datafeed-fq_multi_1_ae', | ||
indices: ['ft_farequote'], | ||
job_id: 'fq_multi_1_ae', | ||
query: { bool: { must: [{ match_all: {} }] } }, | ||
}; | ||
|
||
export const ML_EMBEDDABLE_TYPES = { | ||
ANOMALY_SWIMLANE: 'ml_anomaly_swimlane', | ||
ANOMALY_CHARTS: 'ml_anomaly_charts', | ||
} as const; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters