kibana/x-pack/plugins/apm
Josh Dover 49798bc8ad
Add K7 header navigation (#23300)
* Add basic support for new K7 navigation

* Make visibility and app title work

* Allow nav controls on right side of navbar

* Use render callback w/ el

* Add support for multiple sides

* Remove fake spaces nav control

* Breadcrumb support

* Hide breadcrumbs in plugins when k7design is enabled:

* Fix units

* Rename k7 -> header

* Add tests

* Fix tests

* Fix loading indicator

* PR comments

* Move ts-ignore

* Use canvasApp icon type
2018-10-02 14:09:47 -05:00
..
common [APM] Minor cleanup (#22827) 2018-09-08 16:53:56 +02:00
public Add K7 header navigation (#23300) 2018-10-02 14:09:47 -05:00
server [APM] Add apm_core plugin and query errors, spans, transactions from separate indices (#21022) 2018-07-23 22:20:05 +02:00
.prettierrc
index.js Add K7 header navigation (#23300) 2018-10-02 14:09:47 -05:00
jsconfig.json Refactors properties table, implements typescript (#22402) 2018-09-03 08:53:16 -04:00
readme.md [APM] Fix lint instructions 2018-08-22 18:23:27 +02:00
types.d.ts Refactors properties table, implements typescript (#22402) 2018-09-03 08:53:16 -04:00

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