mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
## Summary Closes - https://github.com/elastic/kibana/issues/153844 As part of this PR, as its just the stepping stone, we will only cover a basic navigation flow and analyze the result obtained from Steps Dashboard and data collected by the APM Agents for this journey ## Scope - Generating a data set using Synthtrace instead of Archives - Capturing the flow from Service Inventory to Trace Waterfall loading on Transaction page - Capturing Event loop utilisation metrics enabled for APM Journey ## How to run it ``` node scripts/run_performance.js --journey-path x-pack/performance/journeys/apm_service_inventory.ts --skip-warmup ``` --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
21 lines
419 B
JSON
21 lines
419 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"outDir": "target/types",
|
|
"types": ["node", "jest"]
|
|
},
|
|
"include": ["**/*.ts"],
|
|
"exclude": [
|
|
"target/**/*",
|
|
],
|
|
"kbn_references": [
|
|
"@kbn/journeys",
|
|
"@kbn/test-subj-selector",
|
|
"@kbn/tooling-log",
|
|
"@kbn/test",
|
|
"@kbn/expect",
|
|
"@kbn/dev-utils",
|
|
"@kbn/apm-synthtrace",
|
|
"@kbn/apm-synthtrace-client",
|
|
]
|
|
}
|