kibana/x-pack/plugins/apm
Jason Rhodes 06a5ce7165
Removes APM custom breadcrumbs, leaves only chrome.breadcrumbs.set (#29286)
* Removes APM custom breadcrumbs, leaves only chrome.breadcrumbs.set

* Updates breadcrumb tests

* Changes route structure to simplify TS
2019-01-25 07:34:46 -05:00
..
common [APM] Use idx everywhere for picking deeply nested properties (#29297) 2019-01-25 10:43:07 +01:00
public Removes APM custom breadcrumbs, leaves only chrome.breadcrumbs.set (#29286) 2019-01-25 07:34:46 -05:00
server [APM] Use idx everywhere for picking deeply nested properties (#29297) 2019-01-25 10:43:07 +01:00
typings [APM] Remove v1 and make required ECS changes (#28068) 2019-01-24 12:13:14 +01:00
.prettierrc
index.js APM Metrics, UI Baseline (#26608) 2018-12-19 13:27:21 -05:00
mappings.json [APM] adds telemetry to APM (#25513) 2018-11-20 08:23:13 -08:00
readme.md Update APM readme 2018-12-12 14:04:33 +01:00

Documentation for APM UI

Note: Run the following commands from kibana/x-pack.

Run tests

node scripts/jest.js plugins/apm --watch

Update snapshots

node scripts/jest.js plugins/apm --updateSnapshot

Note: Run the following commands from kibana/.

Prettier

yarn prettier  "./x-pack/plugins/apm/**/*.{tsx,ts,js}" --write

ESLint

yarn eslint ./x-pack/plugins/apm --fix

TSLint

yarn tslint ./x-pack/plugins/apm/**/*.{ts,tsx} --fix

Ensure everything from master has been backported to 6.x

git fetch origin && git checkout 6.x && git diff origin/6.x..origin/master ./plugins/apm | git apply