mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
## Summary This moves code from `plugins/aiops/common` to packages. The `aiops` plugin will from now on have only a `server` and `public` directory. This is in preparation for additional AIOps related public APIs and to avoid cyclic dependency problems for other consuming plugins. - Package `@kbn/aiops-utils` was renamed to `@kbn/aiops-common`. - For each AIOps feature a package was created: `@kbn/aiops-change-point-detection`, `@kbn/aiops-log-pattern-analysis` and `@kbn/aiops-log-rate-analysis`. ### Checklist - [x] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process)
12 lines
395 B
JavaScript
12 lines
395 B
JavaScript
/*
|
|
* 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.
|
|
*/
|
|
|
|
module.exports = {
|
|
preset: '@kbn/test',
|
|
rootDir: '../../../..',
|
|
roots: ['<rootDir>/x-pack/packages/ml/aiops_log_pattern_analysis'],
|
|
};
|