mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
## Summary Since we are moving code around, the schema extractor now needs to adapt to the new directories. This PR adds new per-solution schemas to the `.telemetryrc.json` files and adapts FTRs accordingly. Related https://github.com/elastic/kibana/pull/201653 ### Checklist - [x] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios
19 lines
472 B
JSON
19 lines
472 B
JSON
[
|
|
{
|
|
"output": "src/plugins/telemetry/schema/oss_plugins.json",
|
|
"root": "src/plugins/",
|
|
"exclude": [
|
|
"src/plugins/kibana_usage_collection/server/collectors/config_usage/register_config_usage_collector.ts"
|
|
]
|
|
},
|
|
{
|
|
"output": "src/plugins/telemetry/schema/kbn_packages.json",
|
|
"root": "packages/",
|
|
"exclude": []
|
|
},
|
|
{
|
|
"output": "src/plugins/telemetry/schema/oss_platform.json",
|
|
"root": "src/platform/",
|
|
"exclude": []
|
|
}
|
|
]
|