kibana/x-pack/performance/tsconfig.json
Achyut Jhunjhunwala 6b44fff5ac
[APM] Implementing Journey for APM (#162721)
## 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>
2023-07-31 14:27:12 +02:00

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",
]
}