kibana/x-pack/plugins/apm
2018-11-02 11:08:47 +01:00
..
common [APM] Distributed Tracing (#24062) 2018-10-23 16:34:23 -04:00
public [APM] Fix missing parent issue (#25029) 2018-11-02 11:08:47 +01:00
server [APM] Fix divide by 0 bug in percentage duration (#24675) 2018-10-31 23:52:23 -07:00
typings [APM] Hoist loading of waterfall and flatten it (#24651) 2018-10-31 10:27:57 +01:00
.prettierrc
index.js [WIP] Adds 'upload data from file' to Kibana home page (#24226) 2018-10-24 14:10:57 -05:00
readme.md

Documentation for APM in x-pack-kibana

Note: Be sure to run the following commands from inside the x-pack directory.

Format with Prettier

npx prettier "./plugins/apm/**/*.js" --write

Run tests

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

Update snapshots

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

Run ESLint (run from kibana root)

./node_modules/.bin/eslint ./x-pack/plugins/apm

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