kibana/x-pack/plugins/apm
Jason Rhodes 674a6aa2ef
Fix branch frozen indices (#29970)
* Adds frozen index param to ES queries

* Added include frozen setting to debug output

* Updates tests with new request method
2019-02-04 17:02:13 -05:00
..
common [APM] Add support for chained exceptions (#29345) 2019-02-04 18:08:23 +01:00
public [APM] Add support for chained exceptions (#29345) 2019-02-04 18:08:23 +01:00
server Fix branch frozen indices (#29970) 2019-02-04 17:02:13 -05:00
typings [APM] Add support for chained exceptions (#29345) 2019-02-04 18:08:23 +01:00
.prettierrc Migrate x-pack-kibana source to kibana 2018-04-24 13:48:10 -07:00
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